/* line 2, app/assets/stylesheets/contract.scss */
.ContractList select {
  width: 95px;
}

/* line 6, app/assets/stylesheets/contract.scss */
.ContractList select.status {
  width: 60px;
}

/* line 10, app/assets/stylesheets/contract.scss */
.ContractList td.span2 {
  min-width: 95px;
  word-break: break-word;
}

/* line 16, app/assets/stylesheets/contract.scss */
.widget .change-company-list {
  position: absolute;
  background: white;
  width: 300px;
  border: 1px solid #c5c9cd;
  padding-left: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}

/* line 24, app/assets/stylesheets/contract.scss */
.widget .change-company-list .change-company-list-item {
  border-bottom: 1px solid #c5c9cd;
  overflow: hidden;
  position: relative;
  padding-top: 6px;
}

/* line 29, app/assets/stylesheets/contract.scss */
.widget .change-company-list .change-company-list-item .submit {
  top: 10px;
  position: absolute;
  right: 5px;
}

/* line 36, app/assets/stylesheets/contract.scss */
.widget .change-company-list .pagination {
  background: none;
  padding-bottom: 3px;
  padding-top: 3px;
}

/* line 43, app/assets/stylesheets/contract.scss */
.contract-avatar {
  height: 280px;
  width: 240px;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(0 0.15rem 0.15rem rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0.15rem 0.15rem rgba(0, 0, 0, 0.25));
}
/* line 1, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  min-height: 128px;
  border-left: 3px solid #ed9c28;
}

/* line 13, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview.approved {
  border-left-color: #47a447;
}

/* line 19, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview.canceled, .ContractOverview.inactive, .ContractOverview.certified {
  border-left-color: #999999;
}

/* line 24, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .permissionDenied {
  margin-left: 15px;
}

/* line 27, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .info {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

/* line 32, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .info .title {
  font-size: 18px;
  letter-spacing: 1.3px;
  line-height: 20px;
  margin-top: 25px;
}

/* line 38, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .info .startAndEndDate {
  text-align: right;
  font-size: 14px;
}

/* line 42, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .info .committee {
  font-size: 14px;
  padding-top: 0px;
  line-height: 26px;
}

/* line 47, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .info .need-certificate-info {
  margin-top: 8px;
  margin-left: 4px;
}

/* line 51, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .info .start-date {
  padding-top: 7px;
}

/* line 55, app/assets/stylesheets/directives/contract_overview.scss */
.ContractOverview .info .status .label {
  margin-top: 6px;
  max-width: 220px;
  white-space: normal;
}

@media only screen and (max-width: 767px) {
  /* line 65, app/assets/stylesheets/directives/contract_overview.scss */
  .ContractOverview .span3 {
    height: 110px;
    clear: both;
  }
  /* line 69, app/assets/stylesheets/directives/contract_overview.scss */
  .ContractOverview .span9 {
    padding: 0 3% 10px;
  }
}
@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *
 *



 */
/* ==========================================================================
   1. IMPORT
========================================================================== */
/*! Hint.css - v1.2.2 - 2013-06-01
* http://kushagragour.in/lab/hint/
* Copyright (c) 2013 Kushagra Gour; Licensed MIT */
/*-------------------------------------*\
	HINT.css - A CSS tooltip library
\*-------------------------------------*/
/**
 * HINT.css is a tooltip library made in pure CSS.
 *
 * Source: https://github.com/chinchang/hint.css
 * Demo: http://kushagragour.in/labs/hint/
 *
 * Release under The MIT License
 *
 */
/**
 * source: hint-core.scss
 *
 * Defines the basic styling for the tooltip.
 * Each tooltip is made of 2 parts:
 * 	1) body (:after)
 * 	2) arrow (:before)
 * 
 * Classes added:
 * 	1) hint
 */
/* line 28, vendor/assets/stylesheets/hint.css */
.hint, [data-hint] {
  position: relative;
  display: inline-block;
  /**
	 * tooltip arrow
	 */
  /**
	 * tooltip body
	 */
}

/* line 37, vendor/assets/stylesheets/hint.css */
.hint:before, .hint:after, [data-hint]:before, [data-hint]:after {
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* line 49, vendor/assets/stylesheets/hint.css */
.hint:hover:before, .hint:hover:after, [data-hint]:hover:before, [data-hint]:hover:after {
  visibility: visible;
  opacity: 1;
}

/* line 52, vendor/assets/stylesheets/hint.css */
.hint:before, [data-hint]:before {
  content: '';
  position: absolute;
  background: transparent;
  border: 6px solid transparent;
  z-index: 1000001;
}

/* line 58, vendor/assets/stylesheets/hint.css */
.hint:after, [data-hint]:after {
  content: attr(data-hint);
  background: #383838;
  color: white;
  text-shadow: 0 -1px 0px black;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

/**
 * source: hint-position.scss
 *
 * Defines the positoning logic for the tooltips.
 * 
 * Classes added:
 * 	1) hint--top
 * 	2) hint--bottom
 * 	3) hint--left
 * 	4) hint--right
 */
/**
 * set default color for tooltip arrows
 */
/* line 83, vendor/assets/stylesheets/hint.css */
.hint--top:before {
  border-top-color: #383838;
}

/* line 86, vendor/assets/stylesheets/hint.css */
.hint--bottom:before {
  border-bottom-color: #383838;
}

/* line 89, vendor/assets/stylesheets/hint.css */
.hint--left:before {
  border-left-color: #383838;
}

/* line 92, vendor/assets/stylesheets/hint.css */
.hint--right:before {
  border-right-color: #383838;
}

/**
 * top tooltip
 */
/* line 98, vendor/assets/stylesheets/hint.css */
.hint--top:before {
  margin-bottom: -12px;
}

/* line 100, vendor/assets/stylesheets/hint.css */
.hint--top:after {
  margin-left: -18px;
}

/* line 102, vendor/assets/stylesheets/hint.css */
.hint--top:before, .hint--top:after {
  bottom: 100%;
  left: 50%;
}

/* line 105, vendor/assets/stylesheets/hint.css */
.hint--top:hover:before, .hint--top:hover:after {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

/**
 * bottom tooltip
 */
/* line 113, vendor/assets/stylesheets/hint.css */
.hint--bottom:before {
  margin-top: -12px;
}

/* line 115, vendor/assets/stylesheets/hint.css */
.hint--bottom:after {
  margin-left: -18px;
}

/* line 117, vendor/assets/stylesheets/hint.css */
.hint--bottom:before, .hint--bottom:after {
  top: 100%;
  left: 50%;
}

/* line 120, vendor/assets/stylesheets/hint.css */
.hint--bottom:hover:before, .hint--bottom:hover:after {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

/**
 * right tooltip
 */
/* line 128, vendor/assets/stylesheets/hint.css */
.hint--right:before {
  margin-left: -12px;
  margin-bottom: -6px;
}

/* line 131, vendor/assets/stylesheets/hint.css */
.hint--right:after {
  margin-bottom: -14px;
}

/* line 133, vendor/assets/stylesheets/hint.css */
.hint--right:before, .hint--right:after {
  left: 100%;
  bottom: 50%;
}

/* line 136, vendor/assets/stylesheets/hint.css */
.hint--right:hover:before, .hint--right:hover:after {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

/**
 * left tooltip
 */
/* line 144, vendor/assets/stylesheets/hint.css */
.hint--left:before {
  margin-right: -12px;
  margin-bottom: -6px;
}

/* line 147, vendor/assets/stylesheets/hint.css */
.hint--left:after {
  margin-bottom: -14px;
}

/* line 149, vendor/assets/stylesheets/hint.css */
.hint--left:before, .hint--left:after {
  right: 100%;
  bottom: 50%;
}

/* line 152, vendor/assets/stylesheets/hint.css */
.hint--left:hover:before, .hint--left:hover:after {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

/**
 * source: hint-color-types.scss
 *
 * Contains tooltips of various types based on color differences.
 * 
 * Classes added:
 * 	1) hint--error
 * 	2) hint--warning
 * 	3) hint--info
 * 	4) hint--success
 * 	
 */
/**
 * Error
 */
/* line 172, vendor/assets/stylesheets/hint.css */
.hint--error:after {
  background-color: #b34e4d;
  text-shadow: 0 -1px 0px #5a2626;
}

/* line 175, vendor/assets/stylesheets/hint.css */
.hint--error.hint--top:before {
  border-top-color: #b34e4d;
}

/* line 177, vendor/assets/stylesheets/hint.css */
.hint--error.hint--bottom:before {
  border-bottom-color: #b34e4d;
}

/* line 179, vendor/assets/stylesheets/hint.css */
.hint--error.hint--left:before {
  border-left-color: #b34e4d;
}

/* line 181, vendor/assets/stylesheets/hint.css */
.hint--error.hint--right:before {
  border-right-color: #b34e4d;
}

/**
 * Warning
 */
/* line 187, vendor/assets/stylesheets/hint.css */
.hint--warning:after {
  background-color: #c09854;
  text-shadow: 0 -1px 0px #6d5228;
}

/* line 190, vendor/assets/stylesheets/hint.css */
.hint--warning.hint--top:before {
  border-top-color: #c09854;
}

/* line 192, vendor/assets/stylesheets/hint.css */
.hint--warning.hint--bottom:before {
  border-bottom-color: #c09854;
}

/* line 194, vendor/assets/stylesheets/hint.css */
.hint--warning.hint--left:before {
  border-left-color: #c09854;
}

/* line 196, vendor/assets/stylesheets/hint.css */
.hint--warning.hint--right:before {
  border-right-color: #c09854;
}

/**
 * Info
 */
/* line 202, vendor/assets/stylesheets/hint.css */
.hint--info:after {
  background-color: #3986ac;
  text-shadow: 0 -1px 0px #193c4c;
}

/* line 205, vendor/assets/stylesheets/hint.css */
.hint--info.hint--top:before {
  border-top-color: #3986ac;
}

/* line 207, vendor/assets/stylesheets/hint.css */
.hint--info.hint--bottom:before {
  border-bottom-color: #3986ac;
}

/* line 209, vendor/assets/stylesheets/hint.css */
.hint--info.hint--left:before {
  border-left-color: #3986ac;
}

/* line 211, vendor/assets/stylesheets/hint.css */
.hint--info.hint--right:before {
  border-right-color: #3986ac;
}

/**
 * Success
 */
/* line 217, vendor/assets/stylesheets/hint.css */
.hint--success:after {
  background-color: #458746;
  text-shadow: 0 -1px 0px #1a331a;
}

/* line 220, vendor/assets/stylesheets/hint.css */
.hint--success.hint--top:before {
  border-top-color: #458746;
}

/* line 222, vendor/assets/stylesheets/hint.css */
.hint--success.hint--bottom:before {
  border-bottom-color: #458746;
}

/* line 224, vendor/assets/stylesheets/hint.css */
.hint--success.hint--left:before {
  border-left-color: #458746;
}

/* line 226, vendor/assets/stylesheets/hint.css */
.hint--success.hint--right:before {
  border-right-color: #458746;
}

/**
 * source: hint-always.scss
 *
 * Defines a persisted tooltip which shows always.
 * 
 * Classes added:
 * 	1) hint--always
 * 	
 */
/* line 238, vendor/assets/stylesheets/hint.css */
.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible;
}

/* line 241, vendor/assets/stylesheets/hint.css */
.hint--always.hint--top:after, .hint--always.hint--top:before {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

/* line 245, vendor/assets/stylesheets/hint.css */
.hint--always.hint--bottom:after, .hint--always.hint--bottom:before {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

/* line 249, vendor/assets/stylesheets/hint.css */
.hint--always.hint--left:after, .hint--always.hint--left:before {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

/* line 253, vendor/assets/stylesheets/hint.css */
.hint--always.hint--right:after, .hint--always.hint--right:before {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

/**
 * source: hint-rounded.scss
 *
 * Defines rounded corner tooltips.
 * 
 * Classes added:
 * 	1) hint--rounded
 *  
 */
/* line 267, vendor/assets/stylesheets/hint.css */
.hint--rounded:after {
  border-radius: 4px;
}

@font-face {
  font-family: 'fonts';
  src: url(/fontello.eot);
  src: url(/fontello.eot#iefix) format("embedded-opentype"), url(/assets/fontello/fontello-2efd6472cc1c061d8d91930358adcacd34fa870ee944a4f09c3a038a7fadb83b.woff) format("woff"), url(/assets/fontello/fontello-506c5bf6264b671273cc2c832d33c891a649b00dc9f5a6ca7e1e2c4b9d39c6d1.ttf) format("truetype"), url(/assets/fontello/fontello-37ba779474c71ea5dcda23e2b107447167d2cc08130f25ad1ada7c3cc4044438.svg#fontello) format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: 'fonts';
    src: url(/assets/fontello/fontello-37ba779474c71ea5dcda23e2b107447167d2cc08130f25ad1ada7c3cc4044438.svg#fontello) format("svg");
  }
}

/* line 18, app/assets/stylesheets/fontello.css.erb */
[class^="font-"]:before, [class*=" font-"]:before {
  font-family: "fonts";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* line 48, app/assets/stylesheets/fontello.css.erb */
.font-plus:before {
  content: '\e800';
}

/* '' */
/* line 49, app/assets/stylesheets/fontello.css.erb */
.font-minus:before {
  content: '\e801';
}

/* '' */
/* line 50, app/assets/stylesheets/fontello.css.erb */
.font-info:before {
  content: '\e802';
}

/* '' */
/* line 51, app/assets/stylesheets/fontello.css.erb */
.font-help:before {
  content: '\e803';
}

/* '' */
/* line 52, app/assets/stylesheets/fontello.css.erb */
.font-user:before {
  content: '\e804';
}

/* '' */
/* line 53, app/assets/stylesheets/fontello.css.erb */
.font-users:before {
  content: '\e805';
}

/* '' */
/* line 54, app/assets/stylesheets/fontello.css.erb */
.font-check:before {
  content: '\e806';
}

/* '' */
/* line 55, app/assets/stylesheets/fontello.css.erb */
.font-cancel:before {
  content: '\e807';
}

/* '' */
/* line 56, app/assets/stylesheets/fontello.css.erb */
.font-menu:before {
  content: '\e808';
}

/* '' */
/* line 57, app/assets/stylesheets/fontello.css.erb */
.font-layout:before {
  content: '\e809';
}

/* '' */
/* line 58, app/assets/stylesheets/fontello.css.erb */
.font-right-open:before {
  content: '\e80a';
}

/* '' */
/* line 59, app/assets/stylesheets/fontello.css.erb */
.font-left-open:before {
  content: '\e80b';
}

/* '' */
/* line 60, app/assets/stylesheets/fontello.css.erb */
.font-up-dir:before {
  content: '\e80c';
}

/* '' */
/* line 61, app/assets/stylesheets/fontello.css.erb */
.font-down-dir:before {
  content: '\e80d';
}

/* '' */
/* line 62, app/assets/stylesheets/fontello.css.erb */
.font-minus-squared:before {
  content: '\e80e';
}

/* '' */
/* line 63, app/assets/stylesheets/fontello.css.erb */
.font-plus-squared:before {
  content: '\e80f';
}

/* '' */
/* line 64, app/assets/stylesheets/fontello.css.erb */
.font-help-circled:before {
  content: '\e810';
}

/* '' */
/* line 65, app/assets/stylesheets/fontello.css.erb */
.font-info-circled:before {
  content: '\e811';
}

/* '' */
/* line 66, app/assets/stylesheets/fontello.css.erb */
.font-home:before {
  content: '\e812';
}

/* '' */
/* line 67, app/assets/stylesheets/fontello.css.erb */
.font-attach:before {
  content: '\e813';
}

/* '' */
/* line 68, app/assets/stylesheets/fontello.css.erb */
.font-lock:before {
  content: '\e814';
}

/* '' */
/* line 69, app/assets/stylesheets/fontello.css.erb */
.font-lock-open:before {
  content: '\e815';
}

/* '' */
/* line 70, app/assets/stylesheets/fontello.css.erb */
.font-download:before {
  content: '\e816';
}

/* '' */
/* line 71, app/assets/stylesheets/fontello.css.erb */
.font-upload:before {
  content: '\e817';
}

/* '' */
/* line 72, app/assets/stylesheets/fontello.css.erb */
.font-pencil:before {
  content: '\e818';
}

/* '' */
/* line 73, app/assets/stylesheets/fontello.css.erb */
.font-print:before {
  content: '\e819';
}

/* '' */
/* line 74, app/assets/stylesheets/fontello.css.erb */
.font-attention:before {
  content: '\e81a';
}

/* '' */
/* line 75, app/assets/stylesheets/fontello.css.erb */
.font-trash:before {
  content: '\e81b';
}

/* '' */
/* line 76, app/assets/stylesheets/fontello.css.erb */
.font-calendar:before {
  content: '\e81c';
}

/* '' */
/* line 77, app/assets/stylesheets/fontello.css.erb */
.font-tools:before {
  content: '\e81d';
}

/* '' */
/* line 78, app/assets/stylesheets/fontello.css.erb */
.font-hourglass:before {
  content: '\e81e';
}

/* '' */
/* line 79, app/assets/stylesheets/fontello.css.erb */
.font-right-open-big:before {
  content: '\e81f';
}

/* '' */
/* line 80, app/assets/stylesheets/fontello.css.erb */
.font-left-open-big:before {
  content: '\e820';
}

/* '' */
/* line 81, app/assets/stylesheets/fontello.css.erb */
.font-up-open-big:before {
  content: '\e821';
}

/* '' */
/* line 82, app/assets/stylesheets/fontello.css.erb */
.font-down-open-big:before {
  content: '\e822';
}

/* '' */
/* line 83, app/assets/stylesheets/fontello.css.erb */
.font-up-open:before {
  content: '\e823';
}

/* '' */
/* line 84, app/assets/stylesheets/fontello.css.erb */
.font-down-open-mini:before {
  content: '\e824';
}

/* '' */
/* line 85, app/assets/stylesheets/fontello.css.erb */
.font-left-open-mini:before {
  content: '\e825';
}

/* '' */
/* line 86, app/assets/stylesheets/fontello.css.erb */
.font-right-open-mini:before {
  content: '\e826';
}

/* '' */
/* line 87, app/assets/stylesheets/fontello.css.erb */
.font-up-open-mini:before {
  content: '\e827';
}

/* '' */
/* line 88, app/assets/stylesheets/fontello.css.erb */
.font-down-open:before {
  content: '\e828';
}

/* '' */
/* line 89, app/assets/stylesheets/fontello.css.erb */
.font-left-dir:before {
  content: '\e829';
}

/* '' */
/* line 90, app/assets/stylesheets/fontello.css.erb */
.font-right-dir:before {
  content: '\e82a';
}

/* '' */
/* line 91, app/assets/stylesheets/fontello.css.erb */
.font-logout:before {
  content: '\e82b';
}

/* '' */
/* line 92, app/assets/stylesheets/fontello.css.erb */
.font-login:before {
  content: '\e82c';
}

/* '' */
/* line 93, app/assets/stylesheets/fontello.css.erb */
.font-floppy:before {
  content: '\e82d';
}

/* '' */
/* line 94, app/assets/stylesheets/fontello.css.erb */
.font-key:before {
  content: '\e82e';
}

/* '' */
/* line 95, app/assets/stylesheets/fontello.css.erb */
.font-mail:before {
  content: '\e82f';
}

/* '' */
/* line 96, app/assets/stylesheets/fontello.css.erb */
.font-comment:before {
  content: '\e830';
}

/* '' */
/* line 97, app/assets/stylesheets/fontello.css.erb */
.font-chat:before {
  content: '\e831';
}

/* '' */
/* line 98, app/assets/stylesheets/fontello.css.erb */
.font-phone:before {
  content: '\e832';
}

/* '' */
/* line 99, app/assets/stylesheets/fontello.css.erb */
.font-cog:before {
  content: '\e833';
}

/* '' */
/* line 100, app/assets/stylesheets/fontello.css.erb */
.font-search:before {
  content: '\e834';
}

/* '' */
/* line 101, app/assets/stylesheets/fontello.css.erb */
.font-doc-text-inv:before {
  content: '\e835';
}

/* '' */
/* line 102, app/assets/stylesheets/fontello.css.erb */
.font-doc-text:before {
  content: '\e836';
}

/* '' */
/* line 103, app/assets/stylesheets/fontello.css.erb */
.font-vcard:before {
  content: '\e837';
}

/* '' */
/* line 104, app/assets/stylesheets/fontello.css.erb */
.font-link:before {
  content: '\e838';
}

/* '' */
/* line 105, app/assets/stylesheets/fontello.css.erb */
.font-export:before {
  content: '\e839';
}

/* '' */
/*!
 * Bootstrap v2.3.2
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
/* line 10, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/* line 26, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* line 37, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
audio:not([controls]) {
  display: none;
}

/* line 44, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 50, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

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

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

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

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

/* line 79, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
img {
  /* Responsive images (ensure images don't scale beyond their parents) */
  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */
  width: auto\9;
  /* IE7-8 need help adjusting responsive images */
  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* line 91, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
#map_canvas img,
.google-maps img {
  max-width: none;
}

/* line 100, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}

/* line 108, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
button,
input {
  *overflow: visible;
  line-height: normal;
}

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

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

/* line 125, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

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

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

/* line 143, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
textarea {
  overflow: auto;
  vertical-align: top;
}

@media print {
  /* line 155, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  /* line 162, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  a,
a:visited {
    text-decoration: underline;
  }
  /* line 167, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 171, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 176, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }
  /* line 182, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 188, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  thead {
    display: table-header-group;
  }
  /* line 192, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 197, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  /* line 205, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 212, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_reset.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
}

/* line 9, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  background-color: #fff;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
a {
  color: #08c;
  text-decoration: none;
}

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

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

/* line 42, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 51, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 500px;
}

/* line 567, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row {
  margin-left: -20px;
  *zoom: 1;
}

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

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row:after {
  clear: both;
}

/* line 572, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
[class*="span"] {
  float: left;
  min-height: 1px;
  margin-left: 20px;
}

/* line 579, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span1 {
  width: 60px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span2 {
  width: 140px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span3 {
  width: 220px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span4 {
  width: 300px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span5 {
  width: 380px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span6 {
  width: 460px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span7 {
  width: 540px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span8 {
  width: 620px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span9 {
  width: 700px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span10 {
  width: 780px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span11 {
  width: 860px;
}

/* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.span12 {
  width: 940px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset1 {
  margin-left: 100px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset2 {
  margin-left: 180px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset3 {
  margin-left: 260px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset4 {
  margin-left: 340px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset5 {
  margin-left: 420px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset6 {
  margin-left: 500px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset7 {
  margin-left: 580px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset8 {
  margin-left: 660px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset9 {
  margin-left: 740px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset10 {
  margin-left: 820px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset11 {
  margin-left: 900px;
}

/* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.offset12 {
  margin-left: 980px;
}

/* line 614, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid {
  width: 100%;
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid:before, .row-fluid:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid:after {
  clear: both;
}

/* line 617, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid [class*="span"] {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box;
  float: left;
  margin-left: 2.1276595745%;
  *margin-left: 2.0744680851%;
}

/* line 623, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

/* line 628, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .controls-row [class*="span"] + [class*="span"] {
  margin-left: 2.1276595745%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span1 {
  width: 6.3829787234%;
  *width: 6.329787234%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span2 {
  width: 14.8936170213%;
  *width: 14.8404255319%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span3 {
  width: 23.4042553191%;
  *width: 23.3510638298%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span4 {
  width: 31.914893617%;
  *width: 31.8617021277%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span5 {
  width: 40.4255319149%;
  *width: 40.3723404255%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span6 {
  width: 48.9361702128%;
  *width: 48.8829787234%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span7 {
  width: 57.4468085106%;
  *width: 57.3936170213%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span8 {
  width: 65.9574468085%;
  *width: 65.9042553191%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span9 {
  width: 74.4680851064%;
  *width: 74.414893617%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span10 {
  width: 82.9787234043%;
  *width: 82.9255319149%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span11 {
  width: 91.4893617021%;
  *width: 91.4361702128%;
}

/* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .span12 {
  width: 100%;
  *width: 99.9468085106%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset1 {
  margin-left: 10.6382978723%;
  *margin-left: 10.5319148936%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset1:first-child {
  margin-left: 8.5106382979%;
  *margin-left: 8.4042553191%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset2 {
  margin-left: 19.1489361702%;
  *margin-left: 19.0425531915%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset2:first-child {
  margin-left: 17.0212765957%;
  *margin-left: 16.914893617%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset3 {
  margin-left: 27.6595744681%;
  *margin-left: 27.5531914894%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset3:first-child {
  margin-left: 25.5319148936%;
  *margin-left: 25.4255319149%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset4 {
  margin-left: 36.170212766%;
  *margin-left: 36.0638297872%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset4:first-child {
  margin-left: 34.0425531915%;
  *margin-left: 33.9361702128%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset5 {
  margin-left: 44.6808510638%;
  *margin-left: 44.5744680851%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset5:first-child {
  margin-left: 42.5531914894%;
  *margin-left: 42.4468085106%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset6 {
  margin-left: 53.1914893617%;
  *margin-left: 53.085106383%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset6:first-child {
  margin-left: 51.0638297872%;
  *margin-left: 50.9574468085%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset7 {
  margin-left: 61.7021276596%;
  *margin-left: 61.5957446809%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset7:first-child {
  margin-left: 59.5744680851%;
  *margin-left: 59.4680851064%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset8 {
  margin-left: 70.2127659574%;
  *margin-left: 70.1063829787%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset8:first-child {
  margin-left: 68.085106383%;
  *margin-left: 67.9787234043%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset9 {
  margin-left: 78.7234042553%;
  *margin-left: 78.6170212766%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset9:first-child {
  margin-left: 76.5957446809%;
  *margin-left: 76.4893617021%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset10 {
  margin-left: 87.2340425532%;
  *margin-left: 87.1276595745%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset10:first-child {
  margin-left: 85.1063829787%;
  *margin-left: 85%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset11 {
  margin-left: 95.7446808511%;
  *margin-left: 95.6382978723%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset11:first-child {
  margin-left: 93.6170212766%;
  *margin-left: 93.5106382979%;
}

/* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset12 {
  margin-left: 104.2553191489%;
  *margin-left: 104.1489361702%;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.row-fluid .offset12:first-child {
  margin-left: 102.1276595745%;
  *margin-left: 102.0212765957%;
}

/* line 13, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_grid.scss */
.hide[class*="span"],
.row-fluid .hide[class*="span"] {
  display: none;
}

/* line 18, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_grid.scss */
.pull-right[class*="span"],
.row-fluid .pull-right[class*="span"] {
  float: right;
}

/* line 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_layouts.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  *zoom: 1;
}

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

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.container:after {
  clear: both;
}

/* line 12, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_layouts.scss */
.container-fluid {
  padding-right: 20px;
  padding-left: 20px;
  *zoom: 1;
}

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

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.container-fluid:after {
  clear: both;
}

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

/* line 12, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 200;
  line-height: 30px;
}

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

/* line 26, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
strong {
  font-weight: bold;
}

/* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
em {
  font-style: italic;
}

/* line 28, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
cite {
  font-style: normal;
}

/* line 31, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.muted {
  color: #999;
}

/* line 32, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
a.muted:hover,
a.muted:focus {
  color: gray;
}

/* line 35, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.text-warning {
  color: #c09853;
}

/* line 36, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #a47e3c;
}

/* line 39, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.text-error {
  color: #b94a48;
}

/* line 40, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
a.text-error:hover,
a.text-error:focus {
  color: #953b39;
}

/* line 43, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.text-info {
  color: #3a87ad;
}

/* line 44, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
a.text-info:hover,
a.text-info:focus {
  color: #2d6987;
}

/* line 47, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.text-success {
  color: #468847;
}

/* line 48, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
a.text-success:hover,
a.text-success:focus {
  color: #356635;
}

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

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

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

/* line 59, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 10px 0;
  font-family: inherit;
  font-weight: bold;
  line-height: 20px;
  color: inherit;
  text-rendering: optimizelegibility;
}

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

/* line 73, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
h1,
h2,
h3 {
  line-height: 40px;
}

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

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

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

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

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

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

/* line 84, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
h1 small {
  font-size: 24.5px;
}

/* line 85, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
h2 small {
  font-size: 17.5px;
}

/* line 86, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
h3 small {
  font-size: 14px;
}

/* line 87, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
h4 small {
  font-size: 14px;
}

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

/* line 105, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
ul, ol {
  padding: 0;
  margin: 0 0 10px 25px;
}

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

/* line 115, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
li {
  line-height: 20px;
}

/* line 120, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}

/* line 127, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
ul.inline,
ol.inline {
  margin-left: 0;
  list-style: none;
}

/* line 131, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
ul.inline > li,
ol.inline > li {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding-left: 5px;
  padding-right: 5px;
}

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

/* line 143, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
dt,
dd {
  line-height: 20px;
}

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

/* line 150, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
dd {
  margin-left: 10px;
}

/* line 154, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.dl-horizontal {
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.dl-horizontal:before, .dl-horizontal:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.dl-horizontal:after {
  clear: both;
}

/* line 156, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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 163, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
.dl-horizontal dd {
  margin-left: 180px;
}

/* line 172, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff;
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999;
}

/* line 186, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 192, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eee;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote p {
  margin-bottom: 0;
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.25;
}

/* line 202, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote small {
  display: block;
  line-height: 20px;
  color: #999;
}

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

/* line 212, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote.pull-right {
  float: right;
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eee;
  border-left: 0;
}

/* line 218, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}

/* line 223, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote.pull-right small:before {
  content: '';
}

/* line 226, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
blockquote.pull-right small:after {
  content: '\00A0 \2014';
}

/* line 234, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_type.scss */
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}

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

/* line 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_code.scss */
code,
pre {
  padding: 0 3px 2px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #333;
  border-radius: 3px;
}

/* line 17, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_code.scss */
code {
  padding: 2px 4px;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
  white-space: nowrap;
}

/* line 26, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

/* line 42, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_code.scss */
pre.prettyprint {
  margin-bottom: 20px;
}

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

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

/* line 10, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
form {
  margin: 0 0 20px;
}

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

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

/* line 33, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
legend small {
  font-size: 15px;
  color: #999;
}

/* line 40, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
}

/* line 47, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input,
button,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 55, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
label {
  display: block;
  margin-bottom: 5px;
}

/* line 64, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555;
  border-radius: 4px;
  vertical-align: middle;
}

/* line 94, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input,
textarea,
.uneditable-input {
  width: 206px;
}

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

/* line 104, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

/* line 126, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

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

/* line 144, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

/* line 155, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
select,
input[type="file"] {
  height: 30px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
  line-height: 30px;
}

/* line 163, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
select {
  width: 220px;
  border: 1px solid #ccc;
  background-color: #fff;
}

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

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

/* line 188, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.uneditable-input,
.uneditable-textarea {
  color: #999;
  background-color: #fcfcfc;
  border-color: #ccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed;
}

/* line 198, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}

/* line 204, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.uneditable-textarea {
  width: auto;
  height: auto;
}

/* line 83, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}

/* line 86, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}

/* line 89, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}

/* line 224, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio,
.checkbox {
  min-height: 20px;
  padding-left: 20px;
}

/* line 229, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

/* line 236, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
}

/* line 243, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

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

/* line 261, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-mini {
  width: 60px;
}

/* line 262, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-small {
  width: 90px;
}

/* line 263, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-medium {
  width: 150px;
}

/* line 264, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-large {
  width: 210px;
}

/* line 265, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-xlarge {
  width: 270px;
}

/* line 266, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-xxlarge {
  width: 530px;
}

/* line 269, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}

/* line 282, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
  display: inline-block;
}

/* line 669, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input,
textarea,
.uneditable-input {
  margin-left: 0;
}

/* line 676, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.controls-row [class*="span"] + [class*="span"] {
  margin-left: 20px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span1,
textarea.span1,
.uneditable-input.span1 {
  width: 46px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span2,
textarea.span2,
.uneditable-input.span2 {
  width: 126px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span3,
textarea.span3,
.uneditable-input.span3 {
  width: 206px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span4,
textarea.span4,
.uneditable-input.span4 {
  width: 286px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span5,
textarea.span5,
.uneditable-input.span5 {
  width: 366px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span6,
textarea.span6,
.uneditable-input.span6 {
  width: 446px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span7,
textarea.span7,
.uneditable-input.span7 {
  width: 526px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span8,
textarea.span8,
.uneditable-input.span8 {
  width: 606px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span9,
textarea.span9,
.uneditable-input.span9 {
  width: 686px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span10,
textarea.span10,
.uneditable-input.span10 {
  width: 766px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span11,
textarea.span11,
.uneditable-input.span11 {
  width: 846px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
input.span12,
textarea.span12,
.uneditable-input.span12 {
  width: 926px;
}

/* line 304, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.controls-row {
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.controls-row:before, .controls-row:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.controls-row:after {
  clear: both;
}

/* line 309, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.controls-row [class*="span"],
.row-fluid .controls-row [class*="span"] {
  float: left;
}

/* line 315, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
  padding-top: 5px;
}

/* line 327, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eee;
}

/* line 337, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}

/* line 162, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
  color: #c09853;
}

/* line 168, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  color: #c09853;
}

/* line 175, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  border-color: #c09853;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
  border-color: #a47e3c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}

/* line 186, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}

/* line 162, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
  color: #b94a48;
}

/* line 168, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  color: #b94a48;
}

/* line 175, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  border-color: #b94a48;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
  border-color: #953b39;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}

/* line 186, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}

/* line 162, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
  color: #468847;
}

/* line 168, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  color: #468847;
}

/* line 175, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  border-color: #468847;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
  border-color: #356635;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}

/* line 186, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}

/* line 162, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
  color: #3a87ad;
}

/* line 168, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  color: #3a87ad;
}

/* line 175, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  border-color: #3a87ad;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.info input:focus,
.control-group.info select:focus,
.control-group.info textarea:focus {
  border-color: #2d6987;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
}

/* line 186, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #3a87ad;
}

/* line 369, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

/* line 374, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
  border-color: #e9322d;
  box-shadow: 0 0 6px #f8b9b7;
}

/* line 385, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-actions {
  padding: 19px 20px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.form-actions:before, .form-actions:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.form-actions:after {
  clear: both;
}

/* line 399, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.help-block,
.help-inline {
  color: #595959;
}

/* line 404, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.help-block {
  display: block;
  margin-bottom: 10px;
}

/* line 409, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.help-inline {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  vertical-align: middle;
  padding-left: 5px;
}

/* line 422, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append,
.input-prepend {
  display: inline-block;
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 0;
  white-space: nowrap;
}

/* line 431, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-append .dropdown-menu,
.input-append .popover,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input,
.input-prepend .dropdown-menu,
.input-prepend .popover {
  font-size: 14px;
}

/* line 439, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append input,
.input-append select,
.input-append .uneditable-input,
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input {
  position: relative;
  margin-bottom: 0;
  *margin-left: 0;
  vertical-align: top;
  border-radius: 0 4px 4px 0;
}

/* line 448, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append input:focus,
.input-append select:focus,
.input-append .uneditable-input:focus,
.input-prepend input:focus,
.input-prepend select:focus,
.input-prepend .uneditable-input:focus {
  z-index: 2;
}

/* line 452, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append .add-on,
.input-prepend .add-on {
  display: inline-block;
  width: auto;
  height: 20px;
  min-width: 16px;
  padding: 4px 5px;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  background-color: #eee;
  border: 1px solid #ccc;
}

/* line 466, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append .add-on,
.input-append .btn,
.input-append .btn-group > .dropdown-toggle,
.input-prepend .add-on,
.input-prepend .btn,
.input-prepend .btn-group > .dropdown-toggle {
  vertical-align: top;
  border-radius: 0;
}

/* line 472, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append .active,
.input-prepend .active {
  background-color: #a9dba9;
  border-color: #46a546;
}

/* line 479, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-prepend .add-on,
.input-prepend .btn {
  margin-right: -1px;
}

/* line 483, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
  border-radius: 4px 0 0 4px;
}

/* line 491, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append input,
.input-append select,
.input-append .uneditable-input {
  border-radius: 4px 0 0 4px;
}

/* line 495, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append input + .btn-group .btn:last-child,
.input-append select + .btn-group .btn:last-child,
.input-append .uneditable-input + .btn-group .btn:last-child {
  border-radius: 0 4px 4px 0;
}

/* line 499, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append .add-on,
.input-append .btn,
.input-append .btn-group {
  margin-left: -1px;
}

/* line 504, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
  border-radius: 0 4px 4px 0;
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  border-radius: 0;
}

/* line 517, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-prepend.input-append input + .btn-group .btn,
.input-prepend.input-append select + .btn-group .btn,
.input-prepend.input-append .uneditable-input + .btn-group .btn {
  border-radius: 0 4px 4px 0;
}

/* line 521, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  border-radius: 4px 0 0 4px;
}

/* line 526, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
}

/* line 531, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.input-prepend.input-append .btn-group:first-child {
  margin-left: 0;
}

/* line 542, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
input.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0;
  border-radius: 15px;
}

/* Allow for input prepend/append in search forms */
/* line 552, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
  border-radius: 0;
}

/* line 556, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .input-append .search-query {
  border-radius: 14px 0 0 14px;
}

/* line 559, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .input-append .btn {
  border-radius: 0 14px 14px 0;
}

/* line 562, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .input-prepend .search-query {
  border-radius: 0 14px 14px 0;
}

/* line 565, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .input-prepend .btn {
  border-radius: 14px 0 0 14px;
}

/* line 581, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  margin-bottom: 0;
  vertical-align: middle;
}

/* line 594, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
  display: none;
}

/* line 598, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
  display: inline-block;
}

/* line 605, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}

/* line 612, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/* line 621, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}

/* line 632, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.control-group {
  margin-bottom: 10px;
}

/* line 637, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}

/* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .control-group {
  margin-bottom: 20px;
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.form-horizontal .control-group:before, .form-horizontal .control-group:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.form-horizontal .control-group:after {
  clear: both;
}

/* line 652, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .control-label {
  float: left;
  width: 160px;
  padding-top: 5px;
  text-align: right;
}

/* line 659, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}

/* line 666, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .controls:first-child {
  *padding-left: 180px;
}

/* line 671, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .help-block {
  margin-bottom: 0;
}

/* line 681, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block,
.form-horizontal .uneditable-input + .help-block,
.form-horizontal .input-prepend + .help-block,
.form-horizontal .input-append + .help-block {
  margin-top: 10px;
}

/* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_forms.scss */
.form-horizontal .form-actions {
  padding-left: 180px;
}

/* line 9, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

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

/* line 23, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table th,
.table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

/* line 31, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table th {
  font-weight: bold;
}

/* line 35, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table thead th {
  vertical-align: bottom;
}

/* line 39, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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 48, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table tbody + tbody {
  border-top: 2px solid #ddd;
}

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

/* line 64, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

/* line 74, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #ddd;
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
  border-radius: 4px;
}

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

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

/* line 97, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
  border-top-left-radius: 4px;
}

/* line 103, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child {
  border-top-right-radius: 4px;
}

/* line 109, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
  border-bottom-left-radius: 4px;
}

/* line 117, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
  border-bottom-right-radius: 4px;
}

/* line 126, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  border-bottom-left-radius: 0;
}

/* line 129, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  border-bottom-right-radius: 0;
}

/* line 134, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
.table-bordered colgroup + tbody tr:first-child td:first-child {
  border-top-left-radius: 4px;
}

/* line 140, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered caption + thead tr:first-child th:last-child,
.table-bordered caption + tbody tr:first-child td:last-child,
.table-bordered colgroup + thead tr:first-child th:last-child,
.table-bordered colgroup + tbody tr:first-child td:last-child {
  border-top-right-radius: 4px;
}

/* line 158, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

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

/* line 183, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span1,
.table th.span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span2,
.table th.span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span3,
.table th.span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span4,
.table th.span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span5,
.table th.span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span6,
.table th.span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span7,
.table th.span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span8,
.table th.span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span9,
.table th.span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span10,
.table th.span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span11,
.table th.span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table td.span12,
.table th.span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}

/* line 207, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table tbody tr.success > td {
  background-color: #dff0d8;
}

/* line 210, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table tbody tr.error > td {
  background-color: #f2dede;
}

/* line 213, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table tbody tr.warning > td {
  background-color: #fcf8e3;
}

/* line 216, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table tbody tr.info > td {
  background-color: #d9edf7;
}

/* line 223, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-hover tbody tr.success:hover > td {
  background-color: #d0e9c6;
}

/* line 226, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-hover tbody tr.error:hover > td {
  background-color: #ebcccc;
}

/* line 229, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-hover tbody tr.warning:hover > td {
  background-color: #faf2cc;
}

/* line 232, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tables.scss */
.table-hover tbody tr.info:hover > td {
  background-color: #c4e3f3;
}

/* line 17, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url(/assets/glyphicons-halflings-d99e3fa32c641032f08149914b28c2dc6acf2ec62f70987f2259eabbfa7fc0de.png);
  background-position: 14px 14px;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* White icons with optional class, or on hover/focus/active states of certain elements */
/* line 32, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:focus > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > li > a:focus > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
  background-image: url(/assets/glyphicons-halflings-white-f0e0d95a9c8abcdfabf46348e2d4285829bb0491f5f6af0e05af52bffb6324c4.png);
}

/* line 52, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-glass {
  background-position: 0      0;
}

/* line 53, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-music {
  background-position: -24px  0;
}

/* line 54, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-search {
  background-position: -48px  0;
}

/* line 55, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-envelope {
  background-position: -72px  0;
}

/* line 56, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-heart {
  background-position: -96px  0;
}

/* line 57, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-star {
  background-position: -120px 0;
}

/* line 58, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-star-empty {
  background-position: -144px 0;
}

/* line 59, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-user {
  background-position: -168px 0;
}

/* line 60, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-film {
  background-position: -192px 0;
}

/* line 61, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-th-large {
  background-position: -216px 0;
}

/* line 62, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-th {
  background-position: -240px 0;
}

/* line 63, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-th-list {
  background-position: -264px 0;
}

/* line 64, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-ok {
  background-position: -288px 0;
}

/* line 65, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-remove {
  background-position: -312px 0;
}

/* line 66, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-zoom-in {
  background-position: -336px 0;
}

/* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-zoom-out {
  background-position: -360px 0;
}

/* line 68, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-off {
  background-position: -384px 0;
}

/* line 69, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-signal {
  background-position: -408px 0;
}

/* line 70, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-cog {
  background-position: -432px 0;
}

/* line 71, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-trash {
  background-position: -456px 0;
}

/* line 73, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-home {
  background-position: 0      -24px;
}

/* line 74, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-file {
  background-position: -24px  -24px;
}

/* line 75, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-time {
  background-position: -48px  -24px;
}

/* line 76, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-road {
  background-position: -72px  -24px;
}

/* line 77, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-download-alt {
  background-position: -96px  -24px;
}

/* line 78, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-download {
  background-position: -120px -24px;
}

/* line 79, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-upload {
  background-position: -144px -24px;
}

/* line 80, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-inbox {
  background-position: -168px -24px;
}

/* line 81, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-play-circle {
  background-position: -192px -24px;
}

/* line 82, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-repeat {
  background-position: -216px -24px;
}

/* line 83, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-refresh {
  background-position: -240px -24px;
}

/* line 84, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-list-alt {
  background-position: -264px -24px;
}

/* line 85, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-lock {
  background-position: -287px -24px;
}

/* line 86, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-flag {
  background-position: -312px -24px;
}

/* line 87, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-headphones {
  background-position: -336px -24px;
}

/* line 88, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-volume-off {
  background-position: -360px -24px;
}

/* line 89, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-volume-down {
  background-position: -384px -24px;
}

/* line 90, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-volume-up {
  background-position: -408px -24px;
}

/* line 91, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-qrcode {
  background-position: -432px -24px;
}

/* line 92, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-barcode {
  background-position: -456px -24px;
}

/* line 94, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-tag {
  background-position: 0      -48px;
}

/* line 95, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-tags {
  background-position: -25px  -48px;
}

/* line 96, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-book {
  background-position: -48px  -48px;
}

/* line 97, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-bookmark {
  background-position: -72px  -48px;
}

/* line 98, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-print {
  background-position: -96px  -48px;
}

/* line 99, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-camera {
  background-position: -120px -48px;
}

/* line 100, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-font {
  background-position: -144px -48px;
}

/* line 101, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-bold {
  background-position: -167px -48px;
}

/* line 102, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-italic {
  background-position: -192px -48px;
}

/* line 103, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-text-height {
  background-position: -216px -48px;
}

/* line 104, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-text-width {
  background-position: -240px -48px;
}

/* line 105, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-align-left {
  background-position: -264px -48px;
}

/* line 106, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-align-center {
  background-position: -288px -48px;
}

/* line 107, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-align-right {
  background-position: -312px -48px;
}

/* line 108, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-align-justify {
  background-position: -336px -48px;
}

/* line 109, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-list {
  background-position: -360px -48px;
}

/* line 110, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-indent-left {
  background-position: -384px -48px;
}

/* line 111, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-indent-right {
  background-position: -408px -48px;
}

/* line 112, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-facetime-video {
  background-position: -432px -48px;
}

/* line 113, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-picture {
  background-position: -456px -48px;
}

/* line 115, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-pencil {
  background-position: 0      -72px;
}

/* line 116, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-map-marker {
  background-position: -24px  -72px;
}

/* line 117, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-adjust {
  background-position: -48px  -72px;
}

/* line 118, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-tint {
  background-position: -72px  -72px;
}

/* line 119, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-edit {
  background-position: -96px  -72px;
}

/* line 120, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-share {
  background-position: -120px -72px;
}

/* line 121, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-check {
  background-position: -144px -72px;
}

/* line 122, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-move {
  background-position: -168px -72px;
}

/* line 123, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-step-backward {
  background-position: -192px -72px;
}

/* line 124, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-fast-backward {
  background-position: -216px -72px;
}

/* line 125, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-backward {
  background-position: -240px -72px;
}

/* line 126, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-play {
  background-position: -264px -72px;
}

/* line 127, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-pause {
  background-position: -288px -72px;
}

/* line 128, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-stop {
  background-position: -312px -72px;
}

/* line 129, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-forward {
  background-position: -336px -72px;
}

/* line 130, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-fast-forward {
  background-position: -360px -72px;
}

/* line 131, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-step-forward {
  background-position: -384px -72px;
}

/* line 132, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-eject {
  background-position: -408px -72px;
}

/* line 133, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-chevron-left {
  background-position: -432px -72px;
}

/* line 134, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-chevron-right {
  background-position: -456px -72px;
}

/* line 136, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-plus-sign {
  background-position: 0      -96px;
}

/* line 137, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-minus-sign {
  background-position: -24px  -96px;
}

/* line 138, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-remove-sign {
  background-position: -48px  -96px;
}

/* line 139, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-ok-sign {
  background-position: -72px  -96px;
}

/* line 140, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-question-sign {
  background-position: -96px  -96px;
}

/* line 141, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-info-sign {
  background-position: -120px -96px;
}

/* line 142, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-screenshot {
  background-position: -144px -96px;
}

/* line 143, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-remove-circle {
  background-position: -168px -96px;
}

/* line 144, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-ok-circle {
  background-position: -192px -96px;
}

/* line 145, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-ban-circle {
  background-position: -216px -96px;
}

/* line 146, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-arrow-left {
  background-position: -240px -96px;
}

/* line 147, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-arrow-right {
  background-position: -264px -96px;
}

/* line 148, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-arrow-up {
  background-position: -289px -96px;
}

/* line 149, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-arrow-down {
  background-position: -312px -96px;
}

/* line 150, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-share-alt {
  background-position: -336px -96px;
}

/* line 151, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-resize-full {
  background-position: -360px -96px;
}

/* line 152, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-resize-small {
  background-position: -384px -96px;
}

/* line 153, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-plus {
  background-position: -408px -96px;
}

/* line 154, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-minus {
  background-position: -433px -96px;
}

/* line 155, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-asterisk {
  background-position: -456px -96px;
}

/* line 157, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-exclamation-sign {
  background-position: 0      -120px;
}

/* line 158, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-gift {
  background-position: -24px  -120px;
}

/* line 159, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-leaf {
  background-position: -48px  -120px;
}

/* line 160, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-fire {
  background-position: -72px  -120px;
}

/* line 161, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-eye-open {
  background-position: -96px  -120px;
}

/* line 162, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-eye-close {
  background-position: -120px -120px;
}

/* line 163, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-warning-sign {
  background-position: -144px -120px;
}

/* line 164, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-plane {
  background-position: -168px -120px;
}

/* line 165, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-calendar {
  background-position: -192px -120px;
}

/* line 166, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-random {
  background-position: -216px -120px;
  width: 16px;
}

/* line 167, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-comment {
  background-position: -240px -120px;
}

/* line 168, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-magnet {
  background-position: -264px -120px;
}

/* line 169, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-chevron-up {
  background-position: -288px -120px;
}

/* line 170, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-chevron-down {
  background-position: -313px -119px;
}

/* line 171, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-retweet {
  background-position: -336px -120px;
}

/* line 172, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-shopping-cart {
  background-position: -360px -120px;
}

/* line 173, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-folder-close {
  background-position: -384px -120px;
  width: 16px;
}

/* line 174, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-folder-open {
  background-position: -408px -120px;
  width: 16px;
}

/* line 175, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-resize-vertical {
  background-position: -432px -119px;
}

/* line 176, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-resize-horizontal {
  background-position: -456px -118px;
}

/* line 178, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-hdd {
  background-position: 0      -144px;
}

/* line 179, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-bullhorn {
  background-position: -24px  -144px;
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-bell {
  background-position: -48px  -144px;
}

/* line 181, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-certificate {
  background-position: -72px  -144px;
}

/* line 182, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-thumbs-up {
  background-position: -96px  -144px;
}

/* line 183, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-thumbs-down {
  background-position: -120px -144px;
}

/* line 184, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-hand-right {
  background-position: -144px -144px;
}

/* line 185, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-hand-left {
  background-position: -168px -144px;
}

/* line 186, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-hand-up {
  background-position: -192px -144px;
}

/* line 187, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-hand-down {
  background-position: -216px -144px;
}

/* line 188, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-circle-arrow-right {
  background-position: -240px -144px;
}

/* line 189, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-circle-arrow-left {
  background-position: -264px -144px;
}

/* line 190, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-circle-arrow-up {
  background-position: -288px -144px;
}

/* line 191, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-circle-arrow-down {
  background-position: -312px -144px;
}

/* line 192, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-globe {
  background-position: -336px -144px;
}

/* line 193, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-wrench {
  background-position: -360px -144px;
}

/* line 194, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-tasks {
  background-position: -384px -144px;
}

/* line 195, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-filter {
  background-position: -408px -144px;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-briefcase {
  background-position: -432px -144px;
}

/* line 197, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_sprites.scss */
.icon-fullscreen {
  background-position: -456px -144px;
}

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

/* line 11, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle {
  *margin-bottom: -3px;
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #111;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

/* line 34, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}

/* line 41, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

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

/* line 70, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
}

/* line 75, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
}

/* line 88, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  text-decoration: none;
  color: #fff;
  background-color: #0081c2;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #08c, #0077b3);
  background-image: linear-gradient(to bottom, #08c, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF0088CC', endColorstr='#FF0077B3', GradientType=0);
}

/* line 99, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #0081c2;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #08c, #0077b3);
  background-image: linear-gradient(to bottom, #08c, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF0088CC', endColorstr='#FF0077B3', GradientType=0);
}

/* line 111, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999;
}

/* line 117, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  cursor: default;
}

/* line 128, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.open {
  *z-index: 1000;
}

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

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

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

/* line 163, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #111;
  content: "";
}

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

/* line 178, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-submenu {
  position: relative;
}

/* line 182, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  border-radius: 0 6px 6px 6px;
}

/* line 189, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* line 194, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
  border-radius: 5px 5px 5px 0;
}

/* line 203, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}

/* line 216, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

/* line 221, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-submenu.pull-left {
  float: none;
}

/* line 227, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  border-radius: 6px 0 6px 6px;
}

/* line 237, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.dropdown .dropdown-menu .nav-header {
  padding-left: 20px;
  padding-right: 20px;
}

/* line 244, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_dropdowns.scss */
.typeahead {
  z-index: 1051;
  margin-top: 2px;
  border-radius: 4px;
}

/* line 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_wells.scss */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_wells.scss */
.well-large {
  padding: 24px;
  border-radius: 6px;
}

/* line 26, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_wells.scss */
.well-small {
  padding: 9px;
  border-radius: 3px;
}

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

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

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

/* line 19, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_component-animations.scss */
.collapse.in {
  height: auto;
}

/* line 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #111;
  text-shadow: 0 1px 0 white;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_close.scss */
.close:hover, .close:focus {
  color: #111;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

/* line 26, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 10, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: whitesmoke;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #fff, #e6e6e6);
  background-image: linear-gradient(to bottom, #fff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ccc;
  *border: 0;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  *margin-left: .3em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
  color: #333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn:active, .btn.active {
  background-color: #cccccc \9;
}

/* line 61, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn:first-child {
  *margin-left: 0;
}

/* line 29, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover, .btn:focus {
  color: #333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

/* line 41, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 46, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn.active, .btn:active {
  background-image: none;
  outline: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* line 54, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

/* line 70, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-large {
  padding: 11px 19px;
  font-size: 17.5px;
  border-radius: 6px;
}

/* line 75, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px;
}

/* line 81, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
  border-radius: 3px;
}

/* line 86, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0;
}

/* line 90, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px;
}

/* line 96, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-mini {
  padding: 0px 6px;
  font-size: 10.5px;
  border-radius: 3px;
}

/* line 106, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

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

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

/* line 134, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}

/* line 145, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #08c, #0044cc);
  background-image: linear-gradient(to bottom, #08c, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF0088CC', endColorstr='#FF0044CC', GradientType=0);
  border-color: #0044cc #0044cc #002b80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #0044cc;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
  color: #fff;
  background-color: #0044cc;
  *background-color: #003cb3;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-primary:active, .btn-primary.active {
  background-color: #003399 \9;
}

/* line 149, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFBB450', endColorstr='#FFF89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #f89406;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
  color: #fff;
  background-color: #f89406;
  *background-color: #df8505;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-warning:active, .btn-warning.active {
  background-color: #c67605 \9;
}

/* line 153, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEE5F5B', endColorstr='#FFBD362F', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #bd362f;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
  color: #fff;
  background-color: #bd362f;
  *background-color: #a9302a;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-danger:active, .btn-danger.active {
  background-color: #942a25 \9;
}

/* line 157, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF62C462', endColorstr='#FF51A351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #51a351;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
  color: #fff;
  background-color: #51a351;
  *background-color: #499249;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-success:active, .btn-success.active {
  background-color: #408140 \9;
}

/* line 161, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #49afcd;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF2F96B4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #2f96b4;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
  color: #fff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-info:active, .btn-info.active {
  background-color: #24748c \9;
}

/* line 165, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-inverse {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444), to(#222));
  background-image: -webkit-linear-gradient(top, #444, #222);
  background-image: linear-gradient(to bottom, #444, #222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF444444', endColorstr='#FF222222', GradientType=0);
  border-color: #222 #222 black;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #222;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
  color: #fff;
  background-color: #222;
  *background-color: #151515;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-inverse:active, .btn-inverse.active {
  background-color: #090909 \9;
}

/* line 173, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
button.btn,
input.btn[type="submit"] {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

/* line 177, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
button.btn::-moz-focus-inner,
input.btn[type="submit"]::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 186, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
button.btn.btn-large,
input.btn.btn-large[type="submit"] {
  *padding-top: 7px;
  *padding-bottom: 7px;
}

/* line 190, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
button.btn.btn-small,
input.btn.btn-small[type="submit"] {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

/* line 194, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
button.btn.btn-mini,
input.btn.btn-mini[type="submit"] {
  *padding-top: 1px;
  *padding-bottom: 1px;
}

/* line 205, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
}

/* line 212, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  border-color: transparent;
  cursor: pointer;
  color: #08c;
  border-radius: 0;
}

/* line 218, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover,
.btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}

/* line 224, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
  color: #333;
  text-decoration: none;
}

/* line 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group {
  position: relative;
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  font-size: 0;
  vertical-align: middle;
  white-space: nowrap;
  *margin-left: .3em;
}

/* line 61, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.btn-group:first-child {
  *margin-left: 0;
}

/* line 18, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group + .btn-group {
  margin-left: 5px;
}

/* line 23, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar {
  font-size: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group {
  margin-left: 5px;
}

/* line 35, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn {
  position: relative;
  border-radius: 0;
}

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

/* line 42, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 14px;
}

/* line 49, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-mini {
  font-size: 10.5px;
}

/* line 52, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-small {
  font-size: 11.9px;
}

/* line 55, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-large {
  font-size: 17.5px;
}

/* line 60, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 66, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 72, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn.large:first-child {
  margin-left: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 77, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

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

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

/* line 103, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  *padding-top: 5px;
  *padding-bottom: 5px;
}

/* line 110, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-mini + .dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
  *padding-top: 2px;
  *padding-bottom: 2px;
}

/* line 116, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-small + .dropdown-toggle {
  *padding-top: 5px;
  *padding-bottom: 4px;
}

/* line 120, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group > .btn-large + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
  *padding-top: 7px;
  *padding-bottom: 7px;
}

/* line 131, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .dropdown-toggle {
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* line 137, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}

/* line 140, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #0044cc;
}

/* line 143, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .btn-warning.dropdown-toggle {
  background-color: #f89406;
}

/* line 146, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .btn-danger.dropdown-toggle {
  background-color: #bd362f;
}

/* line 149, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .btn-success.dropdown-toggle {
  background-color: #51a351;
}

/* line 152, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .btn-info.dropdown-toggle {
  background-color: #2f96b4;
}

/* line 155, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222;
}

/* line 162, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn .caret {
  margin-top: 8px;
  margin-left: 0;
}

/* line 167, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-large .caret {
  margin-top: 6px;
}

/* line 170, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-large .caret {
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px;
}

/* line 175, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-mini .caret,
.btn-small .caret {
  margin-top: 8px;
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.dropup .btn-large .caret {
  border-bottom-width: 5px;
}

/* line 193, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

/* line 204, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
}

/* line 208, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn {
  display: block;
  float: none;
  max-width: 100%;
  border-radius: 0;
}

/* line 214, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn + .btn {
  margin-left: 0;
  margin-top: -1px;
}

/* line 218, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:first-child {
  border-radius: 4px 4px 0 0;
}

/* line 221, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn:last-child {
  border-radius: 0 0 4px 4px;
}

/* line 224, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-large:first-child {
  border-radius: 6px 6px 0 0;
}

/* line 227, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_button-groups.scss */
.btn-group-vertical > .btn-large:last-child {
  border-radius: 0 0 6px 6px;
}

/* line 9, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  border-radius: 4px;
}

/* line 17, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert,
.alert h4 {
  color: #c09853;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert h4 {
  margin: 0;
}

/* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px;
}

/* line 38, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}

/* line 43, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-success h4 {
  color: #468847;
}

/* line 46, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}

/* line 52, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-danger h4,
.alert-error h4 {
  color: #b94a48;
}

/* line 56, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}

/* line 61, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-info h4 {
  color: #3a87ad;
}

/* line 69, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* line 73, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}

/* line 77, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_alerts.scss */
.alert-block p + p {
  margin-top: 5px;
}

/* line 9, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav {
  margin-left: 0;
  margin-bottom: 20px;
  list-style: none;
}

/* line 16, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a {
  display: block;
}

/* line 19, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

/* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > li > a > img {
  max-width: none;
}

/* line 32, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > .pull-right {
  float: right;
}

/* line 37, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  color: #999;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* line 48, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav li + .nav-header {
  margin-top: 9px;
}

/* line 57, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-list {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}

/* line 62, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-list > li > a,
.nav-list .nav-header {
  margin-left: -15px;
  margin-right: -15px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* line 68, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-list > li > a {
  padding: 3px 15px;
}

/* line 71, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-list > .active > a,
.nav-list > .active > a:hover,
.nav-list > .active > a:focus {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-color: #08c;
}

/* line 78, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
  margin-right: 2px;
}

/* line 83, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-list .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
}

/* line 93, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs,
.nav-pills {
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.nav-tabs:before, .nav-tabs:after,
.nav-pills:before,
.nav-pills:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.nav-tabs:after,
.nav-pills:after {
  clear: both;
}

/* line 97, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li,
.nav-pills > li {
  float: left;
}

/* line 101, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a,
.nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
}

/* line 113, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 117, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li {
  margin-bottom: -1px;
}

/* line 121, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 20px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 127, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {
  border-color: #eee #eee #ddd;
}

/* line 133, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
  color: #555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

/* line 148, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: 5px;
}

/* line 157, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
  color: #fff;
  background-color: #08c;
}

/* line 170, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li {
  float: none;
}

/* line 173, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-stacked > li > a {
  margin-right: 0;
}

/* line 178, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs.nav-stacked {
  border-bottom: 0;
}

/* line 181, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs.nav-stacked > li > a {
  border: 1px solid #ddd;
  border-radius: 0;
}

/* line 185, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs.nav-stacked > li:first-child > a {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

/* line 188, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs.nav-stacked > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 191, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs.nav-stacked > li > a:hover,
.nav-tabs.nav-stacked > li > a:focus {
  border-color: #ddd;
  z-index: 2;
}

/* line 198, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills.nav-stacked > li > a {
  margin-bottom: 3px;
}

/* line 201, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px;
}

/* line 210, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-menu {
  border-radius: 0 0 6px 6px;
}

/* line 213, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-pills .dropdown-menu {
  border-radius: 6px;
}

/* line 220, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav .dropdown-toggle .caret {
  border-top-color: #08c;
  border-bottom-color: #08c;
  margin-top: 6px;
}

/* line 225, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
  border-top-color: #005580;
  border-bottom-color: #005580;
}

/* move down carets for tabs */
/* line 231, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .dropdown-toggle .caret {
  margin-top: 8px;
}

/* line 237, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav .active .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

/* line 241, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .active .dropdown-toggle .caret {
  border-top-color: #555;
  border-bottom-color: #555;
}

/* line 248, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > .dropdown.active > a:hover,
.nav > .dropdown.active > a:focus {
  cursor: pointer;
}

/* line 255, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
  color: #fff;
  background-color: #999;
  border-color: #999;
}

/* line 263, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 273, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-stacked .open > a:hover,
.tabs-stacked .open > a:focus {
  border-color: #999;
}

/* line 288, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabbable {
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.tabbable:before, .tabbable:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.tabbable:after {
  clear: both;
}

/* line 291, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tab-content {
  overflow: auto;
}

/* line 296, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

/* line 303, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

/* line 307, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tab-content > .active,
.pill-content > .active {
  display: block;
}

/* line 316, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-below > .nav-tabs {
  border-top: 1px solid #ddd;
}

/* line 319, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}

/* line 323, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-below > .nav-tabs > li > a {
  border-radius: 0 0 4px 4px;
}

/* line 325, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-below > .nav-tabs > li > a:hover, .tabs-below > .nav-tabs > li > a:focus {
  border-bottom-color: transparent;
  border-top-color: #ddd;
}

/* line 331, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd;
}

/* line 341, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none;
}

/* line 345, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}

/* line 353, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}

/* line 358, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  border-radius: 4px 0 0 4px;
}

/* line 362, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eee #ddd #eee #eee;
}

/* line 366, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #fff;
}

/* line 374, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}

/* line 379, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
}

/* line 383, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eee #eee #eee #ddd;
}

/* line 387, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #fff;
}

/* line 400, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > .disabled > a {
  color: #999;
}

/* line 404, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navs.scss */
.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  cursor: default;
}

/* line 10, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  overflow: visible;
  margin-bottom: 20px;
  *position: relative;
  *z-index: 2;
}

/* line 21, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inner {
  min-height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fafafa;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF2F2F2', GradientType=0);
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-inner:before, .navbar-inner:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-inner:after {
  clear: both;
}

/* line 36, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .container {
  width: auto;
}

/* line 41, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.nav-collapse.collapse {
  height: auto;
  overflow: visible;
}

/* line 49, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .brand {
  float: left;
  display: block;
  padding: 10px 20px 10px;
  margin-left: -20px;
  font-size: 20px;
  font-weight: 200;
  color: #777;
  text-shadow: 0 1px 0 #ffffff;
}

/* line 59, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .brand:hover, .navbar .brand:focus {
  text-decoration: none;
}

/* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  margin-bottom: 0;
  line-height: 40px;
  color: #777;
}

/* line 75, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-link {
  color: #777;
}

/* line 77, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-link:hover, .navbar-link:focus {
  color: #333;
}

/* line 85, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .divider-vertical {
  height: 40px;
  margin: 0 9px;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #ffffff;
}

/* line 94, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .btn,
.navbar .btn-group {
  margin-top: 5px;
}

/* line 98, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .btn-group .btn,
.navbar .input-prepend .btn,
.navbar .input-append .btn,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
  margin-top: 0;
}

/* line 108, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form {
  margin-bottom: 0;
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-form:before, .navbar-form:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-form:after {
  clear: both;
}

/* line 111, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
  margin-top: 5px;
}

/* line 117, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form input,
.navbar-form select,
.navbar-form .btn {
  display: inline-block;
  margin-bottom: 0;
}

/* line 123, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
  margin-top: 3px;
}

/* line 128, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form .input-append,
.navbar-form .input-prepend {
  margin-top: 5px;
  white-space: nowrap;
}

/* line 132, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-form .input-append input,
.navbar-form .input-prepend input {
  margin-top: 0;
}

/* line 140, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-search {
  position: relative;
  float: left;
  margin-top: 5px;
  margin-bottom: 0;
}

/* line 145, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-search .search-query {
  margin-bottom: 0;
  padding: 4px 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  border-radius: 15px;
}

/* line 158, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top {
  position: static;
  margin-bottom: 0;
}

/* line 161, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top .navbar-inner {
  border-radius: 0;
}

/* line 172, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}

/* line 180, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  border-width: 0 0 1px;
}

/* line 184, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-inner {
  border-width: 1px 0 0;
}

/* line 187, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}

/* line 196, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}

/* line 203, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top {
  top: 0;
}

/* line 208, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

/* line 214, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom {
  bottom: 0;
}

/* line 216, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .navbar-inner {
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}

/* line 226, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}

/* line 233, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav.pull-right {
  float: right;
  margin-right: 0;
}

/* line 237, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav > li {
  float: left;
}

/* line 242, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav > li > a {
  float: none;
  padding: 10px 15px 10px;
  color: #777;
  text-decoration: none;
  text-shadow: 0 1px 0 #ffffff;
}

/* line 250, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav .dropdown-toggle .caret {
  margin-top: 8px;
}

/* line 255, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
  background-color: transparent;
  color: #333;
  text-decoration: none;
}

/* line 263, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
  color: #555;
  text-decoration: none;
  background-color: #e6e6e6;
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}

/* line 274, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-left: 5px;
  margin-right: 5px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #ededed;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e6e6e6);
  background-image: linear-gradient(to bottom, #f2f2f2, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2F2F2', endColorstr='#FFE6E6E6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #e6e6e6;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar .btn-navbar:hover, .navbar .btn-navbar:focus, .navbar .btn-navbar:active, .navbar .btn-navbar.active, .navbar .btn-navbar.disabled, .navbar .btn-navbar[disabled] {
  color: #fff;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar .btn-navbar:active, .navbar .btn-navbar.active {
  background-color: #cccccc \9;
}

/* line 283, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/* line 291, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}

/* line 302, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav > li > .dropdown-menu:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 9px;
}

/* line 313, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav > li > .dropdown-menu:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  top: -6px;
  left: 10px;
}

/* line 326, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  bottom: -7px;
  top: auto;
}

/* line 333, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  bottom: -6px;
  top: auto;
}

/* line 342, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
  border-top-color: #555;
  border-bottom-color: #555;
}

/* line 349, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #e6e6e6;
  color: #555;
}

/* line 355, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #777;
  border-bottom-color: #777;
}

/* line 359, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #555;
  border-bottom-color: #555;
}

/* line 367, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}

/* line 371, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .pull-right > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu.pull-right:before {
  left: auto;
  right: 12px;
}

/* line 375, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .pull-right > li > .dropdown-menu:after,
.navbar .nav > li > .dropdown-menu.pull-right:after {
  left: auto;
  right: 13px;
}

/* line 379, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: -1px;
  border-radius: 6px 0 6px 6px;
}

/* line 394, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-inner {
  background-color: #1b1b1b;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  background-image: linear-gradient(to bottom, #222222, #111111);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF222222', endColorstr='#FF111111', GradientType=0);
  border-color: #252525;
}

/* line 399, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
  color: #999;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 403, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .brand:hover, .navbar-inverse .brand:focus,
.navbar-inverse .nav > li > a:hover,
.navbar-inverse .nav > li > a:focus {
  color: #fff;
}

/* line 409, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .brand {
  color: #999;
}

/* line 413, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-text {
  color: #999;
}

/* line 417, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
  background-color: transparent;
  color: #fff;
}

/* line 423, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
  color: #fff;
  background-color: #111111;
}

/* line 431, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link {
  color: #999;
}

/* line 433, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-link:hover, .navbar-inverse .navbar-link:focus {
  color: #fff;
}

/* line 440, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .divider-vertical {
  border-left-color: #111111;
  border-right-color: #222222;
}

/* line 446, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #111111;
  color: #fff;
}

/* line 452, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
  border-top-color: #fff;
  color: #fff;
}

/* line 457, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #999;
  border-bottom-color: #999;
}

/* line 461, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

/* line 470, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-search .search-query {
  color: #fff;
  background-color: #515151;
  border-color: #111111;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  -webkit-transition: none;
  transition: none;
}

/* line 83, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-inverse .navbar-search .search-query:-moz-placeholder {
  color: #ccc;
}

/* line 86, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
  color: #ccc;
}

/* line 89, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  color: #ccc;
}

/* line 479, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .navbar-search .search-query:focus, .navbar-inverse .navbar-search .search-query.focused {
  padding: 5px 15px;
  color: #333;
  text-shadow: 0 1px 0 #fff;
  background-color: #fff;
  border: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  outline: 0;
}

/* line 493, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-inverse .btn-navbar {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e0e0e;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF151515', endColorstr='#FF040404', GradientType=0);
  border-color: #040404 #040404 black;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #040404;
  /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 513, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-inverse .btn-navbar:hover, .navbar-inverse .btn-navbar:focus, .navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active, .navbar-inverse .btn-navbar.disabled, .navbar-inverse .btn-navbar[disabled] {
  color: #fff;
  background-color: #040404;
  *background-color: black;
}

/* line 520, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.navbar-inverse .btn-navbar:active, .navbar-inverse .btn-navbar.active {
  background-color: black \9;
}

/* line 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb {
  padding: 8px 15px;
  margin: 0 0 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 12, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  text-shadow: 0 1px 0 #fff;
}

/* line 16, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb > li > .divider {
  padding: 0 5px;
  color: #ccc;
}

/* line 21, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss */
.breadcrumb .active {
  color: #999;
}

/* line 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  margin: 20px 0;
}

/* line 10, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* line 21, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul > li {
  display: inline;
}

/* line 24, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-left-width: 0;
}

/* line 34, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #f5f5f5;
}

/* line 40, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #999;
  cursor: default;
}

/* line 45, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #999;
  background-color: transparent;
  cursor: default;
}

/* line 53, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 58, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-centered {
  text-align: center;
}

/* line 70, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-right {
  text-align: right;
}

/* line 80, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-large ul > li > a,
.pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 17.5px;
}

/* line 85, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 89, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 98, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-mini ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > a,
.pagination-small ul > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 102, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-mini ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > a,
.pagination-small ul > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 110, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-small ul > li > a,
.pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.9px;
}

/* line 118, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pagination.scss */
.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
  padding: 0px 6px;
  font-size: 10.5px;
}

/* line 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager {
  margin: 20px 0;
  list-style: none;
  text-align: center;
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.pager:before, .pager:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.pager:after {
  clear: both;
}

/* line 12, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager li {
  display: inline;
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 28, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager .next > a,
.pager .next > span {
  float: right;
}

/* line 32, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager .previous > a,
.pager .previous > span {
  float: left;
}

/* line 36, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_pager.scss */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999;
  background-color: #fff;
  cursor: default;
}

/* line 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #111;
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 18, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* line 24, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */
  border-radius: 6px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  outline: none;
}

/* line 41, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade {
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
  top: -25%;
}

/* line 45, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal.fade.in {
  top: 10%;
}

/* line 47, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}

/* line 51, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: 2px;
}

/* line 53, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-header h3 {
  margin: 0;
  line-height: 30px;
}

/* line 60, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  overflow-y: auto;
  max-height: 400px;
  padding: 15px;
}

/* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-form {
  margin-bottom: 0;
}

/* line 72, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  box-shadow: inset 0 1px 0 #fff;
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.modal-footer:before, .modal-footer:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.modal-footer:after {
  clear: both;
}

/* line 83, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

/* line 88, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 92, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  visibility: visible;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* line 16, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

/* line 17, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

/* line 18, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

/* line 19, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

/* line 23, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

/* line 34, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 42, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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 49, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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 56, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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 63, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  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);
  white-space: normal;
}

/* line 28, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top {
  margin-top: -10px;
}

/* line 29, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right {
  margin-left: 10px;
}

/* line 30, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom {
  margin-top: 10px;
}

/* line 31, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left {
  margin-left: -10px;
}

/* line 34, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 44, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover-title:empty {
  display: none;
}

/* line 49, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover-content {
  padding: 9px 14px;
}

/* line 57, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/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 66, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover .arrow {
  border-width: 11px;
}

/* line 69, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover .arrow:after {
  border-width: 10px;
  content: "";
}

/* line 75, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}

/* line 82, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}

/* line 89, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 96, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.right .arrow:after {
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}

/* line 103, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}

/* line 110, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 118, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 125, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_popovers.scss */
.popover.left .arrow:after {
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

/* line 9, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnails {
  margin-left: -20px;
  list-style: none;
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.thumbnails:before, .thumbnails:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.thumbnails:after {
  clear: both;
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.row-fluid .thumbnails {
  margin-left: 0;
}

/* line 20, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnails > li {
  float: left;
  margin-bottom: 20px;
  margin-left: 20px;
}

/* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* line 37, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
a.thumbnail:hover,
a.thumbnail:focus {
  border-color: #08c;
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}

/* line 44, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* line 50, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_thumbnails.scss */
.thumbnail .caption {
  padding: 9px;
  color: #555;
}

/* line 10, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media,
.media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
}

/* line 18, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media,
.media .media {
  margin-top: 15px;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media:first-child {
  margin-top: 0;
}

/* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media-object {
  display: block;
}

/* line 32, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media-heading {
  margin: 0 0 5px;
}

/* line 40, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media > .pull-left {
  margin-right: 10px;
}

/* line 43, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media > .pull-right {
  margin-left: 10px;
}

/* line 52, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_media.scss */
.media-list {
  margin-left: 0;
  list-style: none;
}

/* line 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label,
.badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #999;
}

/* line 21, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label {
  border-radius: 3px;
}

/* line 24, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge {
  padding-left: 9px;
  padding-right: 9px;
  border-radius: 9px;
}

/* line 33, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label:empty,
.badge:empty {
  display: none;
}

/* line 40, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
a.label:hover, a.label:focus, a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 54, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-important {
  background-color: #b94a48;
}

/* line 55, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-important[href] {
  background-color: #953b39;
}

/* line 57, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-warning {
  background-color: #f89406;
}

/* line 58, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-warning[href] {
  background-color: #c67605;
}

/* line 60, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-success {
  background-color: #468847;
}

/* line 61, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-success[href] {
  background-color: #356635;
}

/* line 63, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-info {
  background-color: #3a87ad;
}

/* line 64, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-info[href] {
  background-color: #2d6987;
}

/* line 66, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-inverse {
  background-color: #333;
}

/* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.label-inverse[href] {
  background-color: #1a1a1a;
}

/* line 54, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-important {
  background-color: #b94a48;
}

/* line 55, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-important[href] {
  background-color: #953b39;
}

/* line 57, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-warning {
  background-color: #f89406;
}

/* line 58, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-warning[href] {
  background-color: #c67605;
}

/* line 60, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-success {
  background-color: #468847;
}

/* line 61, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-success[href] {
  background-color: #356635;
}

/* line 63, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-info {
  background-color: #3a87ad;
}

/* line 64, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-info[href] {
  background-color: #2d6987;
}

/* line 66, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-inverse {
  background-color: #333;
}

/* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.badge-inverse[href] {
  background-color: #1a1a1a;
}

/* line 72, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.btn .label,
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 79, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_labels-badges.scss */
.btn-mini .label,
.btn-mini .badge {
  top: 0;
}

@-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 45, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF5F5F5', endColorstr='#FFF9F9F9', GradientType=0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* line 55, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress .bar {
  width: 0%;
  height: 100%;
  color: #fff;
  float: left;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e90d2;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF149BDF', endColorstr='#FF0480BE', GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

/* line 68, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress .bar + .bar {
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* line 73, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: 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 79, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 93, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-danger .bar, .progress .bar-danger {
  background-color: #dd514c;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEE5F5B', endColorstr='#FFC43C35', GradientType=0);
}

/* line 96, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-danger.progress-striped .bar, .progress-striped .bar-danger {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: 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 101, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-success .bar, .progress .bar-success {
  background-color: #5eb95e;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(to bottom, #62c462, #57a957);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF62C462', endColorstr='#FF57A957', GradientType=0);
}

/* line 104, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-success.progress-striped .bar, .progress-striped .bar-success {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: 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 109, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-info .bar, .progress .bar-info {
  background-color: #4bb1cf;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF5BC0DE', endColorstr='#FF339BB9', GradientType=0);
}

/* line 112, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-info.progress-striped .bar, .progress-striped .bar-info {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: 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 117, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-warning .bar, .progress .bar-warning {
  background-color: #faa732;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFBB450', endColorstr='#FFF89406', GradientType=0);
}

/* line 120, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_progress-bars.scss */
.progress-warning.progress-striped .bar, .progress-striped .bar-warning {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: 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 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_accordion.scss */
.accordion {
  margin-bottom: 20px;
}

/* line 12, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

/* line 17, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-heading {
  border-bottom: 0;
}

/* line 20, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}

/* line 26, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-toggle {
  cursor: pointer;
}

/* line 31, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}

/* line 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
}

/* line 12, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* line 20, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

/* line 26, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}

/* line 33, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

/* line 37, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active {
  left: 0;
}

/* line 41, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 48, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next {
  left: 100%;
}

/* line 51, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .prev {
  left: -100%;
}

/* line 54, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

/* line 59, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.left {
  left: -100%;
}

/* line 62, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner > .active.right {
  left: 100%;
}

/* line 71, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background: #222;
  border: 3px solid #fff;
  border-radius: 23px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 96, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control.right {
  left: auto;
  right: 15px;
}

/* line 102, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control:hover, .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 112, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
}

/* line 120, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}

/* line 131, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  background-color: #fff;
}

/* line 139, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: #333;
  background: rgba(0, 0, 0, 0.75);
}

/* line 148, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption h4,
.carousel-caption p {
  color: #fff;
  line-height: 20px;
}

/* line 153, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption h4 {
  margin: 0 0 5px;
}

/* line 156, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption p {
  margin-bottom: 0;
}

/* line 6, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_hero-unit.scss */
.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
  background-color: #eee;
  border-radius: 6px;
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_hero-unit.scss */
.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  color: inherit;
  letter-spacing: -1px;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_hero-unit.scss */
.hero-unit li {
  line-height: 30px;
}

/* line 7, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.pull-right {
  float: right;
}

/* line 10, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.pull-left {
  float: left;
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.hide {
  display: none;
}

/* line 18, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.show {
  display: block;
}

/* line 23, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 28, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

/* line 33, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.clearfix {
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.clearfix:after {
  clear: both;
}

/* line 38, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 43, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_utilities.scss */
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box;
}

/*!
 * Bootstrap Responsive v2.3.2
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
@-ms-viewport {
  width: device-width;
}

/* line 15, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.hidden {
  display: none;
  visibility: hidden;
}

/* line 23, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-phone {
  display: none !important;
}

/* line 24, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-tablet {
  display: none !important;
}

/* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.hidden-desktop {
  display: none !important;
}

/* line 28, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-desktop {
  display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 33, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .hidden-desktop {
    display: inherit !important;
  }
  /* line 34, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-desktop {
    display: none !important;
  }
  /* line 36, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-tablet {
    display: inherit !important;
  }
  /* line 38, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  /* line 44, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .hidden-desktop {
    display: inherit !important;
  }
  /* line 45, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-desktop {
    display: none !important;
  }
  /* line 47, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-phone {
    display: inherit !important;
  }
  /* line 49, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .hidden-phone {
    display: none !important;
  }
}

/* line 53, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 57, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .visible-print {
    display: inherit !important;
  }
  /* line 58, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
  .hidden-print {
    display: none !important;
  }
}

/* line 62, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.clearfix {
  *zoom: 1;
}

/* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}

/* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
.clearfix:after {
  clear: both;
}

/* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 72, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss */
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  /* line 567, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row {
    margin-left: -30px;
    *zoom: 1;
  }
  /* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row:before, .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row:after {
    clear: both;
  }
  /* line 572, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 30px;
  }
  /* line 579, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
    width: 1170px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span1 {
    width: 70px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span2 {
    width: 170px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span3 {
    width: 270px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span4 {
    width: 370px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span5 {
    width: 470px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span6 {
    width: 570px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span7 {
    width: 670px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span8 {
    width: 770px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span9 {
    width: 870px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span10 {
    width: 970px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span11 {
    width: 1070px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span12 {
    width: 1170px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset1 {
    margin-left: 130px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset2 {
    margin-left: 230px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset3 {
    margin-left: 330px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset4 {
    margin-left: 430px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset5 {
    margin-left: 530px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset6 {
    margin-left: 630px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset7 {
    margin-left: 730px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset8 {
    margin-left: 830px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset9 {
    margin-left: 930px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset10 {
    margin-left: 1030px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset11 {
    margin-left: 1130px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset12 {
    margin-left: 1230px;
  }
  /* line 614, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  /* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid:after {
    clear: both;
  }
  /* line 617, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
    float: left;
    margin-left: 2.5641025641%;
    *margin-left: 2.5109110747%;
  }
  /* line 623, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  /* line 628, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.5641025641%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span1 {
    width: 5.9829059829%;
    *width: 5.9297144935%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span2 {
    width: 14.5299145299%;
    *width: 14.4767230406%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span3 {
    width: 23.0769230769%;
    *width: 23.0237315876%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span4 {
    width: 31.6239316239%;
    *width: 31.5707401346%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span5 {
    width: 40.1709401709%;
    *width: 40.1177486816%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span6 {
    width: 48.7179487179%;
    *width: 48.6647572286%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span7 {
    width: 57.264957265%;
    *width: 57.2117657756%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span8 {
    width: 65.811965812%;
    *width: 65.7587743226%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span9 {
    width: 74.358974359%;
    *width: 74.3057828696%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span10 {
    width: 82.905982906%;
    *width: 82.8527914166%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span11 {
    width: 91.452991453%;
    *width: 91.3997999636%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span12 {
    width: 100%;
    *width: 99.9468085106%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset1 {
    margin-left: 11.1111111111%;
    *margin-left: 11.0047281324%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset1:first-child {
    margin-left: 8.547008547%;
    *margin-left: 8.4406255683%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset2 {
    margin-left: 19.6581196581%;
    *margin-left: 19.5517366794%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset2:first-child {
    margin-left: 17.094017094%;
    *margin-left: 16.9876341153%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset3 {
    margin-left: 28.2051282051%;
    *margin-left: 28.0987452264%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset3:first-child {
    margin-left: 25.641025641%;
    *margin-left: 25.5346426623%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset4 {
    margin-left: 36.7521367521%;
    *margin-left: 36.6457537734%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset4:first-child {
    margin-left: 34.188034188%;
    *margin-left: 34.0816512093%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset5 {
    margin-left: 45.2991452991%;
    *margin-left: 45.1927623204%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset5:first-child {
    margin-left: 42.735042735%;
    *margin-left: 42.6286597563%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset6 {
    margin-left: 53.8461538462%;
    *margin-left: 53.7397708674%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset6:first-child {
    margin-left: 51.2820512821%;
    *margin-left: 51.1756683033%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset7 {
    margin-left: 62.3931623932%;
    *margin-left: 62.2867794144%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset7:first-child {
    margin-left: 59.8290598291%;
    *margin-left: 59.7226768503%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset8 {
    margin-left: 70.9401709402%;
    *margin-left: 70.8337879614%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset8:first-child {
    margin-left: 68.3760683761%;
    *margin-left: 68.2696853973%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset9 {
    margin-left: 79.4871794872%;
    *margin-left: 79.3807965085%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset9:first-child {
    margin-left: 76.9230769231%;
    *margin-left: 76.8166939444%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset10 {
    margin-left: 88.0341880342%;
    *margin-left: 87.9278050555%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset10:first-child {
    margin-left: 85.4700854701%;
    *margin-left: 85.3637024914%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset11 {
    margin-left: 96.5811965812%;
    *margin-left: 96.4748136025%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset11:first-child {
    margin-left: 94.0170940171%;
    *margin-left: 93.9107110384%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset12 {
    margin-left: 105.1282051282%;
    *margin-left: 105.0218221495%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset12:first-child {
    margin-left: 102.5641025641%;
    *margin-left: 102.4577195854%;
  }
  /* line 669, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input,
textarea,
.uneditable-input {
    margin-left: 0;
  }
  /* line 676, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 30px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span1,
textarea.span1,
.uneditable-input.span1 {
    width: 56px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span2,
textarea.span2,
.uneditable-input.span2 {
    width: 156px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span3,
textarea.span3,
.uneditable-input.span3 {
    width: 256px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span4,
textarea.span4,
.uneditable-input.span4 {
    width: 356px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span5,
textarea.span5,
.uneditable-input.span5 {
    width: 456px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span6,
textarea.span6,
.uneditable-input.span6 {
    width: 556px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span7,
textarea.span7,
.uneditable-input.span7 {
    width: 656px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span8,
textarea.span8,
.uneditable-input.span8 {
    width: 756px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span9,
textarea.span9,
.uneditable-input.span9 {
    width: 856px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span10,
textarea.span10,
.uneditable-input.span10 {
    width: 956px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span11,
textarea.span11,
.uneditable-input.span11 {
    width: 1056px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span12,
textarea.span12,
.uneditable-input.span12 {
    width: 1156px;
  }
  /* line 18, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-1200px-min.scss */
  .thumbnails {
    margin-left: -30px;
  }
  /* line 21, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-1200px-min.scss */
  .thumbnails > li {
    margin-left: 30px;
  }
  /* line 24, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-1200px-min.scss */
  .row-fluid .thumbnails {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  /* line 567, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row {
    margin-left: -20px;
    *zoom: 1;
  }
  /* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row:before, .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row:after {
    clear: both;
  }
  /* line 572, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  /* line 579, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
    width: 724px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span1 {
    width: 42px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span2 {
    width: 104px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span3 {
    width: 166px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span4 {
    width: 228px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span5 {
    width: 290px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span6 {
    width: 352px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span7 {
    width: 414px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span8 {
    width: 476px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span9 {
    width: 538px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span10 {
    width: 600px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span11 {
    width: 662px;
  }
  /* line 593, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .span12 {
    width: 724px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset1 {
    margin-left: 82px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset2 {
    margin-left: 144px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset3 {
    margin-left: 206px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset4 {
    margin-left: 268px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset5 {
    margin-left: 330px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset6 {
    margin-left: 392px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset7 {
    margin-left: 454px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset8 {
    margin-left: 516px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset9 {
    margin-left: 578px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset10 {
    margin-left: 640px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset11 {
    margin-left: 702px;
  }
  /* line 599, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .offset12 {
    margin-left: 764px;
  }
  /* line 614, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  /* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  /* line 22, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid:after {
    clear: both;
  }
  /* line 617, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
    float: left;
    margin-left: 2.7624309392%;
    *margin-left: 2.7092394499%;
  }
  /* line 623, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  /* line 628, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7624309392%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span1 {
    width: 5.8011049724%;
    *width: 5.747913483%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span2 {
    width: 14.364640884%;
    *width: 14.3114493946%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span3 {
    width: 22.9281767956%;
    *width: 22.8749853062%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span4 {
    width: 31.4917127072%;
    *width: 31.4385212178%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span5 {
    width: 40.0552486188%;
    *width: 40.0020571294%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span6 {
    width: 48.6187845304%;
    *width: 48.565593041%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span7 {
    width: 57.182320442%;
    *width: 57.1291289526%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span8 {
    width: 65.7458563536%;
    *width: 65.6926648642%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span9 {
    width: 74.3093922652%;
    *width: 74.2562007758%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span10 {
    width: 82.8729281768%;
    *width: 82.8197366874%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span11 {
    width: 91.4364640884%;
    *width: 91.383272599%;
  }
  /* line 640, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .span12 {
    width: 100%;
    *width: 99.9468085106%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset1 {
    margin-left: 11.3259668508%;
    *margin-left: 11.2195838721%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset1:first-child {
    margin-left: 8.5635359116%;
    *margin-left: 8.4571529329%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset2 {
    margin-left: 19.8895027624%;
    *margin-left: 19.7831197837%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset2:first-child {
    margin-left: 17.1270718232%;
    *margin-left: 17.0206888445%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset3 {
    margin-left: 28.453038674%;
    *margin-left: 28.3466556953%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset3:first-child {
    margin-left: 25.6906077348%;
    *margin-left: 25.5842247561%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset4 {
    margin-left: 37.0165745856%;
    *margin-left: 36.9101916069%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset4:first-child {
    margin-left: 34.2541436464%;
    *margin-left: 34.1477606677%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset5 {
    margin-left: 45.5801104972%;
    *margin-left: 45.4737275185%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset5:first-child {
    margin-left: 42.817679558%;
    *margin-left: 42.7112965793%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset6 {
    margin-left: 54.1436464088%;
    *margin-left: 54.0372634301%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset6:first-child {
    margin-left: 51.3812154696%;
    *margin-left: 51.2748324909%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset7 {
    margin-left: 62.7071823204%;
    *margin-left: 62.6007993417%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset7:first-child {
    margin-left: 59.9447513812%;
    *margin-left: 59.8383684025%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset8 {
    margin-left: 71.270718232%;
    *margin-left: 71.1643352533%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset8:first-child {
    margin-left: 68.5082872928%;
    *margin-left: 68.4019043141%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset9 {
    margin-left: 79.8342541436%;
    *margin-left: 79.7278711649%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset9:first-child {
    margin-left: 77.0718232044%;
    *margin-left: 76.9654402257%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset10 {
    margin-left: 88.3977900552%;
    *margin-left: 88.2914070765%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset10:first-child {
    margin-left: 85.635359116%;
    *margin-left: 85.5289761373%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset11 {
    margin-left: 96.9613259669%;
    *margin-left: 96.8549429881%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset11:first-child {
    margin-left: 94.1988950276%;
    *margin-left: 94.0925120489%;
  }
  /* line 646, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset12 {
    margin-left: 105.5248618785%;
    *margin-left: 105.4184788997%;
  }
  /* line 647, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .row-fluid .offset12:first-child {
    margin-left: 102.7624309392%;
    *margin-left: 102.6560479605%;
  }
  /* line 669, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input,
textarea,
.uneditable-input {
    margin-left: 0;
  }
  /* line 676, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span1,
textarea.span1,
.uneditable-input.span1 {
    width: 28px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span2,
textarea.span2,
.uneditable-input.span2 {
    width: 90px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span3,
textarea.span3,
.uneditable-input.span3 {
    width: 152px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span4,
textarea.span4,
.uneditable-input.span4 {
    width: 214px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span5,
textarea.span5,
.uneditable-input.span5 {
    width: 276px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span6,
textarea.span6,
.uneditable-input.span6 {
    width: 338px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span7,
textarea.span7,
.uneditable-input.span7 {
    width: 400px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span8,
textarea.span8,
.uneditable-input.span8 {
    width: 462px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span9,
textarea.span9,
.uneditable-input.span9 {
    width: 524px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span10,
textarea.span10,
.uneditable-input.span10 {
    width: 586px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span11,
textarea.span11,
.uneditable-input.span11 {
    width: 648px;
  }
  /* line 686, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_mixins.scss */
  input.span12,
textarea.span12,
.uneditable-input.span12 {
    width: 710px;
  }
}

@media (max-width: 767px) {
  /* line 9, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  body {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* line 14, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom,
.navbar-static-top {
    margin-left: -20px;
    margin-right: -20px;
  }
  /* line 21, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .container-fluid {
    padding: 0;
  }
  /* line 29, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .dl-horizontal dt {
    float: none;
    clear: none;
    width: auto;
    text-align: left;
  }
  /* line 35, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .dl-horizontal dd {
    margin-left: 0;
  }
  /* line 43, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .container {
    width: auto;
  }
  /* line 47, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .row-fluid {
    width: 100%;
  }
  /* line 51, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .row,
.thumbnails {
    margin-left: 0;
  }
  /* line 55, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  /* line 60, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  [class*="span"],
.uneditable-input[class*="span"],
.row-fluid [class*="span"] {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }
  /* line 69, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .span12,
.row-fluid .span12 {
    width: 100%;
    box-sizing: border-box;
  }
  /* line 74, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  /* line 81, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .input-large,
.input-xlarge,
.input-xxlarge,
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input {
    display: block;
    width: 100%;
    min-height: 30px;
    box-sizing: border-box;
  }
  /* line 91, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .input-prepend input,
.input-append input,
.input-prepend input[class*="span"],
.input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  /* line 98, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
  /* line 103, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .modal {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
  }
  /* line 110, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .modal.fade {
    top: -100px;
  }
  /* line 111, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .modal.fade.in {
    top: 20px;
  }
}

@media (max-width: 480px) {
  /* line 124, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .nav-collapse {
    -webkit-transform: translate3d(0, 0, 0);
  }
  /* line 129, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .page-header h1 small {
    display: block;
    line-height: 20px;
  }
  /* line 135, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  input[type="checkbox"],
input[type="radio"] {
    border: 1px solid #ccc;
  }
  /* line 142, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  /* line 149, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .form-horizontal .controls {
    margin-left: 0;
  }
  /* line 153, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .form-horizontal .control-list {
    padding-top: 0;
  }
  /* line 157, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .form-horizontal .form-actions {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 165, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .media .pull-left,
.media .pull-right {
    float: none;
    display: block;
    margin-bottom: 10px;
  }
  /* line 172, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  /* line 178, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .modal {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  /* line 183, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
  /* line 189, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss */
  .carousel-caption {
    position: static;
  }
}

@media (max-width: 979px) {
  /* line 13, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  body {
    padding-top: 0;
  }
  /* line 17, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-fixed-top,
.navbar-fixed-bottom {
    position: static;
  }
  /* line 21, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-fixed-top {
    margin-bottom: 20px;
  }
  /* line 24, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-fixed-bottom {
    margin-top: 20px;
  }
  /* line 27, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  /* line 31, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar .container {
    width: auto;
    padding: 0;
  }
  /* line 36, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar .brand {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 0 -5px;
  }
  /* line 45, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse {
    clear: both;
  }
  /* line 49, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav {
    float: none;
    margin: 0 0 10px;
  }
  /* line 53, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav > li {
    float: none;
  }
  /* line 56, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  /* line 59, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  /* line 62, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav .nav-header {
    color: #777;
    text-shadow: none;
  }
  /* line 67, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav > li > a,
.nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #777;
    border-radius: 3px;
  }
  /* line 75, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    border-radius: 4px;
  }
  /* line 80, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  /* line 83, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav > li > a:hover,
.nav-collapse .nav > li > a:focus,
.nav-collapse .dropdown-menu a:hover,
.nav-collapse .dropdown-menu a:focus {
    background-color: #f2f2f2;
  }
  /* line 89, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-inverse .nav-collapse .nav > li > a,
.navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999;
  }
  /* line 93, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-inverse .nav-collapse .nav > li > a:hover,
.navbar-inverse .nav-collapse .nav > li > a:focus,
.navbar-inverse .nav-collapse .dropdown-menu a:hover,
.navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111111;
  }
  /* line 100, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse.in .btn-group {
    margin-top: 5px;
    padding: 0;
  }
  /* line 105, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    float: none;
    display: none;
    max-width: none;
    margin: 0 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  /* line 119, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  /* line 123, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .dropdown-menu:before,
.nav-collapse .dropdown-menu:after {
    display: none;
  }
  /* line 127, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  /* line 131, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .nav > li > .dropdown-menu:before, .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  /* line 137, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse .navbar-form,
.nav-collapse .navbar-search {
    float: none;
    padding: 10px 15px;
    margin: 10px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  /* line 146, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-inverse .nav-collapse .navbar-form,
.navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111111;
    border-bottom-color: #111111;
  }
  /* line 152, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  /* line 157, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse,
.nav-collapse.collapse {
    overflow: hidden;
    height: 0;
  }
  /* line 163, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar .btn-navbar {
    display: block;
  }
  /* line 169, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .navbar-static .navbar-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 980px) {
  /* line 184, ../bundle/ruby/2.6.0/gems/bootstrap-sass-2.3.2.2/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss */
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}

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

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

/* line 24, vendor/assets/stylesheets/bootstrap-datepicker.css */
.datepicker.datepicker-rtl {
  direction: rtl;
}

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

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

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

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

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

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

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

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

/* line 67, vendor/assets/stylesheets/bootstrap-datepicker.css */
.datepicker table {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * import components to builds angular-ui.css
 */
/* ui-reset */
/* line 7, vendor/assets/stylesheets/angular-ui.css */
.ui-resetwrap {
  position: relative;
  display: inline-block;
}

/* line 12, vendor/assets/stylesheets/angular-ui.css */
.ui-reset {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: none;
  height: 100%;
  cursor: pointer;
}

/* line 22, vendor/assets/stylesheets/angular-ui.css */
.ui-resetwrap:hover .ui-reset {
  display: block;
}

/* ui-currency */
/* line 28, vendor/assets/stylesheets/angular-ui.css */
.ui-currency-pos {
  color: green;
}

/* line 32, vendor/assets/stylesheets/angular-ui.css */
.ui-currency-neg {
  color: red;
}

/* line 36, vendor/assets/stylesheets/angular-ui.css */
.ui-currency-zero {
  color: blue;
}

/* line 40, vendor/assets/stylesheets/angular-ui.css */
.ui-currency-pos.ui-bignum,
.ui-currency-neg.ui-smallnum {
  font-size: 110%;
}

/* highlight */
/* line 47, vendor/assets/stylesheets/angular-ui.css */
.ui-match {
  background: yellow;
}

/* line 8, app/assets/stylesheets/tailwind.scss */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 11, app/assets/stylesheets/tailwind.scss */
.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 15, app/assets/stylesheets/tailwind.scss */
.basis-16 {
  -ms-flex-preferred-size: 4rem;
      flex-basis: 4rem;
  /* 64px */
}

/* line 18, app/assets/stylesheets/tailwind.scss */
.basis-64 {
  -ms-flex-preferred-size: 16rem;
      flex-basis: 16rem;
  /* 256px */
}

/* line 21, app/assets/stylesheets/tailwind.scss */
.basis-80 {
  -ms-flex-preferred-size: 20rem;
      flex-basis: 20rem;
  /* 320px */
}

/* line 25, app/assets/stylesheets/tailwind.scss */
.gap-2 {
  gap: 0.5rem;
}

/* line 29, app/assets/stylesheets/tailwind.scss */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 33, app/assets/stylesheets/tailwind.scss */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 37, app/assets/stylesheets/tailwind.scss */
.mb-0 {
  margin-bottom: 0;
}

/* line 40, app/assets/stylesheets/tailwind.scss */
.m-4 {
  margin: 1rem;
}

/* line 44, app/assets/stylesheets/tailwind.scss */
.h-full {
  height: 100%;
}

/* ==========================================================================
   1. DEFAULT
========================================================================== */
/* line 13, app/assets/stylesheets/_base.scss */
html, body {
  width: 100%;
}

/* line 18, app/assets/stylesheets/_base.scss */
.organization-ecy .brand {
  position: relative;
  display: block;
  width: 16em;
  height: 41px;
  background: url(/assets/ECY_logo-e6715a05cbc347f6bc47b5a7b0b8b1d1f87a45dbb4d6ede86a385b9fcd68ed5c.png) no-repeat center center;
  background-position: center;
  background-size: contain;
  margin: 3px;
}

/* line 31, app/assets/stylesheets/_base.scss */
body.session, body.application, body.signup {
  min-width: 768px;
  background: #d5cbbd;
  color: #434343;
  font-weight: 400;
  font-size: 13px;
  font-size: .813em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 20px;
  line-height: 1.45;
}

/* line 43, app/assets/stylesheets/_base.scss */
body.session.blue, body.application.blue, body.signup.blue {
  background: url(/assets/pattern-blue-subtle-6368abe2b49fd0b87f604386f4e463419c41df5d96f856647b47acc225703bc4.png) repeat left top #00a7db;
}

/* line 44, app/assets/stylesheets/_base.scss */
body.session.orange, body.application.orange, body.signup.orange {
  background: url(/assets/pattern-orange-subtle-0371f70e175f9efb7b8c9ce1b7d336c101499572a12c9b621ab3f2726d9d87f9.png) repeat left top #f2812d;
}

/* line 45, app/assets/stylesheets/_base.scss */
body.session.lime, body.application.lime, body.signup.lime {
  background: url(/assets/pattern-lime-subtle-37ecc1090e01b3202fb98caa478ed60c1fd3ea59b60c47b1b7cb226174db3d18.png) repeat left top #c0d63e;
}

/* line 46, app/assets/stylesheets/_base.scss */
body.session.purple, body.application.purple, body.signup.purple {
  background: url(/assets/pattern-purple-subtle-3d56a6dbe070b03c1e94a8e737974d4386f6560140844cfd9f0542337e7365c7.png) repeat left top #c0006b;
}

/* line 47, app/assets/stylesheets/_base.scss */
body.session.brown, body.application.brown, body.signup.brown {
  background: #d5cbbd;
}

/* line 48, app/assets/stylesheets/_base.scss */
body.session.gray, body.application.gray, body.signup.gray {
  background: url(/assets/pattern-gray-d78cfe27ce790982edff2baf8388f420a6aac374743a068f57dd5f8499cdb7f5.png) repeat left top #1e1e1e;
}

/* ==========================================================================
   2. HEADER
========================================================================== */
/* line 55, app/assets/stylesheets/_base.scss */
header {
  box-shadow: 0 1px 1px rgba(17, 17, 17, 0.3);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 700;
  padding: 0;
  height: 46px;
  border-bottom: 2px solid #212428;
  background: #33393e;
}

/* line 66, app/assets/stylesheets/_base.scss */
header .utilities {
  width: -o-calc(100% - 35em);
  width: calc(100% - 35em);
  box-shadow: -2px 0 0 #1c1f22;
}

/* line 70, app/assets/stylesheets/_base.scss */
header .brand, header .utilities, header .breadcrumbs, header #global-search, header .account, header .btn-group {
  display: block;
  float: left;
  clear: right;
}

/* line 75, app/assets/stylesheets/_base.scss */
header .btn-group-text .btn {
  width: 8em;
}

/* line 80, app/assets/stylesheets/_base.scss */
header .breadcrumbs {
  box-shadow: -1px 0 0 #3f464c;
  padding: 0;
  width: 50%;
}

/* line 84, app/assets/stylesheets/_base.scss */
header .breadcrumbs h4, header .breadcrumbs h4 small {
  margin: 0;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  text-shadow: 0 1px 0 rgba(17, 17, 17, 0.5);
  line-height: 46px;
}

/* line 94, app/assets/stylesheets/_base.scss */
header .breadcrumbs h4.with-background-admin-user,
header .breadcrumbs h4.with-background-admin-user small {
  line-height: 22px;
}

/* line 98, app/assets/stylesheets/_base.scss */
header .breadcrumbs h4.with-background-admin-user small {
  padding: 0;
}

/* line 103, app/assets/stylesheets/_base.scss */
header #global-search {
  margin-bottom: 0;
  padding: 0;
  width: 50%;
  max-width: 300px;
}

/* line 108, app/assets/stylesheets/_base.scss */
header #global-search input {
  border-radius: 2em;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  box-shadow: inset 0 1px 4px -1px rgba(17, 17, 17, 0.8);
  margin: 8px 0 7px;
  padding-right: 1.5em;
  padding-left: 1.5em;
  height: 31px;
  border: 1px solid #101214;
  background: #f2f2f2;
}

/* line 117, app/assets/stylesheets/_base.scss */
header #global-search input:focus {
  box-shadow: none;
  border-color: #050606;
  background: #fff;
}

/* line 123, app/assets/stylesheets/_base.scss */
header #global-search .reset-button {
  position: absolute;
  top: 9px;
  right: 9px;
  color: #5d5d5d;
  font-size: 1.5em;
  line-height: 31px;
}

/* line 131, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu {
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 2px;
  max-height: 36em;
  width: 100%;
  background: #e9eaec;
}

/* line 140, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu > li > a {
  box-shadow: inset 0 -1px 0 #cbced2, inset 0 1px 0 #f7f7f8;
  display: inline-block;
  position: relative;
  padding-right: 3%;
  padding-left: 3%;
  width: 94%;
}

/* line 147, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu > li > a h4 {
  margin: 0;
  padding: 0 0 5px 0;
}

/* line 152, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu > li > a .badge {
  position: absolute;
  top: 10px;
  right: 5px;
  opacity: 0.5;
  border-radius: 50%;
}

/* line 159, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu > li > a span {
  display: block;
  float: left;
  clear: right;
  margin-bottom: 2px;
  padding: 0;
  width: 50%;
}

/* line 167, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu > li > a .muted {
  clear: both;
  margin-top: 5px;
  padding-top: 5px;
  width: 100%;
  border-top: 1px dashed #e3e5e7;
}

/* line 174, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu > li > a:hover, header #global-search .dropdown-menu > li > a:focus {
  background: white;
  color: #434343;
}

/* line 180, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu li:first-child a {
  box-shadow: inset 0 -1px 0 #d3d6d9;
}

/* line 183, app/assets/stylesheets/_base.scss */
header #global-search .dropdown-menu li.more a {
  text-align: center;
}

/* line 189, app/assets/stylesheets/_base.scss */
header .btn-group {
  box-shadow: -1px 0 0 #111, 1px 0 0 #111;
  padding: 0;
  width: 8%;
}

/* line 193, app/assets/stylesheets/_base.scss */
header .btn-group .btn {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  display: block;
  margin: 0 auto;
  padding: 14px 2% 13px;
  background: #3f464c;
  color: #fff;
}

/* line 200, app/assets/stylesheets/_base.scss */
header .btn-group .btn i {
  margin: 0;
  padding: 0;
  font-size: 1.25em;
}

/* line 205, app/assets/stylesheets/_base.scss */
header .btn-group .btn:first-child, header .btn-group .btn:last-child {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

/* line 208, app/assets/stylesheets/_base.scss */
header .btn-group .btn:hover, header .btn-group .btn:focus, header .btn-group .btn:active {
  background: #566068 !important;
}

/* line 214, app/assets/stylesheets/_base.scss */
header .account {
  position: absolute;
  right: 35px;
  padding-left: 2px;
}

/* line 218, app/assets/stylesheets/_base.scss */
header .account .nav {
  float: right;
}

/* line 221, app/assets/stylesheets/_base.scss */
header .account .nav > li > a {
  padding-right: 11px;
  padding-left: 11px;
  color: #fff;
  font-size: 1.125em;
  line-height: 31px;
}

/* line 227, app/assets/stylesheets/_base.scss */
header .account .nav > li > a:hover {
  background: #566068;
}

/* line 231, app/assets/stylesheets/_base.scss */
header .account .nav > li form {
  margin: 0;
  padding: 0;
}

/* line 235, app/assets/stylesheets/_base.scss */
header .account .nav > li button.btn-large {
  margin-bottom: 3.5px 0;
  margin-top: 3.5px;
  margin-left: 3px;
  margin-right: 0;
}

/* ==========================================================================
   3. NAVIGATION
========================================================================== */
/* line 250, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top {
  box-shadow: 0 1px 1px rgba(17, 17, 17, 0.3);
  z-index: 650;
  top: 47px;
}

/* line 254, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs {
  background: #e9eaec;
  position: relative;
  margin: 0;
  padding: 0;
}

/* line 259, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li {
  position: relative;
  margin-bottom: 0;
}

/* line 262, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li > a {
  border: 0;
  border-left: 1px solid #fff;
  border-right: 1px solid #c5c9cd;
  margin: 0;
  padding: 1em 1.5em;
  color: #434343;
  text-transform: uppercase;
  text-shadow: none;
  font-size: .925em;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* line 274, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li > a span {
  padding-right: 7px;
}

/* line 276, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li > a:hover {
  background: #fcfcfc;
  color: #434343;
  border-right-color: #d6d9db;
}

/* line 282, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li > a:focus {
  outline: 0;
  background: transparent;
}

/* line 287, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li:first-child a {
  box-shadow: -1px 0 0 #ced1d4;
}

/* line 288, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li:last-child a {
  box-shadow: 1px 0 0 #f7f7f8;
}

/* line 290, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs > li.active > a, .application .navbar-fixed-top .nav-tabs > li.active > a:hover, .application .navbar-fixed-top .nav-tabs > li.active > a:focus {
  border-right: 1px solid #de670e;
  border-left: 1px solid #de670e;
  background: #f2812d;
  color: #fafafa;
  text-shadow: 0 -1px 1px #ae500b;
}

/* line 298, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs .dropdown-menu {
  background: #e3e5e7;
  margin-top: 1px;
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

/* line 302, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs .dropdown-menu > li {
  float: left;
  display: block;
  width: 100%;
  clear: both;
}

/* line 307, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs .dropdown-menu > li > a {
  background: #fff;
  text-align: left;
  padding: .875em 1.5em;
  color: #434343;
  font-size: .925em;
}

/* line 313, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs .dropdown-menu > li > a:hover, .application .navbar-fixed-top .nav-tabs .dropdown-menu > li > a:focus {
  background: #e9eaec;
  color: #434343;
}

/* line 320, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs .open .dropdown-toggle,
.application .navbar-fixed-top .nav-tabs .open .dropdown-toggle,
.application .navbar-fixed-top .nav-tabs > li.dropdown.open.active > a:hover,
.application .navbar-fixed-top .nav-tabs > li.dropdown.open.active > a:focus {
  background: #f2812d;
  color: #fafafa;
  border: 0;
  border-right: 1px solid #de670e;
  border-left: 1px solid #de670e;
  text-shadow: 0 -1px 1px #ae500b;
  border-top-color: #434343;
  border-bottom-color: #434343;
}

/* line 334, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .nav-tabs .dropdown-toggle .caret, .application .navbar-fixed-top .nav-tabs .dropdown-toggle:hover .caret {
  position: absolute;
  top: 1em;
  right: 1em;
  border-top-color: #434343;
  border-bottom-color: #434343;
}

/* line 343, app/assets/stylesheets/_base.scss */
.application .navbar-fixed-top .menu-badge {
  position: absolute;
  color: #FFF;
  background: #d9534f;
  padding: 0.1em 0.3em;
  bottom: -3px;
  right: -3px;
  font-size: 11px;
  line-height: 14px;
  border-radius: 2px;
  z-index: 9999;
  text-shadow: 0 -1px 0 #911D1A;
}

/* ==========================================================================
   3. SIDEBAR
========================================================================== */
/* line 362, app/assets/stylesheets/_base.scss */
.navbar-fixed-left {
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  position: fixed;
  top: 48px;
  bottom: 0;
  left: 0;
  z-index: 500;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  width: 16em;
  background: #f1f2f3;
}

/* line 374, app/assets/stylesheets/_base.scss */
.navbar-fixed-left.minimized {
  left: -18em;
}

/* line 382, app/assets/stylesheets/_base.scss */
.secondary-sidebar-nav > li > a {
  padding-top: 9px;
  padding-bottom: 9px;
  color: #33393e;
  background: #fff;
  box-shadow: 0 1px 1px rgba(17, 17, 17, 0.3);
}

/* line 389, app/assets/stylesheets/_base.scss */
.secondary-sidebar-nav > li > a i {
  float: right;
}

/* line 391, app/assets/stylesheets/_base.scss */
.secondary-sidebar-nav > li > a:hover {
  background: #eef0f1;
}

/* line 394, app/assets/stylesheets/_base.scss */
.secondary-sidebar-nav > li > a:focus {
  outline: 0;
}

/* line 398, app/assets/stylesheets/_base.scss */
.secondary-sidebar-nav > .active > a,
.secondary-sidebar-nav > .active > a:hover,
.secondary-sidebar-nav > .active > a:focus {
  background: #f2812d;
  color: #fff;
  text-shadow: 0 -1px 1px #ae500b;
}

/* ==========================================================================
   4. APPLICATION BODY
========================================================================== */
/* line 410, app/assets/stylesheets/_base.scss */
.body {
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  position: relative;
  top: 93px;
  right: 0;
  bottom: 0;
  z-index: 500;
  overflow-x: auto;
  overflow-y: auto;
  padding: 2em;
  box-shadow: none;
  width: -o-calc(100% - 4em);
  width: calc(100% - 4em);
  left: 0;
}

/* line 427, app/assets/stylesheets/_base.scss */
.body-1200 {
  max-width: 1200px;
}

/* line 430, app/assets/stylesheets/_base.scss */
.body-2000.body-2000 {
  max-width: 2000px;
}

/* line 434, app/assets/stylesheets/_base.scss */
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

/* ==========================================================================
   5. SIGN IN & RESET PASSWORD
========================================================================== */
/* line 443, app/assets/stylesheets/_base.scss */
.session {
  padding: 4em 0 0 0;
  min-width: 24em !important;
  width: auto;
  height: auto;
}

/* line 448, app/assets/stylesheets/_base.scss */
.session .form-signin, .session .alert {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.4);
  position: relative;
  display: block;
  padding: 1em 2em;
  width: 20em;
}

/* line 456, app/assets/stylesheets/_base.scss */
.session .form-signin {
  margin: 1em auto 0 auto;
  min-height: 21em;
  border-bottom: 1px solid #d6d9db;
  background: #f1f2f3;
}

/* line 461, app/assets/stylesheets/_base.scss */
.session .form-signin h4 {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  padding-bottom: 10px;
  border-bottom: 1px solid #dbdee0;
  text-align: center;
  text-transform: uppercase;
}

/* line 468, app/assets/stylesheets/_base.scss */
.session .form-signin .field {
  display: block;
  clear: both;
  margin: 10px 0;
  width: 100%;
}

/* line 474, app/assets/stylesheets/_base.scss */
.session .form-signin input[type="email"], .session .form-signin input[type="password"] {
  width: 260px;
  background: #fff;
}

/* line 478, app/assets/stylesheets/_base.scss */
.session .form-signin .btn {
  display: block;
  clear: both;
  margin: 0 auto;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #0080a8;
  font-size: 1em;
}

/* line 486, app/assets/stylesheets/_base.scss */
.session .form-signin .reset-password {
  display: block;
  clear: both;
  margin: 2em auto 0 auto;
  color: #111;
  text-align: center;
  text-decoration: underline;
  font-size: .875em;
}

/* line 494, app/assets/stylesheets/_base.scss */
.session .form-signin .reset-password:hover {
  text-decoration: none;
}

/* line 499, app/assets/stylesheets/_base.scss */
.session .form-password-reset {
  height: 14em;
}

/* line 502, app/assets/stylesheets/_base.scss */
.session .alert {
  margin: 2em auto 0 auto;
  padding-top: 1em;
  padding-bottom: 1em;
  border: 0;
  text-align: center;
  font-size: 1em;
}

/* line 510, app/assets/stylesheets/_base.scss */
.session .alert-error {
  border-bottom: 1px solid #d74b47;
  background: #de6764;
  color: #611715;
  text-shadow: 0 1px 0 #e7908e;
}

/* line 516, app/assets/stylesheets/_base.scss */
.session .alert-notice {
  border-bottom: 1px solid #ec981f;
  background: #efa740;
  color: #5b3908;
  text-shadow: 0 1px 0 #f3bd6f;
}

/* line 522, app/assets/stylesheets/_base.scss */
.session .features {
  margin: 40px 0;
}

/* line 524, app/assets/stylesheets/_base.scss */
.session .features a {
  max-width: 260px;
  margin: 10px auto;
  padding: 0.8em;
  background: #747474;
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 13pt;
  border-radius: 6px;
}

/* line 535, app/assets/stylesheets/_base.scss */
.session .features a:hover {
  background: #DE670E;
  text-decoration: none;
}

/* line 542, app/assets/stylesheets/_base.scss */
[round-progress-bar] {
  position: relative;
  width: 80px;
  height: 80px;
}

/* line 546, app/assets/stylesheets/_base.scss */
[round-progress-bar] .text {
  position: absolute;
  text-align: center;
  top: 0;
  width: 80px;
  font-size: 14px;
  line-height: 80px;
}

/* line 555, app/assets/stylesheets/_base.scss */
.medium-text[round-progress-bar] .text {
  font-size: 17px;
}

/* line 559, app/assets/stylesheets/_base.scss */
[round-progress-bar] canvas {
  width: 80px !important;
  height: 80px !important;
}

/* ==========================================================================
   1. NAVIGATION
========================================================================== */
/* line 13, app/assets/stylesheets/_bootstrapfix.scss */
.nav {
  margin: 0;
}

/* line 16, app/assets/stylesheets/_bootstrapfix.scss */
.nav > li > a {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  margin: 0;
}

/* line 23, app/assets/stylesheets/_bootstrapfix.scss */
.dropdown-menu {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  box-shadow: 0 2px 2px rgba(17, 17, 17, 0.5);
  right: 0;
  left: initial;
  margin: 1px 0 0 0;
  padding: 0;
  border: 0;
  text-shadow: none;
}

/* line 32, app/assets/stylesheets/_bootstrapfix.scss */
.dropdown-menu > li > a {
  padding: .5em 1em;
  text-transform: none;
  font-size: .875em;
}

/* line 37, app/assets/stylesheets/_bootstrapfix.scss */
.dropdown-menu.datepicker-dropdown {
  max-width: 20em;
}

/* line 42, app/assets/stylesheets/_bootstrapfix.scss */
.dropdown-submenu > .dropdown-menu {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  box-shadow: 0 0 4px rgba(17, 17, 17, 0.5);
  border: 0;
}

/* line 48, app/assets/stylesheets/_bootstrapfix.scss */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  background: #f2812d;
  outline: 0;
  outline-offset: 0;
}

/* ==========================================================================
   2. FORMS
========================================================================== */
/* line 60, app/assets/stylesheets/_bootstrapfix.scss */
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input, div[ta-text-editor-class="ta-textarea"] .ta-editor {
  box-sizing: border-box;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  margin: 0 0 1em 0;
  padding: .25em 0.5em;
  height: 2.5em;
  border: 1px solid #d3d6d9;
  background: #f1f2f3;
  font-size: 1em;
}

/* line 70, app/assets/stylesheets/_bootstrapfix.scss */
textarea.max-100, input.max-100[type="text"], input.max-100[type="password"], input.max-100[type="datetime"], input.max-100[type="datetime-local"], input.max-100[type="date"], input.max-100[type="month"], input.max-100[type="time"], input.max-100[type="week"], input.max-100[type="number"], input.max-100[type="email"], input.max-100[type="url"], input.max-100[type="search"], input.max-100[type="tel"], input.max-100[type="color"], .uneditable-input.max-100, div[ta-text-editor-class="ta-textarea"] .ta-editor.max-100 {
  max-width: 100%;
}

/* line 73, app/assets/stylesheets/_bootstrapfix.scss */
textarea.indent-medium, input.indent-medium[type="text"], input.indent-medium[type="password"], input.indent-medium[type="datetime"], input.indent-medium[type="datetime-local"], input.indent-medium[type="date"], input.indent-medium[type="month"], input.indent-medium[type="time"], input.indent-medium[type="week"], input.indent-medium[type="number"], input.indent-medium[type="email"], input.indent-medium[type="url"], input.indent-medium[type="search"], input.indent-medium[type="tel"], input.indent-medium[type="color"], .uneditable-input.indent-medium, div[ta-text-editor-class="ta-textarea"] .ta-editor.indent-medium {
  width: 116px;
}

/* line 76, app/assets/stylesheets/_bootstrapfix.scss */
textarea:focus, textarea:focus:invalid:focus, input[type="text"]:focus, input[type="text"]:focus:invalid:focus, input[type="password"]:focus, input[type="password"]:focus:invalid:focus, input[type="datetime"]:focus, input[type="datetime"]:focus:invalid:focus, input[type="datetime-local"]:focus, input[type="datetime-local"]:focus:invalid:focus, input[type="date"]:focus, input[type="date"]:focus:invalid:focus, input[type="month"]:focus, input[type="month"]:focus:invalid:focus, input[type="time"]:focus, input[type="time"]:focus:invalid:focus, input[type="week"]:focus, input[type="week"]:focus:invalid:focus, input[type="number"]:focus, input[type="number"]:focus:invalid:focus, input[type="email"]:focus, input[type="email"]:focus:invalid:focus, input[type="url"]:focus, input[type="url"]:focus:invalid:focus, input[type="search"]:focus, input[type="search"]:focus:invalid:focus, input[type="tel"]:focus, input[type="tel"]:focus:invalid:focus, input[type="color"]:focus, input[type="color"]:focus:invalid:focus, .uneditable-input:focus, .uneditable-input:focus:invalid:focus, div[ta-text-editor-class="ta-textarea"] .ta-editor:focus, div[ta-text-editor-class="ta-textarea"] .ta-editor:focus:invalid:focus {
  box-shadow: inset 1px 1px 2px #faccaa;
  outline: 0;
  border-color: #f9c6a0 #fad2b3 #fad2b3 #f9c6a0;
  background: #fce6d5;
  color: #434343;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* line 84, app/assets/stylesheets/_bootstrapfix.scss */
.table-search textarea, .new-contact textarea, .table-search input[type="text"], .new-contact input[type="text"], .table-search input[type="password"], .new-contact input[type="password"], .table-search input[type="datetime"], .new-contact input[type="datetime"], .table-search input[type="datetime-local"], .new-contact input[type="datetime-local"], .table-search input[type="date"], .new-contact input[type="date"], .table-search input[type="month"], .new-contact input[type="month"], .table-search input[type="time"], .new-contact input[type="time"], .table-search input[type="week"], .new-contact input[type="week"], .table-search input[type="number"], .new-contact input[type="number"], .table-search input[type="email"], .new-contact input[type="email"], .table-search input[type="url"], .new-contact input[type="url"], .table-search input[type="search"], .new-contact input[type="search"], .table-search input[type="tel"], .new-contact input[type="tel"], .table-search input[type="color"], .new-contact input[type="color"], .table-search .uneditable-input, .new-contact .uneditable-input, .table-search div[ta-text-editor-class="ta-textarea"] .ta-editor, .new-contact div[ta-text-editor-class="ta-textarea"] .ta-editor {
  border: 1px solid #b6b6b6;
}

/* line 86, app/assets/stylesheets/_bootstrapfix.scss */
.table-search textarea:focus, .new-contact textarea:focus, .table-search input[type="text"]:focus, .new-contact input[type="text"]:focus, .table-search input[type="password"]:focus, .new-contact input[type="password"]:focus, .table-search input[type="datetime"]:focus, .new-contact input[type="datetime"]:focus, .table-search input[type="datetime-local"]:focus, .new-contact input[type="datetime-local"]:focus, .table-search input[type="date"]:focus, .new-contact input[type="date"]:focus, .table-search input[type="month"]:focus, .new-contact input[type="month"]:focus, .table-search input[type="time"]:focus, .new-contact input[type="time"]:focus, .table-search input[type="week"]:focus, .new-contact input[type="week"]:focus, .table-search input[type="number"]:focus, .new-contact input[type="number"]:focus, .table-search input[type="email"]:focus, .new-contact input[type="email"]:focus, .table-search input[type="url"]:focus, .new-contact input[type="url"]:focus, .table-search input[type="search"]:focus, .new-contact input[type="search"]:focus, .table-search input[type="tel"]:focus, .new-contact input[type="tel"]:focus, .table-search input[type="color"]:focus, .new-contact input[type="color"]:focus, .table-search .uneditable-input:focus, .new-contact .uneditable-input:focus, .table-search div[ta-text-editor-class="ta-textarea"] .ta-editor:focus, .new-contact div[ta-text-editor-class="ta-textarea"] .ta-editor:focus {
  border-color: #f8bb8d #f9c6a0 #f9c6a0 #f8bb8d;
  background: #fce6d5;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* line 94, app/assets/stylesheets/_bootstrapfix.scss */
textarea, div[ta-text-editor-class="ta-textarea"] .ta-editor {
  margin-bottom: 1em;
  min-height: 6em;
  height: auto;
  resize: vertical;
}

/* line 99, app/assets/stylesheets/_bootstrapfix.scss */
textarea.full-width, div[ta-text-editor-class="ta-textarea"] .ta-editor.full-width {
  width: 100%;
}

/* line 104, app/assets/stylesheets/_bootstrapfix.scss */
div[ta-text-editor-class="ta-textarea"] .ta-editor {
  min-height: auto;
}

/* line 109, app/assets/stylesheets/_bootstrapfix.scss */
input[disabled], input:disabled, input[readonly], select[disabled], select:disabled, select[readonly] {
  background: #fcfcfc;
  border: 1px solid #e1e3e5;
  color: #838383;
  cursor: not-allowed;
}

/* line 118, app/assets/stylesheets/_bootstrapfix.scss */
input[type="radio"], input[type="checkbox"] {
  margin-top: 0;
}

/* line 123, app/assets/stylesheets/_bootstrapfix.scss */
dl dd input[type="checkbox"] {
  margin-bottom: 8px;
}

/* line 129, app/assets/stylesheets/_bootstrapfix.scss */
input.ng-invalid-required {
  background: #faf4d4;
}

/* line 131, app/assets/stylesheets/_bootstrapfix.scss */
input.ng-invalid-required:focus {
  background: #fce6d5;
}

/* line 137, app/assets/stylesheets/_bootstrapfix.scss */
form input.ng-invalid.ng-dirty,
form select.ng-invalid.ng-dirty,
form textarea.ng-invalid.ng-dirty {
  border-color: #E9322D;
}

/* line 145, app/assets/stylesheets/_bootstrapfix.scss */
select:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: 0;
  outline-offset: 0;
}

/* line 150, app/assets/stylesheets/_bootstrapfix.scss */
label {
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 12px;
}

/* line 156, app/assets/stylesheets/_bootstrapfix.scss */
label input + span {
  padding-left: 8px;
  font-weight: 400;
}

/* line 161, app/assets/stylesheets/_bootstrapfix.scss */
.checkbox {
  margin-bottom: 5px;
  padding-left: 5px;
  font-weight: 700;
  font-size: .875em;
}

/* line 166, app/assets/stylesheets/_bootstrapfix.scss */
.checkbox input[type="checkbox"] {
  position: relative;
  margin: 5px 3px 0;
}

/* line 170, app/assets/stylesheets/_bootstrapfix.scss */
.checkbox.inline {
  display: inline-block;
}

/* line 172, app/assets/stylesheets/_bootstrapfix.scss */
.widget-header .checkbox.inline {
  position: relative;
  top: -3px;
}

/* line 179, app/assets/stylesheets/_bootstrapfix.scss */
.input-append, .input-prepend {
  font-size: inherit;
}

/* line 183, app/assets/stylesheets/_bootstrapfix.scss */
.form-inline {
  margin: 1em 0;
}

/* line 185, app/assets/stylesheets/_bootstrapfix.scss */
.form-inline.controls-row {
  margin-bottom: 0;
}

/* line 187, app/assets/stylesheets/_bootstrapfix.scss */
.form-inline.controls-row .control-group {
  display: inline-block;
}

/* line 189, app/assets/stylesheets/_bootstrapfix.scss */
.form-inline.controls-row .control-group .control-label {
  display: block;
  margin-bottom: 2px;
  padding-left: 6px;
}

/* ==========================================================================
   3. TABLES
========================================================================== */
/* line 201, app/assets/stylesheets/_bootstrapfix.scss */
.table {
  width: 100%;
}

/* line 203, app/assets/stylesheets/_bootstrapfix.scss */
.table th, .table td {
  border: 0;
  font-size: .925em;
  line-height: 20px;
}

/* line 210, app/assets/stylesheets/_bootstrapfix.scss */
.table thead tr th {
  border-right: 1px solid #dbdee0;
  color: #434343;
  font-weight: 700;
}

/* line 214, app/assets/stylesheets/_bootstrapfix.scss */
.table thead tr th h1, .table thead tr th h2, .table thead tr th h3, .table thead tr th h4, .table thead tr th h5, .table thead tr th h6 {
  margin: 0;
}

/* line 217, app/assets/stylesheets/_bootstrapfix.scss */
.table thead tr th i {
  float: right;
  color: #111;
  font-weight: normal;
  font-size: 1.5em;
}

/* line 223, app/assets/stylesheets/_bootstrapfix.scss */
.table thead tr th .btn {
  color: #444444;
  font-weight: 400;
  margin: 0 .5em;
}

/* line 228, app/assets/stylesheets/_bootstrapfix.scss */
.table thead tr th:last-child {
  border-right: 0;
}

/* line 234, app/assets/stylesheets/_bootstrapfix.scss */
.table .cell-total, .table .row-total td {
  background: rgba(242, 129, 45, 0.1);
  color: #111;
  font-weight: 600;
}

/* line 239, app/assets/stylesheets/_bootstrapfix.scss */
.table tbody + tbody {
  border-top-width: 1px;
}

/* line 244, app/assets/stylesheets/_bootstrapfix.scss */
.table td.link-cell a {
  display: block;
  min-height: 20px;
  color: #444444;
  text-decoration: none;
}

/* line 249, app/assets/stylesheets/_bootstrapfix.scss */
.table td.link-cell a:hover {
  text-decoration: none;
}

/* line 256, app/assets/stylesheets/_bootstrapfix.scss */
.table td a {
  color: #444444;
  text-decoration: underline;
}

/* line 259, app/assets/stylesheets/_bootstrapfix.scss */
.table td a.btn-primary, .table td a.btn-success, .table td a.btn-danger, .table td a.btn-warning, .table td a.btn-info {
  color: #fff;
}

/* line 266, app/assets/stylesheets/_bootstrapfix.scss */
.table td a:hover {
  text-decoration: none;
}

/* line 270, app/assets/stylesheets/_bootstrapfix.scss */
.table td .btn {
  text-decoration: none;
}

/* line 274, app/assets/stylesheets/_bootstrapfix.scss */
.table td .progress {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 280, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-search {
  box-shadow: inset 0 0 2px #fff;
  border-bottom: 1px solid #d3d6d9;
  background: #eef0f1;
}

/* line 284, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-search td, .table.table-search th {
  box-shadow: 2px 0 0 rgba(255, 255, 255, 0.6);
  padding: 4px 8px;
  border-right: 1px solid #d3d6d9;
}

/* line 289, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-search td:last-child, .table.table-search th:last-child {
  box-shadow: none;
  border-right: 0;
}

/* line 293, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-search input {
  background: #fff;
}

/* line 298, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-striped tbody > tr:nth-child(odd) > td, .table .table-striped tbody > tr:nth-child(odd) > th {
  background: #f1f2f3;
}

/* line 300, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-striped tbody > tr:nth-child(odd) > td.cell-total, .table .table-striped tbody > tr:nth-child(odd) > th.cell-total {
  background: rgba(242, 129, 45, 0.25) !important;
}

/* line 303, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-striped tbody > tr:nth-child(odd) > td input, .table .table-striped tbody > tr:nth-child(odd) > th input {
  background: #fff;
}

/* line 306, app/assets/stylesheets/_bootstrapfix.scss */
.well .table.table-striped tbody > tr:nth-child(odd) > td, .well .table .table-striped tbody > tr:nth-child(odd) > th {
  background: #fcfcfc;
}

/* line 313, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-condensed td input {
  margin: .25em 0 0 0;
  height: 2.125em;
  line-height: 1em;
}

/* line 318, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-condensed td input[type="checkbox"] {
  margin: 0;
}

/* line 324, app/assets/stylesheets/_bootstrapfix.scss */
.table.new-contact {
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #e3e5e7 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE3E5E7', GradientType=0);
  border-top: 1px solid #ced1d4;
}

/* line 329, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-hover tbody tr:hover > td, .table.table-hover tbody tr:hover > th {
  background: rgba(242, 129, 45, 0.35);
  color: #434343 !important;
  cursor: pointer;
}

/* line 333, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-hover tbody tr:hover > td a, .table.table-hover tbody tr:hover > th a {
  color: #434343 !important;
}

/* line 335, app/assets/stylesheets/_bootstrapfix.scss */
.table.table-hover tbody tr:hover > td a.btn, .table.table-hover tbody tr:hover > th a.btn {
  color: #fafafa !important;
}

/* line 340, app/assets/stylesheets/_bootstrapfix.scss */
.table tr.no-result td {
  text-align: center;
  font-style: italic;
  font-size: 1.25em;
  line-height: 2.5em;
}

/* line 346, app/assets/stylesheets/_bootstrapfix.scss */
.table tr.no-result:hover td {
  background: #f1f2f3 !important;
  cursor: default;
}

/* ==========================================================================
   4. BUTTONS
========================================================================== */
/* line 356, app/assets/stylesheets/_bootstrapfix.scss */
.btn {
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  box-shadow: none;
  outline: 0;
  border: 0;
  background: #e9eaec;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
  line-height: 18px;
}

/* line 367, app/assets/stylesheets/_bootstrapfix.scss */
.btn span {
  margin-left: 1px;
}

/* line 370, app/assets/stylesheets/_bootstrapfix.scss */
.btn i {
  padding-right: 2px;
  padding-left: 2px;
}

/* line 374, app/assets/stylesheets/_bootstrapfix.scss */
.btn:hover, .btn:focus, .btn:active, .btn.active {
  box-shadow: none;
  outline: 0;
}

/* line 380, app/assets/stylesheets/_bootstrapfix.scss */
.btn-success, .btn-primary {
  background: #47a447;
  background-image: none;
}

/* line 383, app/assets/stylesheets/_bootstrapfix.scss */
.btn-success i, .btn-primary i {
  color: #fff !important;
}

/* line 384, app/assets/stylesheets/_bootstrapfix.scss */
.btn-success:hover, .btn-success:active, .btn-success:focus, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background: #3c8b3c;
}

/* line 389, app/assets/stylesheets/_bootstrapfix.scss */
.btn-primary {
  color: #fff;
}

/* line 391, app/assets/stylesheets/_bootstrapfix.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  color: #fff;
}

/* line 396, app/assets/stylesheets/_bootstrapfix.scss */
.btn-info {
  background: #00a7db;
  background-image: none;
  color: #fff !important;
}

/* line 400, app/assets/stylesheets/_bootstrapfix.scss */
.btn-info:hover, .btn-info:active, .btn-info:focus {
  background: #008cb7;
}

/* line 405, app/assets/stylesheets/_bootstrapfix.scss */
.btn-warning {
  background: #ed9c28;
  background-image: none;
}

/* line 408, app/assets/stylesheets/_bootstrapfix.scss */
.btn-warning i {
  color: #fff !important;
}

/* line 412, app/assets/stylesheets/_bootstrapfix.scss */
.btn-danger {
  background: #d9534f;
  background-image: none;
}

/* line 415, app/assets/stylesheets/_bootstrapfix.scss */
.btn-danger:hover, .btn-danger:active, .btn-danger:focus {
  background: #d33632;
}

/* line 420, app/assets/stylesheets/_bootstrapfix.scss */
.btn-group {
  font-size: 1em;
}

/* line 422, app/assets/stylesheets/_bootstrapfix.scss */
.btn-group .btn {
  border-radius: 0 0 0 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

/* line 424, app/assets/stylesheets/_bootstrapfix.scss */
.btn-group .btn .caret {
  margin-top: 12px;
  margin-left: 4px;
  border-top-color: #fff;
}

/* line 429, app/assets/stylesheets/_bootstrapfix.scss */
.btn-group .btn:hover, .btn-group .btn:focus, .btn-group .btn:active {
  box-shadow: none;
  outline: 0;
}

/* line 434, app/assets/stylesheets/_bootstrapfix.scss */
.btn-group .btn:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 440, app/assets/stylesheets/_bootstrapfix.scss */
.btn-group .btn:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 448, app/assets/stylesheets/_bootstrapfix.scss */
.btn-small {
  padding: 5px 6px;
}

/* line 450, app/assets/stylesheets/_bootstrapfix.scss */
.btn-small i {
  padding: 0;
}

/* line 453, app/assets/stylesheets/_bootstrapfix.scss */
.btn-mini {
  padding: 2px 4px;
}

/* line 455, app/assets/stylesheets/_bootstrapfix.scss */
.btn-mini i {
  padding: 0;
}

/* line 458, app/assets/stylesheets/_bootstrapfix.scss */
.btn-toggle {
  box-shadow: 0 1px 1px rgba(17, 17, 17, 0.3) !important;
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #e3e5e7 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE3E5E7', GradientType=0);
  position: relative;
  float: left;
  clear: right;
  margin: 0 .375em .375em 0;
  padding: 6px 1%;
  border-bottom: 1px solid #9ca3aa;
  color: #434343;
  font-size: 1em;
  line-height: 1.5em;
}

/* line 470, app/assets/stylesheets/_bootstrapfix.scss */
.btn-toggle:hover, .btn-toggle:focus, .btn-toggle:active {
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #f2f2f2 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #f2f2f2 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #f2f2f2 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF2F2F2', GradientType=0);
  background: #fff;
}

/* line 474, app/assets/stylesheets/_bootstrapfix.scss */
.btn-toggle.active {
  background-image: -webkit-linear-gradient(to bottom, #f2812d 0%, #f07010 100%);
  background-image: -webkit-linear-gradient(top, #f2812d 0%, #f07010 100%);
  background-image: linear-gradient(to bottom, #f2812d 0%, #f07010 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2812D', endColorstr='#FFF07010', GradientType=0);
  border-bottom-color: #de670e;
  background: #f2812d;
  color: #fff;
  text-shadow: 0 -1px 0 #ae500b;
}

/* line 483, app/assets/stylesheets/_bootstrapfix.scss */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active {
  z-index: inherit;
}

/* line 487, app/assets/stylesheets/_bootstrapfix.scss */
.input-append .add-on, .input-append .btn, .input-append .btn-group {
  margin-left: 0;
}

/* line 492, app/assets/stylesheets/_bootstrapfix.scss */
.input-append input {
  margin-bottom: 0;
  border-right-color: #8f969e;
}

/* line 496, app/assets/stylesheets/_bootstrapfix.scss */
.input-append .btn {
  padding: 7px 12px;
}

/* ==========================================================================
   5. MISC
========================================================================== */
/* line 506, app/assets/stylesheets/_bootstrapfix.scss */
.alert {
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  overflow: auto;
}

/* line 518, app/assets/stylesheets/_bootstrapfix.scss */
.alert.alert-warning {
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.9);
  background: #e9e4de;
  border-color: #dfd7cf;
  color: #434343;
  font-weight: 700;
}

/* line 529, app/assets/stylesheets/_bootstrapfix.scss */
.alert form {
  margin-bottom: 0;
}

/* line 531, app/assets/stylesheets/_bootstrapfix.scss */
.alert form input {
  margin-bottom: 0;
  border: 1px solid #c5c9cd;
}

/* line 539, app/assets/stylesheets/_bootstrapfix.scss */
.list-group {
  margin-bottom: 1em;
  padding-left: 0;
  list-style-type: none;
}

/* line 543, app/assets/stylesheets/_bootstrapfix.scss */
.list-group .list-group-item {
  position: relative;
  display: block;
  padding: 15px 5px;
  border-bottom: 1px solid #e3e5e7;
  background-color: #fff;
}

/* line 549, app/assets/stylesheets/_bootstrapfix.scss */
.list-group .list-group-item .input-append {
  margin-bottom: 0;
}

/* line 552, app/assets/stylesheets/_bootstrapfix.scss */
.list-group .list-group-item form {
  margin: 0;
}

/* line 555, app/assets/stylesheets/_bootstrapfix.scss */
.list-group .list-group-item:last-child {
  border-bottom: 0;
}

/* line 561, app/assets/stylesheets/_bootstrapfix.scss */
.well {
  box-shadow: none;
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  display: inline-block;
  padding: 3%;
  width: 94%;
  border: 0;
  border-bottom: 1px solid #d3d6d9;
  background: #f1f2f3;
}

/* line 570, app/assets/stylesheets/_bootstrapfix.scss */
.well .table {
  margin-bottom: 0;
}

/* line 573, app/assets/stylesheets/_bootstrapfix.scss */
.well input {
  margin-bottom: 0;
  background: #fff;
}

/* line 580, app/assets/stylesheets/_bootstrapfix.scss */
.datepicker table {
  width: 100%;
}

/* line 585, app/assets/stylesheets/_bootstrapfix.scss */
.modal-backdrop {
  z-index: 800;
}

/* line 588, app/assets/stylesheets/_bootstrapfix.scss */
.modal.fade.in {
  z-index: 1000 !important;
}

/* line 591, app/assets/stylesheets/_bootstrapfix.scss */
.modal-body.info-box {
  max-height: none;
}

/* line 594, app/assets/stylesheets/_bootstrapfix.scss */
.progress {
  margin-bottom: 0;
}

/* line 599, app/assets/stylesheets/_bootstrapfix.scss */
.modal-scroll-body .modal-dialog {
  overflow-y: initial !important;
}

/* line 602, app/assets/stylesheets/_bootstrapfix.scss */
.modal-scroll-body .modal-body {
  height: 400px;
  overflow-y: auto;
}

/* line 606, app/assets/stylesheets/_bootstrapfix.scss */
.modal-scroll-body .modal-body:after {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5em;
  bottom: 0;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95) 50%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95) 50%);
  z-index: 1;
}

/* ==========================================================================
   1. GENERAL
========================================================================== */
/* line 19, app/assets/stylesheets/_widget.scss */
.widget {
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.5);
  position: relative;
  margin-bottom: 2em;
  background: #fff;
}

/* ==========================================================================
   2. HEADER
========================================================================== */
/* line 29, app/assets/stylesheets/_widget.scss */
.widget-header {
  box-sizing: content-box;
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #e3e5e7 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE3E5E7', GradientType=0);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  position: relative;
  height: 40px;
  border-bottom: 1px solid #b8bdc1;
}

/* line 37, app/assets/stylesheets/_widget.scss */
.widget-header h3, .widget-header h4 {
  float: left;
  margin: 0;
  padding: 0 0 0 1em;
  width: auto;
  color: #434343;
  text-shadow: 0 1px 0 #fff;
  font-size: 1.065em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 40px;
}

/* line 48, app/assets/stylesheets/_widget.scss */
.widget-header h4 {
  font-size: .925em;
}

/* line 51, app/assets/stylesheets/_widget.scss */
.widget-header span {
  display: block;
  float: left;
  clear: right;
  line-height: 40px;
}

/* line 57, app/assets/stylesheets/_widget.scss */
.widget-header.info-header h3 {
  text-transform: none;
}

/* ==========================================================================
   3. HEADER ACTIONS
========================================================================== */
/* line 65, app/assets/stylesheets/_widget.scss */
.widget-header .actions {
  position: absolute;
  top: 0;
  right: 0;
}

/* line 71, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn.btn-remove {
  color: #fff;
  background: #d9534f;
}

/* line 75, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn.btn-remove:hover, .widget-header .actions .btn.btn-remove:focus {
  background: #d9534f;
  color: #fff;
  background-image: -webkit-linear-gradient(to bottom, #d9534f 0%, #d33632 100%);
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #d33632 100%);
  background-image: linear-gradient(to bottom, #d9534f 0%, #d33632 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9534F', endColorstr='#FFD33632', GradientType=0);
}

/* line 82, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn.btn-confirm {
  color: #fff;
  background: #47a447;
}

/* line 86, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn.btn-confirm:hover, .widget-header .actions .btn.btn-confirm:focus {
  background: #47a447;
  color: #fff;
  background-image: -webkit-linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-image: -webkit-linear-gradient(top, #47a447 0%, #3c8b3c 100%);
  background-image: linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF47A447', endColorstr='#FF3C8B3C', GradientType=0);
}

/* line 93, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn.btn-details {
  color: #fff;
  background: #00a7db;
}

/* line 97, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn.btn-details:hover, .widget-header .actions .btn.btn-details:focus {
  background: #00a7db;
  color: #fff;
  background-image: -webkit-linear-gradient(to bottom, #00a7db 0%, #008cb7 100%);
  background-image: -webkit-linear-gradient(top, #00a7db 0%, #008cb7 100%);
  background-image: linear-gradient(to bottom, #00a7db 0%, #008cb7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF00A7DB', endColorstr='#FF008CB7', GradientType=0);
}

/* line 105, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn {
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #f2f2f2 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #f2f2f2 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #f2f2f2 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF2F2F2', GradientType=0);
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  box-shadow: none;
  box-shadow: -1px 0 0 #d3d6d9;
  padding: 10px 5px;
  min-width: 36px;
  border: 0;
  color: #111;
  text-transform: none;
  text-shadow: none;
  font-size: 13px;
  line-height: 20px;
}

/* line 118, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn.dropdown-toggle {
  min-width: 80px;
}

/* line 121, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn .caret {
  position: relative;
  margin-top: 10px;
  padding: 0;
  border-top-color: #434343;
  border-bottom-color: #434343;
}

/* line 128, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn span {
  padding: 0 0 0 .5em;
}

/* line 131, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn:hover, .widget-header .actions .btn:focus {
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #e9eaec 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #e9eaec 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #e9eaec 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE9EAEC', GradientType=0);
  background: #fff;
  color: #434343;
}

/* line 138, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group {
  font-size: 20px;
}

/* line 140, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn {
  box-shadow: inset 1px 0 0 #d3d6d9;
  position: relative;
  top: initial;
  right: initial;
  bottom: initial;
  left: initial;
  display: block;
  float: left;
  clear: right;
}

/* line 150, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn span {
  padding: 0 2px;
  line-height: 20px;
}

/* line 153, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn span.caret {
  margin: 10px 7px 0 7px;
  padding: 0;
  line-height: 14px;
}

/* line 159, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn:hover, .widget-header .actions .btn-group .btn:focus, .widget-header .actions .btn-group .btn:active {
  box-shadow: inset 1px 0 0 #d3d6d9;
}

/* line 162, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-danger {
  color: #111;
}

/* line 164, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-danger i {
  color: #d9534f;
}

/* line 168, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-success {
  color: #111;
}

/* line 170, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-success i {
  color: #47a447 !important;
}

/* line 175, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-remove {
  color: #fff;
}

/* line 178, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-remove:hover, .widget-header .actions .btn-group .btn.btn-remove:focus {
  background-image: -webkit-linear-gradient(to bottom, #d9534f 0%, #d33632 100%);
  background-image: -webkit-linear-gradient(top, #d9534f 0%, #d33632 100%);
  background-image: linear-gradient(to bottom, #d9534f 0%, #d33632 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD9534F', endColorstr='#FFD33632', GradientType=0);
}

/* line 183, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-confirm {
  color: #fff;
  background: #47a447;
}

/* line 187, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-confirm:hover, .widget-header .actions .btn-group .btn.btn-confirm:focus {
  background-image: -webkit-linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-image: -webkit-linear-gradient(top, #47a447 0%, #3c8b3c 100%);
  background-image: linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF47A447', endColorstr='#FF3C8B3C', GradientType=0);
}

/* line 192, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-details {
  color: #fff;
  background: #00a7db;
}

/* line 196, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group .btn.btn-details:hover, .widget-header .actions .btn-group .btn.btn-details:focus {
  background-image: -webkit-linear-gradient(to bottom, #00a7db 0%, #008cb7 100%);
  background-image: -webkit-linear-gradient(top, #00a7db 0%, #008cb7 100%);
  background-image: linear-gradient(to bottom, #00a7db 0%, #008cb7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF00A7DB', endColorstr='#FF008CB7', GradientType=0);
}

/* line 203, app/assets/stylesheets/_widget.scss */
.widget-header .actions .btn-group a.btn i, .widget-header .actions .btn-group a.btn span {
  float: left;
  clear: right;
}

/* line 209, app/assets/stylesheets/_widget.scss */
.widget-header .actions label {
  margin: 0 10px 0 0;
  line-height: 40px;
}

/* line 212, app/assets/stylesheets/_widget.scss */
.widget-header .actions label input {
  position: relative;
  top: 10px;
  margin-left: 0;
  margin-right: 8px;
}

/* line 218, app/assets/stylesheets/_widget.scss */
.widget-header .actions label.checkbox {
  font-size: .625em;
  font-weight: 400;
}

/* line 224, app/assets/stylesheets/_widget.scss */
.widget-header .actions input, .widget-header .actions select, .widget-header .actions textarea {
  margin-bottom: 0;
}

/* line 227, app/assets/stylesheets/_widget.scss */
.widget-header .actions select {
  position: relative;
  display: block;
  float: left;
  clear: right;
  margin-top: 5px;
  margin-right: 1em;
}

/* line 235, app/assets/stylesheets/_widget.scss */
.widget-header .actions.action-text {
  padding: 0 1em;
  border-left: 1px solid rgba(17, 17, 17, 0.2);
  background: rgba(255, 255, 255, 0.4);
  line-height: 40px;
}

/* ==========================================================================
   4. CONTENT
========================================================================== */
/* line 246, app/assets/stylesheets/_widget.scss */
.widget .widget-content {
  box-sizing: border-box;
  position: relative;
  padding: 0;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
}

/* line 254, app/assets/stylesheets/_widget.scss */
.widget .widget-content .table {
  margin: 0;
}

/* line 257, app/assets/stylesheets/_widget.scss */
.widget .widget-content .widget {
  box-shadow: none;
  border: 1px solid #e1e3e5;
  background: #f7f7f8;
}

/* line 261, app/assets/stylesheets/_widget.scss */
.widget .widget-content .widget .widget-header {
  border-bottom: 1px solid #c5c9cd;
}

/* line 264, app/assets/stylesheets/_widget.scss */
.widget .widget-content .widget input {
  background: #fff;
}

/* line 270, app/assets/stylesheets/_widget.scss */
.widget .widget-content .btn.btn-confirm {
  color: #fff;
  background: #47a447;
}

/* line 274, app/assets/stylesheets/_widget.scss */
.widget .widget-content .btn.btn-confirm:hover, .widget .widget-content .btn.btn-confirm:focus {
  background: #47a447;
  color: #fff;
  background-image: -webkit-linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-image: -webkit-linear-gradient(top, #47a447 0%, #3c8b3c 100%);
  background-image: linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF47A447', endColorstr='#FF3C8B3C', GradientType=0);
}

/* line 284, app/assets/stylesheets/_widget.scss */
.widget .widget-plain-content {
  padding: 1.5em;
}

/* line 286, app/assets/stylesheets/_widget.scss */
.widget .widget-plain-content .row {
  margin-left: 0;
}

/* line 289, app/assets/stylesheets/_widget.scss */
.widget .widget-plain-content .table {
  margin-bottom: 2em;
}

/* line 294, app/assets/stylesheets/_widget.scss */
.widget .plain-content {
  padding: 3%;
}

/* line 298, app/assets/stylesheets/_widget.scss */
.widget .plain-content .btn.btn-confirm {
  color: #fff;
  background: #47a447;
}

/* line 302, app/assets/stylesheets/_widget.scss */
.widget .plain-content .btn.btn-confirm:hover, .widget .plain-content .btn.btn-confirm:focus {
  color: #fff;
  background-image: -webkit-linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-image: -webkit-linear-gradient(top, #47a447 0%, #3c8b3c 100%);
  background-image: linear-gradient(to bottom, #47a447 0%, #3c8b3c 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF47A447', endColorstr='#FF3C8B3C', GradientType=0);
}

/* line 310, app/assets/stylesheets/_widget.scss */
.widget .plain-content + .well {
  border-top: 1px solid #d3d6d9;
}

/* line 314, app/assets/stylesheets/_widget.scss */
.widget .subcontent {
  margin-left: 1.5em;
  padding-left: 1.5em;
  border-left: 3px solid #c5c9cd;
}

/* ==========================================================================
   5a WIDGET - GREEN
========================================================================== */
/* line 324, app/assets/stylesheets/_widget.scss */
.widget.widget-green > .widget-header {
  background-image: -webkit-linear-gradient(to bottom, #dbe892 0%, #b3ca2b 100%);
  background-image: -webkit-linear-gradient(top, #dbe892 0%, #b3ca2b 100%);
  background-image: linear-gradient(to bottom, #dbe892 0%, #b3ca2b 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFDBE892', endColorstr='#FFB3CA2B', GradientType=0);
  border-bottom: 1px solid #92a523;
}

/* line 327, app/assets/stylesheets/_widget.scss */
.widget.widget-green > .widget-header h3 {
  color: #475011;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* line 333, app/assets/stylesheets/_widget.scss */
.widget.widget-green > .widget-header .actions .btn.btn-details {
  color: #fff;
  background: #00a7db;
}

/* line 337, app/assets/stylesheets/_widget.scss */
.widget.widget-green > .widget-header .actions .btn.btn-details:hover, .widget.widget-green > .widget-header .actions .btn.btn-details:focus {
  background: #00a7db;
  color: #fff;
  background-image: -webkit-linear-gradient(to bottom, #00a7db 0%, #008cb7 100%);
  background-image: -webkit-linear-gradient(top, #00a7db 0%, #008cb7 100%);
  background-image: linear-gradient(to bottom, #00a7db 0%, #008cb7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF00A7DB', endColorstr='#FF008CB7', GradientType=0);
}

/* line 345, app/assets/stylesheets/_widget.scss */
.widget.widget-green > .widget-header .actions .btn {
  box-shadow: -1px 0 0 rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(17, 17, 17, 0.2);
  background: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   5b WIDGET - RED
========================================================================== */
/* line 358, app/assets/stylesheets/_widget.scss */
.widget.widget-red .widget-header {
  background-image: -webkit-linear-gradient(to bottom, #ff279f 0%, #c0006b 100%);
  background-image: -webkit-linear-gradient(top, #ff279f 0%, #c0006b 100%);
  background-image: linear-gradient(to bottom, #ff279f 0%, #c0006b 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFF279F', endColorstr='#FFC0006B', GradientType=0);
  border-bottom: 1px solid #740040;
}

/* line 361, app/assets/stylesheets/_widget.scss */
.widget.widget-red .widget-header h3 {
  color: #fff;
  text-shadow: 0 1px 0 rgba(17, 17, 17, 0.75);
}

/* line 366, app/assets/stylesheets/_widget.scss */
.widget.widget-red .widget-header .actions .btn {
  box-shadow: -1px 0 0 rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(17, 17, 17, 0.2);
  background: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   5c WIDGET - INFO
========================================================================== */
/* line 379, app/assets/stylesheets/_widget.scss */
.widget.widget-info .widget-content {
  background: #D9EDF7;
}

/* ==========================================================================
   7. MY WIDGETS
========================================================================== */
/* line 387, app/assets/stylesheets/_widget.scss */
#widgets {
  position: relative;
  display: block;
  margin: 1em 0 0 0;
  width: 100%;
}

/* line 394, app/assets/stylesheets/_widget.scss */
.my-widget {
  box-sizing: border-box;
  margin-bottom: 2em;
  height: 27em;
}

/* line 399, app/assets/stylesheets/_widget.scss */
.my-widget .widget .widget-content {
  display: block;
  overflow-x: auto;
  overflow-y: auto;
  min-height: 5em;
  max-height: 22em;
}

/* line 407, app/assets/stylesheets/_widget.scss */
.my-widget:nth-of-type(odd) {
  float: left;
  margin-left: 0;
}

/* line 412, app/assets/stylesheets/_widget.scss */
.my-widget-sortable-placeholder {
  height: 27em;
  background: rgba(255, 255, 255, 0.5);
  border: 1px dashed #444444;
}

/* ==========================================================================
   8. PAGINATION
========================================================================== */
/* line 421, app/assets/stylesheets/_widget.scss */
.widget .pagination {
  background-image: -webkit-linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-image: -webkit-linear-gradient(top, #fff 0%, #e3e5e7 100%);
  background-image: linear-gradient(to bottom, #fff 0%, #e3e5e7 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE3E5E7', GradientType=0);
  margin: 0;
  padding: 1.5em;
  border-top: 1px solid #d3d6d9;
  text-align: center;
}

/* line 427, app/assets/stylesheets/_widget.scss */
.widget .pagination ul {
  box-shadow: none;
  border-radius: 0;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

/* line 430, app/assets/stylesheets/_widget.scss */
.widget .pagination ul > li {
  display: inline-block;
  margin: 0 .125em;
}

/* line 433, app/assets/stylesheets/_widget.scss */
.widget .pagination ul > li > a, .widget .pagination ul > li > span {
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  margin: 0;
  padding: .375em .925em;
  border: 0;
  border-bottom: 1px solid #c5c9cd;
  background: #fff;
  font-size: 1.125em;
}

/* line 442, app/assets/stylesheets/_widget.scss */
.widget .pagination ul > li > a {
  color: #444444;
  cursor: pointer;
}

/* line 445, app/assets/stylesheets/_widget.scss */
.widget .pagination ul > li > a:hover, .widget .pagination ul > li > a:focus {
  background: #f38f45;
  border-bottom-color: #c65c0c;
  color: #fafafa;
  text-shadow: 0 1px 0 #c65c0c;
}

/* line 452, app/assets/stylesheets/_widget.scss */
.widget .pagination ul > li.active a {
  border-bottom-color: #c65c0c;
  background: #f2812d;
  color: #fff;
  text-shadow: 0 1px 0 #ae500b;
}

/* line 458, app/assets/stylesheets/_widget.scss */
.widget .pagination ul > li.disabled a, .widget .pagination ul > li.disabled span {
  border-bottom: 1px solid #c5c9cd;
  background: #fff;
  text-shadow: none;
  color: #444444;
  opacity: 0.5;
}

/* ==========================================================================
   9. TOGGLE
========================================================================== */
/* line 472, app/assets/stylesheets/_widget.scss */
.widget-toggle {
  cursor: pointer;
}

/* line 475, app/assets/stylesheets/_widget.scss */
.widget h3 a {
  color: #434343;
  text-decoration: none;
}

/* line 478, app/assets/stylesheets/_widget.scss */
.widget h3 a:hover, .widget h3 a:focus, .widget h3 a:active {
  color: #111;
  text-decoration: none;
}

/* line 485, app/assets/stylesheets/_widget.scss */
.widget h3 .font-plus {
  display: none;
}

/* line 488, app/assets/stylesheets/_widget.scss */
.widget h3 .font-minus {
  display: inline-block;
}

/* line 494, app/assets/stylesheets/_widget.scss */
.widget-collapse .widget-header {
  box-shadow: none !important;
  border-bottom: 0 !important;
}

/* line 499, app/assets/stylesheets/_widget.scss */
.widget-collapse h3 .font-plus {
  display: inline-block;
}

/* line 502, app/assets/stylesheets/_widget.scss */
.widget-collapse h3 .font-minus {
  display: none;
}

/* line 507, app/assets/stylesheets/_widget.scss */
.widget-collapse.widget-inactive h3 .inactive {
  font-style: italic;
}

/* line 511, app/assets/stylesheets/_widget.scss */
.widget-collapse .widget-content {
  display: none;
}

/* line 515, app/assets/stylesheets/_widget.scss */
.widget-content .alert {
  margin-bottom: 0;
}

/* line 1, app/assets/stylesheets/misc.scss */
#education-select-company.modal {
  left: 5%;
  margin-left: auto;
  width: 90%;
}

/* line 7, app/assets/stylesheets/misc.scss */
.document-review, .document-review-image, .document-review-pdf {
  width: 100%;
}

/* line 12, app/assets/stylesheets/misc.scss */
.document-review-pdf {
  height: 800px;
}

/* line 18, app/assets/stylesheets/misc.scss */
.document-review-image {
  max-height: 800px;
}

/* line 24, app/assets/stylesheets/misc.scss */
.box-center {
  margin-left: auto;
  margin-right: auto;
}

/* line 29, app/assets/stylesheets/misc.scss */
.text-center {
  text-align: center !important;
}

/* line 33, app/assets/stylesheets/misc.scss */
.text-right {
  text-align: right !important;
}

/* line 37, app/assets/stylesheets/misc.scss */
.text-left {
  text-align: left !important;
}

/* line 41, app/assets/stylesheets/misc.scss */
.text-vertical-middle {
  display: inline-block;
  vertical-align: center;
}

/* line 46, app/assets/stylesheets/misc.scss */
.hide-overflow {
  overflow: hidden;
}

/* line 50, app/assets/stylesheets/misc.scss */
span.success {
  color: green;
}

/* line 53, app/assets/stylesheets/misc.scss */
span.error {
  color: red;
}

/* line 57, app/assets/stylesheets/misc.scss */
.no-margin {
  margin: 0 !important;
}

/* line 61, app/assets/stylesheets/misc.scss */
.margin-top-small {
  margin-top: 5px;
}

/* line 65, app/assets/stylesheets/misc.scss */
.margin-right-small {
  margin-right: 5px;
}

/* line 69, app/assets/stylesheets/misc.scss */
.margin-top1 {
  margin-top: 1rem;
}

/* line 73, app/assets/stylesheets/misc.scss */
.margin-top-large {
  margin-top: 2.4rem;
}

/* line 77, app/assets/stylesheets/misc.scss */
.margin-bottom0 {
  margin-bottom: 0;
}

/* line 81, app/assets/stylesheets/misc.scss */
.padding1 {
  padding: 1em;
}

/* line 85, app/assets/stylesheets/misc.scss */
.padding4 {
  padding: 4px;
}

/* line 89, app/assets/stylesheets/misc.scss */
.padding-x-medium {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}

/* line 94, app/assets/stylesheets/misc.scss */
.normal-weight {
  font-weight: normal;
}

/* line 99, app/assets/stylesheets/misc.scss */
.editMode-false .if-edit-true {
  display: none;
}

/* line 105, app/assets/stylesheets/misc.scss */
.editMode-true .if-edit-true {
  display: block;
}

/* line 108, app/assets/stylesheets/misc.scss */
.editMode-true .if-edit-false {
  display: none;
}

/* line 113, app/assets/stylesheets/misc.scss */
.unvisible {
  visibility: hidden;
}

/* line 117, app/assets/stylesheets/misc.scss */
.reset-password-wrapper {
  padding-top: 1em;
  font-size: 1em;
}

/* line 122, app/assets/stylesheets/misc.scss */
.monospaced {
  font-family: monospace;
}

/* line 126, app/assets/stylesheets/misc.scss */
[class^="indent-"] {
  display: inline-block;
  text-align: right;
}

/* line 132, app/assets/stylesheets/misc.scss */
dl.dl-horizontal dd {
  min-height: 20px;
}

/* line 139, app/assets/stylesheets/misc.scss */
.loading {
  opacity: 0.5;
}

/* line 143, app/assets/stylesheets/misc.scss */
#loading-indicator {
  position: absolute;
  top: 11px;
  right: .5em;
}

/* line 150, app/assets/stylesheets/misc.scss */
.meny-toggle {
  position: absolute;
  top: 7px;
  right: .25em;
  display: none;
  color: #c7c7c7;
  text-shadow: 0 -1px 0 #1c1f22;
  font-size: 1.75em;
  cursor: pointer;
}

/* line 159, app/assets/stylesheets/misc.scss */
.meny-toggle:hover, .meny-toggle:focus {
  color: #fafafa;
}

/* line 164, app/assets/stylesheets/misc.scss */
strong, dt, .bold {
  font-weight: 600;
}

/* line 169, app/assets/stylesheets/misc.scss */
span i.font-check {
  color: #47a447;
}

/* line 172, app/assets/stylesheets/misc.scss */
span i.font-cancel {
  color: #d9534f;
}

/* line 177, app/assets/stylesheets/misc.scss */
.small {
  font-size: 0.75em !important;
}

/* line 181, app/assets/stylesheets/misc.scss */
.navbar-fixed-top {
  text-align: center;
  position: fixed;
  top: 46px;
  background: #666;
  text-align: center;
}

/* line 187, app/assets/stylesheets/misc.scss */
.navbar-fixed-top ul {
  float: none;
  border-bottom: 0;
  margin: 0 auto;
}

/* line 191, app/assets/stylesheets/misc.scss */
.navbar-fixed-top ul li {
  display: inline-block;
  float: none;
}

/* line 195, app/assets/stylesheets/misc.scss */
.navbar-fixed-top ul li.selected {
  margin-bottom: -1px;
}

/* line 197, app/assets/stylesheets/misc.scss */
.navbar-fixed-top ul li.selected a {
  color: #333;
}

/* line 199, app/assets/stylesheets/misc.scss */
.navbar-fixed-top ul a, .navbar-fixed-top ul a:visited {
  color: #fff;
}

/* line 202, app/assets/stylesheets/misc.scss */
.navbar-fixed-top ul a:hover {
  background: #f2812d;
}

/* line 209, app/assets/stylesheets/misc.scss */
ul.notes {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 215, app/assets/stylesheets/misc.scss */
ul.notes li.note {
  display: block;
  margin: 1em auto;
  padding: .75em 0;
  width: 94%;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  line-height: 18px;
}

/* line 223, app/assets/stylesheets/misc.scss */
ul.notes li.note:last-of-type {
  border-bottom: 0;
}

/* line 226, app/assets/stylesheets/misc.scss */
ul.notes li.note .content {
  white-space: pre-line;
}

/* line 229, app/assets/stylesheets/misc.scss */
ul.notes li.note .details {
  overflow: hidden;
  margin-top: 5px;
  font-size: 11px;
}

/* line 235, app/assets/stylesheets/misc.scss */
ul.notes li.new-note {
  display: inline-block;
  width: 100%;
}

/* line 242, app/assets/stylesheets/misc.scss */
.question-image {
  max-width: 300px;
}

/* line 246, app/assets/stylesheets/misc.scss */
.Actions .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

/* line 251, app/assets/stylesheets/misc.scss */
.full-width {
  width: 100%;
}

/* line 255, app/assets/stylesheets/misc.scss */
.box {
  display: block;
  padding: 8px 14px 8px 14px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* line 262, app/assets/stylesheets/misc.scss */
.box.green {
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 265, app/assets/stylesheets/misc.scss */
.box.green .muted {
  color: #468847;
}

/* line 268, app/assets/stylesheets/misc.scss */
.box.yellow {
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
}

/* line 271, app/assets/stylesheets/misc.scss */
.box.yellow .muted {
  color: #c09853;
}

/* line 275, app/assets/stylesheets/misc.scss */
.row-border {
  border-bottom: 1px solid #d7d7d7;
}

/* line 279, app/assets/stylesheets/misc.scss */
.padding-top-6 {
  padding-top: 6px;
}

/* line 283, app/assets/stylesheets/misc.scss */
.include-row-breaks {
  white-space: pre-line;
}

/* line 287, app/assets/stylesheets/misc.scss */
.button-margin-top {
  margin-top: 4px;
}

/* line 291, app/assets/stylesheets/misc.scss */
.percentage-checkmark {
  position: absolute;
  height: 25px;
  left: 70%;
  top: 10%;
}

/* line 298, app/assets/stylesheets/misc.scss */
.inline-form-block {
  display: inline-block;
  padding: 0 10px;
}

/* line 302, app/assets/stylesheets/misc.scss */
.inline-form-block label {
  display: block;
}

/* line 307, app/assets/stylesheets/misc.scss */
.inline-form-button {
  margin: 0 0px 12.5px 10px !important;
}

/* line 311, app/assets/stylesheets/misc.scss */
.padding-right-10 {
  padding-right: 10px;
}

/* line 315, app/assets/stylesheets/misc.scss */
.display-inline {
  display: inline;
}

/* line 319, app/assets/stylesheets/misc.scss */
.padding-left-5 {
  padding-left: 5px;
}

/* line 323, app/assets/stylesheets/misc.scss */
.inline {
  display: inline;
}

/* line 327, app/assets/stylesheets/misc.scss */
.prerequisite-complete {
  color: green;
}

/* line 331, app/assets/stylesheets/misc.scss */
.prerequisite-incomplete {
  color: red;
}

/* line 5, app/assets/stylesheets/_text_angular.scss */
[text-angular-toolbar] .btn,
[text-angular-toolbar] .btn-group {
  margin-left: 0;
  margin-right: 4px;
}

/* line 11, app/assets/stylesheets/_text_angular.scss */
[text-angular-toolbar] .btn-group .btn {
  margin-right: 0;
}

/* line 15, app/assets/stylesheets/_text_angular.scss */
[text-angular-toolbar] [name=bold] {
  font-weight: bold;
}

/* line 19, app/assets/stylesheets/_text_angular.scss */
[text-angular-toolbar] [name=italics] {
  font-style: italic;
}

/* line 23, app/assets/stylesheets/_text_angular.scss */
[text-angular-toolbar] [name=underline] {
  text-decoration: underline;
}

/* line 27, app/assets/stylesheets/_text_angular.scss */
.ta-hidden-input {
  width: 1px;
  height: 1px;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -10000px;
  left: -10000px;
  opacity: 0;
  overflow: hidden;
}

/* line 1, app/assets/stylesheets/_ui_routes.scss */
[ui-sref] {
  cursor: pointer;
}

/* ==========================================================================
   2. TYPOGRAPHY
========================================================================== */
/* line 89, app/assets/stylesheets/application.scss */
h1, h2, h3, h4 {
  margin: .125em 0 .25em;
  font-weight: inherit;
  font-weight: 500;
  line-height: 1.2;
}

/* line 95, app/assets/stylesheets/application.scss */
h1 small, h2 small, h3 small, h4 small {
  color: #434343;
  padding: 0 0 0 .5em;
}

/* line 98, app/assets/stylesheets/application.scss */
h1 {
  margin-top: 0;
  font-size: 2em;
}

/* line 103, app/assets/stylesheets/application.scss */
h2 {
  font-size: 1.75em;
}

/* line 107, app/assets/stylesheets/application.scss */
h3 {
  font-size: 1.5em;
}

/* line 111, app/assets/stylesheets/application.scss */
h4 {
  font-size: 1.333em;
}

/* ==========================================================================
   3. LINKS
========================================================================== */
/* line 118, app/assets/stylesheets/application.scss */
a {
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
  outline: 0;
  color: #de670e;
  text-decoration: none;
}

/* line 123, app/assets/stylesheets/application.scss */
a:hover {
  outline: 0;
  color: #de670e;
}

/* line 127, app/assets/stylesheets/application.scss */
a:visited {
  outline: 0;
  color: #de670e;
}

/* line 133, app/assets/stylesheets/application.scss */
a.btn {
  color: #fff;
}

/* line 137, app/assets/stylesheets/application.scss */
.btn-link {
  background: none;
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
  outline: 0;
  color: #de670e;
  text-decoration: none;
}

/* line 143, app/assets/stylesheets/application.scss */
.btn-link:hover {
  outline: 0;
  color: #de670e;
}

/* ==========================================================================
   4. WIDGETS
========================================================================== */
/* line 152, app/assets/stylesheets/application.scss */
.flex-container {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 158, app/assets/stylesheets/application.scss */
.flex-row {
  width: 100%;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

/* line 163, app/assets/stylesheets/application.scss */
.flex-item {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

/* ==========================================================================
   5. MEDIA QUERIES
========================================================================== */
@media (max-width: 1200px) {
  /* line 171, app/assets/stylesheets/application.scss */
  .widget-content {
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
  }
}

/* line 180, app/assets/stylesheets/application.scss */
#flash {
  position: fixed;
  top: 50px;
  right: 2px;
  z-index: 9999;
  max-width: 330px;
  min-width: 200px;
}

/* line 189, app/assets/stylesheets/application.scss */
#flash .alert {
  border: 2px #212428 solid;
  padding: 1.5em 2em 1.5em 1.5em;
  font-size: 1.2em;
}

/* line 195, app/assets/stylesheets/application.scss */
div.userinfo {
  position: fixed;
  bottom: 1em;
  left: 1em;
  color: #666;
  font-size: 11px;
  text-align: center;
  width: 16em;
}

@media print {
  /* line 206, app/assets/stylesheets/application.scss */
  html {
    font-size: 11pt;
    line-height: 1.5;
    width: 90%;
    height: auto;
  }
  /* line 207, app/assets/stylesheets/application.scss */
  body {
    margin: 2cm;
    width: 100% !important;
    height: auto;
  }
  /* line 208, app/assets/stylesheets/application.scss */
  .body {
    position: initial;
    left: 0;
  }
  /* line 211, app/assets/stylesheets/application.scss */
  header,
aside,
.navbar-fixed-top,
.secondary-sidebar-nav,
.not-on-print,
#flash {
    display: none !important;
  }
  /* line 220, app/assets/stylesheets/application.scss */
  select, input {
    border: none !important;
  }
}

/* line 225, app/assets/stylesheets/application.scss */
label.speaker {
  display: inline-block;
}

/* line 226, app/assets/stylesheets/application.scss */
speaker {
  cursor: pointer;
  margin-left: 0.25em;
}

/* line 230, app/assets/stylesheets/application.scss */
speaker div {
  height: 1em;
}

/* line 234, app/assets/stylesheets/application.scss */
input + speaker {
  margin-left: 0.75em;
  vertical-align: super;
}

/* line 240, app/assets/stylesheets/application.scss */
.inline-radios .control-label {
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 12px;
}

/* line 245, app/assets/stylesheets/application.scss */
.inline-radios .controls {
  height: 2.5em;
  padding: 0.5em;
  margin-bottom: 1em;
}

/* line 249, app/assets/stylesheets/application.scss */
.inline-radios .controls input[type="radio"] {
  margin-left: 1em;
  position: relative;
  bottom: 0.1em;
}

/* line 257, app/assets/stylesheets/application.scss */
.full-width-input {
  width: 469px;
}

/* line 261, app/assets/stylesheets/application.scss */
input.checkbox-styled[type="checkbox"] {
  width: 20px;
  margin-left: 0.5em;
  margin-bottom: 2px;
}

/* ==========================================================================
   6. CERTIFICATE PREVIEW
========================================================================== */
/* line 271, app/assets/stylesheets/application.scss */
.certificate-preview {
  height: 86mm;
  width: 53.98mm;
  background-color: white;
  border: 2px black;
  border-radius: 20px;
  border-style: solid;
}

/* line 280, app/assets/stylesheets/application.scss */
.cert-margin {
  margin-top: 5px;
}

/* line 284, app/assets/stylesheets/application.scss */
.cert-margin-special {
  margin-top: 2px;
}

/* line 288, app/assets/stylesheets/application.scss */
.certificate-preview div {
  text-align: center;
}

/* line 292, app/assets/stylesheets/application.scss */
.cert-avatar {
  height: 100px;
  width: 86px;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
}

/* line 300, app/assets/stylesheets/application.scss */
.cert-profession {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 11pt;
}

/* line 306, app/assets/stylesheets/application.scss */
.cert-ely-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
}

/* line 311, app/assets/stylesheets/application.scss */
.cert-date {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
}

/* line 316, app/assets/stylesheets/application.scss */
.cert-name {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 10pt;
}

/* line 322, app/assets/stylesheets/application.scss */
.cert-ssn {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 10pt;
}

/* line 328, app/assets/stylesheets/application.scss */
.cert-logos-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 8px;
}

/* line 334, app/assets/stylesheets/application.scss */
.cert-type-etg-logo {
  height: 26pt;
}

/* line 338, app/assets/stylesheets/application.scss */
.cert-type-ecy-logo {
  height: 27pt;
}

/* line 342, app/assets/stylesheets/application.scss */
.cert-type-not-etg {
  margin-top: 6px;
  height: 32pt;
}

/* line 347, app/assets/stylesheets/application.scss */
.cert-profession-not-etg {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 11pt;
}

/* line 353, app/assets/stylesheets/application.scss */
.cert-ely-text-not-etg {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
}

/* line 358, app/assets/stylesheets/application.scss */
.cert-date-not-etg {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
}

/* line 363, app/assets/stylesheets/application.scss */
.cert-name-not-etg {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 10pt;
}

/* line 369, app/assets/stylesheets/application.scss */
.cert-ssn-not-etg {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 10pt;
}

/*!
 * Cropper.js v1.5.9
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2020-09-10T13:16:21.689Z
 */
/* line 11, vendor/assets/stylesheets/cropper.css */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 24, vendor/assets/stylesheets/cropper.css */
.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

/* line 35, vendor/assets/stylesheets/cropper.css */
.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 47, vendor/assets/stylesheets/cropper.css */
.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

/* line 52, vendor/assets/stylesheets/cropper.css */
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

/* line 57, vendor/assets/stylesheets/cropper.css */
.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

/* line 62, vendor/assets/stylesheets/cropper.css */
.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

/* line 71, vendor/assets/stylesheets/cropper.css */
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

/* line 78, vendor/assets/stylesheets/cropper.css */
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

/* line 87, vendor/assets/stylesheets/cropper.css */
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

/* line 96, vendor/assets/stylesheets/cropper.css */
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

/* line 106, vendor/assets/stylesheets/cropper.css */
.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}

/* line 114, vendor/assets/stylesheets/cropper.css */
.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

/* line 121, vendor/assets/stylesheets/cropper.css */
.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

/* line 128, vendor/assets/stylesheets/cropper.css */
.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

/* line 138, vendor/assets/stylesheets/cropper.css */
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

/* line 144, vendor/assets/stylesheets/cropper.css */
.cropper-line {
  background-color: #39f;
}

/* line 148, vendor/assets/stylesheets/cropper.css */
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

/* line 155, vendor/assets/stylesheets/cropper.css */
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

/* line 162, vendor/assets/stylesheets/cropper.css */
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

/* line 169, vendor/assets/stylesheets/cropper.css */
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

/* line 176, vendor/assets/stylesheets/cropper.css */
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

/* line 183, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

/* line 190, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

/* line 197, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

/* line 204, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

/* line 211, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

/* line 217, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

/* line 223, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

/* line 229, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  /* line 239, vendor/assets/stylesheets/cropper.css */
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  /* line 246, vendor/assets/stylesheets/cropper.css */
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  /* line 253, vendor/assets/stylesheets/cropper.css */
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

/* line 260, vendor/assets/stylesheets/cropper.css */
.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

/* line 272, vendor/assets/stylesheets/cropper.css */
.cropper-invisible {
  opacity: 0;
}

/* line 276, vendor/assets/stylesheets/cropper.css */
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

/* line 280, vendor/assets/stylesheets/cropper.css */
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

/* line 287, vendor/assets/stylesheets/cropper.css */
.cropper-hidden {
  display: none !important;
}

/* line 291, vendor/assets/stylesheets/cropper.css */
.cropper-move {
  cursor: move;
}

/* line 295, vendor/assets/stylesheets/cropper.css */
.cropper-crop {
  cursor: crosshair;
}

/* line 299, vendor/assets/stylesheets/cropper.css */
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
