Skip to content

Instantly share code, notes, and snippets.

@idahopotato1
Created May 24, 2022 08:07
Show Gist options
  • Save idahopotato1/08dc8d4dfc1607c76f35427b8d7b5db6 to your computer and use it in GitHub Desktop.
Save idahopotato1/08dc8d4dfc1607c76f35427b8d7b5db6 to your computer and use it in GitHub Desktop.
jQuery PE Calculator
<br /><div class="container"><div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="row">
<div class="pe-blog-post">
<div class="form-group col-sm-6">
<label for="js-input-revenue" class="control-label small text-muted">Current revenue:</label>
<div class="input-group prefix suffix">
<span class="prefix">$</span>
<span class="suffix">M</span>
<input type="number" tabindex="1" id="js-input-revenue" name="js-input-revenue" class="form-control mrs mbs js-widget-input" pattern="\d*" data-target="#js-in-revenue" value="200">
<div class="input-group-btn">
<button type="button" class="btn btn-default js-decrement" data-step="50" data-dp="0" tabindex="-1">–</button>
<button type="button" class="btn btn-default js-increment" data-step="50" data-dp="0" tabindex="-1">+</button>
</div>
</div>
</div>
<div class="form-group col-sm-6">
<label for="js-input-ebitda-delta" class="control-label small text-muted">EBITDA improvement:</label>
<div class="input-group suffix">
<span class="suffix">%</span>
<input type="number" tabindex="4" id="js-input-ebitda-delta" name="js-input-ebitda-delta" class="form-control mrs mbs js-widget-input" pattern="^(?=.)([+-]?([0-9]*)(\.([0-9]+))?)$" data-target="#js-in-ebitda-delta" value="10">
<div class="input-group-btn">
<button type="button" class="btn btn-default js-decrement" data-step="2" data-dp="0" tabindex="-1">–</button>
<button type="button" class="btn btn-default js-increment" data-step="2" data-dp="0" tabindex="-1">+</button>
</div>
</div>
</div>
<div class="form-group col-sm-6">
<label for="js-input-margin" class="control-label small text-muted">Current EBITDA margin:</label>
<div class="input-group suffix">
<span class="suffix">%</span>
<input type="number" tabindex="2" id="js-input-margin" name="js-input-margin" class="form-control mrs mbs js-widget-input" pattern="^(?=.)([+-]?([0-9]*))$" data-target="#js-in-margin" value="25">
<div class="input-group-btn">
<button type="button" class="btn btn-default js-decrement" data-step="5" data-dp="0" tabindex="-1">–</button>
<button type="button" class="btn btn-default js-increment" data-step="5" data-dp="0" tabindex="-1">+</button>
</div>
</div>
</div>
<div class="col-sm-6 form-group">
<label for="js-input-multiple-delta" class="control-label small text-muted">Multiple improvement:</label>
<div class="input-group suffix">
<span class="suffix">x</span>
<input type="number" tabindex="5" id="js-input-multiple-delta" name="js-input-multiple-delta" class="form-control mrs mbs js-widget-input" pattern="^(?=.)([+-]?([0-9]*)(\.([0-9]+))?)$" data-target="#js-in-multiple-delta" value="0.6">
<div class="input-group-btn">
<button type="button" class="btn btn-default js-decrement" data-step=".1" data-dp="1" tabindex="-1">–</button>
<button type="button" class="btn btn-default js-increment" data-step=".1" data-dp="1" tabindex="-1">+</button>
</div>
</div>
</div>
<div class="col-sm-6 form-group">
<label for="js-input-mutiple-pre" class="control-label small text-muted">Current EBITDA multiple:</label>
<div class="input-group suffix">
<span class="suffix">x</span>
<input type="number" tabindex="3" id="js-input-multiple-pre" name="js-input-multiple-pre" class="form-control mrs mbs js-widget-input" pattern="^(?=.)([+-]?([0-9]*)(\.([0-9]+))?)$" data-target="#js-in-multiple-pre" value="8.0">
<div class="input-group-btn">
<button type="button" class="btn btn-default js-decrement" data-step=".2" data-dp="1" tabindex="-1">–</button>
<button type="button" class="btn btn-default js-increment" data-step=".2" data-dp="1" tabindex="-1">+</button>
</div>
</div>
</div>
<div class="col-sm-6">
<input type="submit" tabindex="6" onClick="recalculate_widget()" class="form-control mts btn btn-primary btn-block" value="Calculate" id="calculate-btn">
</div>
</div>
<br><br>&nbsp;<br>
<table class="table mtl mbl pts pe-blog-post"> <!-- 9 x 4 table -->
<tr>
<th></th>
<th>Pre</th>
<th><strong>Gain</strong></th>
<th>Post</th>
</tr>
<tr>
<td>Revenue</td>
<td>$<var id="js-in-revenue">200</var>M</td>
<td class="text-success">▲ $<var id="js-out-revenue-delta">20</var>M</td>
<td>$<var id="js-out-revenue-post">220</var>M</td>
</tr>
<tr>
<td>Margin</td>
<td><var id="js-in-margin">25</var>%</td>
<td class="subtle">&nbsp;</td>
<td><var id="js-in-margin2">25</var>%</td>
</tr>
<tr>
<td>EBITDA</td>
<td>$<var id="js-out-ebitda-pre">50</var>M</td>
<td class="text-success">▲ <var id="js-in-ebitda-delta">10</var>%</td>
<td>$<var id="js-out-ebitda-post">55</var>M</td>
</tr>
<tr>
<td>Multiple</td>
<td><var id="js-in-multiple-pre">8.0</var></td>
<td class="text-success">▲ <var id="js-in-multiple-delta">0.6</var></td>
<td><var id="js-out-multiple-post">8.6</var></td>
</tr>
<tr>
<td><strong>Market Value</strong></td>
<td><strong>$<var id="js-out-mv-pre">400</var>M</strong></td>
<td class="text-success"><strong>▲ $<var id="js-out-mv-delta">73</var>M</strong></td>
<td><strong>$<var id="js-out-mv-post">473</var>M</strong></td>
</tr>
<tr>
<td style="padding-left: 15px !important">of which</td>
<td class="subtle">&nbsp;</td>
<td class="subtle">&nbsp;</td>
<td class="subtle">&nbsp;</td>
</tr>
<tr>
<td style="padding-left: 15px !important">from EBITDA</td>
<td class="subtle">&nbsp;</td>
<td class="text-success">▲ $<var id="js-out-delta-ebitda">40</var>M</td>
<td class="subtle">&nbsp;</td>
</tr>
<tr>
<td style="padding-left: 15px !important">from Multiple</td>
<td class="subtle">&nbsp;</td>
<td class="text-success">▲ $<var id="js-out-delta-multiple">33</var>M</td>
<td class="subtle">&nbsp;</td>
</tr>
</table>
</div></div></div>

jQuery PE Calculator

Adjust various P&L figures to see the impact on EBITDA and Market Value (based on EBITDA multiples).

Calculator includes handling of rounding to specified (via data- attributes) accuracy.

Also includes +/- buttons to increment and decrement the fields by specified (via data- attributes) values. Buttons includes restriction from negative values.

A Pen by Bryce York on CodePen.

License.

function precise_round(num, decimals) {
var t=Math.pow(10, decimals);
return (Math.round((num * t) + (decimals>0?1:0)*(Math.sign(num) * (10 / Math.pow(100, decimals)))) / t).toFixed(decimals);
}
function recalculate_widget() {
// Handle unprocessed fields
revenue = parseFloat($('#js-input-revenue').val());
margin = parseFloat($('#js-input-margin').val()) / 100;
multiple_pre = parseFloat($('#js-input-multiple-pre').val());
ebitda_delta = parseFloat($('#js-input-ebitda-delta').val()) / 100;
multiple_delta = parseFloat($('#js-input-multiple-delta').val());
// Round independent cell values
revenue = precise_round(revenue,0);
multiple_pre = precise_round(multiple_pre,1);
multiple_delta = precise_round(multiple_delta,1);
ebitda_delta_display = precise_round(ebitda_delta * 100,0);
margin_display = precise_round(margin * 100,0);
// Update independent cells
$('#js-in-revenue').text(revenue);
$('#js-in-margin').text(margin_display);
$('#js-in-margin2').text(margin_display);
$('#js-in-multiple-pre').text(multiple_pre);
$('#js-in-ebitda-delta').text(ebitda_delta_display);
$('#js-in-multiple-delta').text(multiple_delta);
// Force input specificity
$('#js-input-revenue').val(revenue);
$('#js-input-margin').val(margin_display);
$('#js-input-multiple-pre').val(multiple_pre);
$('#js-input-ebitda-delta').val(ebitda_delta_display);
$('#js-input-multiple-delta').val(multiple_delta);
// Calculate and round dependent cells
multiple_post = parseFloat(multiple_pre) + parseFloat(multiple_delta);
multiple_post = precise_round(multiple_post,1);
ebitda = parseFloat(revenue) * margin;
ebitda = precise_round(ebitda,0);
mv_pre = parseFloat(ebitda) * parseFloat(multiple_pre);
mv_pre = precise_round(mv_pre,0);
ebitda_post = parseFloat(ebitda) * (1 + ebitda_delta);
ebitda_post = precise_round(ebitda_post,0);
revenue_post = parseFloat(ebitda_post) / margin;
revenue_post = precise_round(revenue_post,0);
// revenue_delta
revenue_delta = parseFloat(revenue_post) - parseFloat(revenue);
revenue_delta = precise_round(revenue_delta,0);
mv_post = parseFloat(ebitda) * (1 + ebitda_delta) * parseFloat(multiple_post);
mv_post = precise_round(mv_post,0);
mv_delta = parseFloat(mv_post) - parseFloat(mv_pre);
mv_delta = precise_round(mv_delta,0);
// from ebitda
delta_ebitda = ( parseFloat(ebitda_post) - parseFloat(ebitda) ) * parseFloat(multiple_pre);
delta_ebitda = precise_round(delta_ebitda,0);
// from multiple
delta_multiple = parseFloat(mv_delta) - parseFloat(delta_ebitda);
delta_multiple = precise_round(delta_multiple,0);
// Update dependent cells
$('#js-out-multiple-post').text(multiple_post);
$('#js-out-ebitda-pre').text(ebitda);
$('#js-out-mv-pre').text(mv_pre);
$('#js-out-ebitda-post').text(ebitda_post);
$('#js-out-mv-post').text(mv_post);
$('#js-out-revenue-post').text(revenue_post);
$('#js-out-revenue-delta').text(revenue_delta);
$('#js-out-mv-delta').text(mv_delta);
$('#js-out-delta-ebitda').text(delta_ebitda);
$('#js-out-delta-multiple').text(delta_multiple);
// ----------------------------------------------
// $('#js-out-delta-ebitda').text(Math.floor( (ebitda * ebitda_delta) - multiple_pre) );
// $('#js-out-delta-multiple').text(Math.floor( (ebitda * ebitda_delta * multiple_post) - (ebitda * ebitda_delta * multiple_pre) ));
}
function pe_increment() {
obj = $(this).parent().prev('input');
tmp = obj.val();
step = $(this).data('step');
dp = $(this).data('dp');
tmp = parseFloat(tmp);
step = parseFloat(step);
obj.val( precise_round(tmp+step,dp) );
$(this).prev('button').attr('disabled',false);
recalculate_widget();
}
function pe_decrement() {
obj = $(this).parent().prev('input');
tmp = obj.val();
step = $(this).data('step');
dp = $(this).data('dp');
tmp = parseFloat(tmp);
step = parseFloat(step);
if (tmp-step > 0) {
obj.val( precise_round(tmp-step,dp) );
} else if (tmp-step == 0) {
obj.val(0);
$(this).attr('disabled',true);
}
recalculate_widget();
}
$(function() {
$('.js-increment').click(pe_increment);
$('.js-decrement').click(pe_decrement);
$('.js-widget-input').change(function() {
recalculate_widget();
});
});
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
/*
Theme Name: WP Data@Ogilvy
Theme URI: http://www.data-ogilvy.com/
Description: The Data@Ogilvy Wordpress Theme
Author: Bryce York & Dany Milham
Version: 2.0
*/
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/* line 5, vendor/_bootstrap.scss */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%; }
/* line 5, vendor/_bootstrap.scss */
body {
margin: 0; }
/* line 5, vendor/_bootstrap.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
display: block; }
/* line 5, vendor/_bootstrap.scss */
audio, canvas, progress, video {
display: inline-block;
vertical-align: baseline; }
/* line 5, vendor/_bootstrap.scss */
audio:not([controls]) {
display: none;
height: 0; }
/* line 5, vendor/_bootstrap.scss */
[hidden], template {
display: none; }
/* line 5, vendor/_bootstrap.scss */
a {
background: transparent; }
/* line 5, vendor/_bootstrap.scss */
a:active, a:hover {
outline: 0; }
/* line 5, vendor/_bootstrap.scss */
abbr[title] {
border-bottom: 1px dotted; }
/* line 5, vendor/_bootstrap.scss */
b, strong {
font-weight: bold; }
/* line 5, vendor/_bootstrap.scss */
dfn {
font-style: italic; }
/* line 5, vendor/_bootstrap.scss */
h1 {
font-size: 2em;
margin: 0.67em 0; }
/* line 5, vendor/_bootstrap.scss */
mark {
background: #ff0;
color: #000; }
/* line 5, vendor/_bootstrap.scss */
small {
font-size: 80%; }
/* line 5, vendor/_bootstrap.scss */
sub, sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
/* line 5, vendor/_bootstrap.scss */
sup {
top: -0.5em; }
/* line 5, vendor/_bootstrap.scss */
sub {
bottom: -0.25em; }
/* line 5, vendor/_bootstrap.scss */
img {
border: 0; }
/* line 5, vendor/_bootstrap.scss */
svg:not(:root) {
overflow: hidden; }
/* line 5, vendor/_bootstrap.scss */
figure {
margin: 1em 40px; }
/* line 5, vendor/_bootstrap.scss */
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0; }
/* line 5, vendor/_bootstrap.scss */
pre {
overflow: auto; }
/* line 5, vendor/_bootstrap.scss */
code, kbd, pre, samp {
font-family: monospace, monospace;
font-size: 1em; }
/* line 5, vendor/_bootstrap.scss */
button, input, optgroup, select, textarea {
color: inherit;
font: inherit;
margin: 0; }
/* line 5, vendor/_bootstrap.scss */
button {
overflow: visible; }
/* line 5, vendor/_bootstrap.scss */
button, select {
text-transform: none; }
/* line 5, vendor/_bootstrap.scss */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
-webkit-appearance: button;
cursor: pointer; }
/* line 5, vendor/_bootstrap.scss */
button[disabled], html input[disabled] {
cursor: default; }
/* line 5, vendor/_bootstrap.scss */
button::-moz-focus-inner, input::-moz-focus-inner {
border: 0;
padding: 0; }
/* line 5, vendor/_bootstrap.scss */
input {
line-height: normal; }
/* line 5, vendor/_bootstrap.scss */
input[type="checkbox"], input[type="radio"] {
box-sizing: border-box;
padding: 0; }
/* line 5, vendor/_bootstrap.scss */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
height: auto; }
/* line 5, vendor/_bootstrap.scss */
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box; }
/* line 5, vendor/_bootstrap.scss */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/* line 5, vendor/_bootstrap.scss */
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/* line 5, vendor/_bootstrap.scss */
legend {
border: 0;
padding: 0; }
/* line 5, vendor/_bootstrap.scss */
textarea {
overflow: auto; }
/* line 5, vendor/_bootstrap.scss */
optgroup {
font-weight: bold; }
/* line 5, vendor/_bootstrap.scss */
table {
border-collapse: collapse;
border-spacing: 0; }
/* line 5, vendor/_bootstrap.scss */
td, th {
padding: 0; }
@media print {
/* line 5, vendor/_bootstrap.scss */
* {
text-shadow: none !important;
color: #000 !important;
background: transparent !important;
box-shadow: none !important; }
/* line 5, vendor/_bootstrap.scss */
a, a:visited {
text-decoration: underline; }
/* line 5, vendor/_bootstrap.scss */
a[href]:after {
content: " (" attr(href) ")"; }
/* line 5, vendor/_bootstrap.scss */
abbr[title]:after {
content: " (" attr(title) ")"; }
/* line 5, vendor/_bootstrap.scss */
a[href^="javascript:"]:after, a[href^="#"]:after {
content: ""; }
/* line 5, vendor/_bootstrap.scss */
pre, blockquote {
border: 1px solid #999;
page-break-inside: avoid; }
/* line 5, vendor/_bootstrap.scss */
thead {
display: table-header-group; }
/* line 5, vendor/_bootstrap.scss */
tr, img {
page-break-inside: avoid; }
/* line 5, vendor/_bootstrap.scss */
img {
max-width: 100% !important; }
/* line 5, vendor/_bootstrap.scss */
p, h2, h3 {
orphans: 3;
widows: 3; }
/* line 5, vendor/_bootstrap.scss */
h2, h3 {
page-break-after: avoid; }
/* line 5, vendor/_bootstrap.scss */
select {
background: #fff !important; }
/* line 5, vendor/_bootstrap.scss */
.navbar {
display: none; }
/* line 5, vendor/_bootstrap.scss */
.table td, .table th {
background-color: #fff !important; }
/* line 5, vendor/_bootstrap.scss */
.btn > .caret, .dropup > .btn > .caret {
border-top-color: #000 !important; }
/* line 5, vendor/_bootstrap.scss */
.label {
border: 1px solid #000; }
/* line 5, vendor/_bootstrap.scss */
.table {
border-collapse: collapse !important; }
/* line 5, vendor/_bootstrap.scss */
.table-bordered th, .table-bordered td {
border: 1px solid #ddd !important; } }
/* line 5, vendor/_bootstrap.scss */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/* line 5, vendor/_bootstrap.scss */
*:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/* line 5, vendor/_bootstrap.scss */
html {
font-size: 62.5%;
-webkit-tap-highlight-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
input, button, select, textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit; }
/* line 5, vendor/_bootstrap.scss */
a {
color: #e83f41;
text-decoration: none; }
/* line 5, vendor/_bootstrap.scss */
a:hover, a:focus {
color: #c31719;
text-decoration: underline; }
/* line 5, vendor/_bootstrap.scss */
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
/* line 5, vendor/_bootstrap.scss */
figure {
margin: 0; }
/* line 5, vendor/_bootstrap.scss */
img {
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto; }
/* line 5, vendor/_bootstrap.scss */
.img-rounded {
border-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto; }
/* line 5, vendor/_bootstrap.scss */
.img-circle {
border-radius: 50%; }
/* line 5, vendor/_bootstrap.scss */
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eee; }
/* line 5, vendor/_bootstrap.scss */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
/* line 5, vendor/_bootstrap.scss */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
font-weight: normal;
line-height: 1;
color: #999; }
/* line 5, vendor/_bootstrap.scss */
h1, .h1, h2, .h2, h3, .h3 {
margin-top: 20px;
margin-bottom: 10px; }
/* line 5, vendor/_bootstrap.scss */
h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
font-size: 65%; }
/* line 5, vendor/_bootstrap.scss */
h4, .h4, h5, .h5, h6, .h6 {
margin-top: 10px;
margin-bottom: 10px; }
/* line 5, vendor/_bootstrap.scss */
h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
font-size: 75%; }
/* line 5, vendor/_bootstrap.scss */
h1, .h1 {
font-size: 36px; }
/* line 5, vendor/_bootstrap.scss */
h2, .h2 {
font-size: 30px; }
/* line 5, vendor/_bootstrap.scss */
h3, .h3 {
font-size: 24px; }
/* line 5, vendor/_bootstrap.scss */
h4, .h4 {
font-size: 18px; }
/* line 5, vendor/_bootstrap.scss */
h5, .h5 {
font-size: 14px; }
/* line 5, vendor/_bootstrap.scss */
h6, .h6 {
font-size: 12px; }
/* line 5, vendor/_bootstrap.scss */
p {
margin: 0 0 10px; }
/* line 5, vendor/_bootstrap.scss */
.lead {
margin-bottom: 20px;
font-size: 16px;
font-weight: 200;
line-height: 1.4; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.lead {
font-size: 21px; } }
/* line 5, vendor/_bootstrap.scss */
small, .small {
font-size: 85%; }
/* line 5, vendor/_bootstrap.scss */
cite {
font-style: normal; }
/* line 5, vendor/_bootstrap.scss */
.text-left {
text-align: left; }
/* line 5, vendor/_bootstrap.scss */
.text-right {
text-align: right; }
/* line 5, vendor/_bootstrap.scss */
.text-center {
text-align: center; }
/* line 5, vendor/_bootstrap.scss */
.text-justify {
text-align: justify; }
/* line 5, vendor/_bootstrap.scss */
.text-muted {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.text-primary {
color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
a.text-primary:hover {
color: #da1a1c; }
/* line 5, vendor/_bootstrap.scss */
.text-success {
color: #3c763d; }
/* line 5, vendor/_bootstrap.scss */
a.text-success:hover {
color: #2b542c; }
/* line 5, vendor/_bootstrap.scss */
.text-info {
color: #31708f; }
/* line 5, vendor/_bootstrap.scss */
a.text-info:hover {
color: #245269; }
/* line 5, vendor/_bootstrap.scss */
.text-warning {
color: #8a6d3b; }
/* line 5, vendor/_bootstrap.scss */
a.text-warning:hover {
color: #66512c; }
/* line 5, vendor/_bootstrap.scss */
.text-danger {
color: #a94442; }
/* line 5, vendor/_bootstrap.scss */
a.text-danger:hover {
color: #843534; }
/* line 5, vendor/_bootstrap.scss */
.bg-primary {
color: #fff;
background-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
a.bg-primary:hover {
background-color: #da1a1c; }
/* line 5, vendor/_bootstrap.scss */
.bg-success {
background-color: #dff0d8; }
/* line 5, vendor/_bootstrap.scss */
a.bg-success:hover {
background-color: #c1e2b3; }
/* line 5, vendor/_bootstrap.scss */
.bg-info {
background-color: #d9edf7; }
/* line 5, vendor/_bootstrap.scss */
a.bg-info:hover {
background-color: #afd9ee; }
/* line 5, vendor/_bootstrap.scss */
.bg-warning {
background-color: #fcf8e3; }
/* line 5, vendor/_bootstrap.scss */
a.bg-warning:hover {
background-color: #f7ecb5; }
/* line 5, vendor/_bootstrap.scss */
.bg-danger {
background-color: #f2dede; }
/* line 5, vendor/_bootstrap.scss */
a.bg-danger:hover {
background-color: #e4b9b9; }
/* line 5, vendor/_bootstrap.scss */
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eee; }
/* line 5, vendor/_bootstrap.scss */
ul, ol {
margin-top: 0;
margin-bottom: 10px; }
/* line 5, vendor/_bootstrap.scss */
ul ul, ol ul, ul ol, ol ol {
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.list-unstyled {
padding-left: 0;
list-style: none; }
/* line 5, vendor/_bootstrap.scss */
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px; }
/* line 5, vendor/_bootstrap.scss */
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px; }
/* line 5, vendor/_bootstrap.scss */
dl {
margin-top: 0;
margin-bottom: 20px; }
/* line 5, vendor/_bootstrap.scss */
dt, dd {
line-height: 1.42857143; }
/* line 5, vendor/_bootstrap.scss */
dt {
font-weight: bold; }
/* line 5, vendor/_bootstrap.scss */
dd {
margin-left: 0; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
/* line 5, vendor/_bootstrap.scss */
.dl-horizontal dd {
margin-left: 180px; } }
/* line 5, vendor/_bootstrap.scss */
abbr[title], abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #999; }
/* line 5, vendor/_bootstrap.scss */
.initialism {
font-size: 90%;
text-transform: uppercase; }
/* line 5, vendor/_bootstrap.scss */
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eee; }
/* line 5, vendor/_bootstrap.scss */
blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
blockquote footer, blockquote small, blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #999; }
/* line 5, vendor/_bootstrap.scss */
blockquote footer:before, blockquote small:before, blockquote .small:before {
content: '\2014 \00A0'; }
/* line 5, vendor/_bootstrap.scss */
.blockquote-reverse, blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eee;
border-left: 0;
text-align: right; }
/* line 5, vendor/_bootstrap.scss */
.blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before {
content: ''; }
/* line 5, vendor/_bootstrap.scss */
.blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after {
content: '\00A0 \2014'; }
/* line 5, vendor/_bootstrap.scss */
blockquote:before, blockquote:after {
content: ""; }
/* line 5, vendor/_bootstrap.scss */
address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857143; }
/* line 5, vendor/_bootstrap.scss */
code, kbd, pre, samp {
font-family: Menlo,Monaco,Consolas,"Courier New",monospace; }
/* line 5, vendor/_bootstrap.scss */
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
white-space: nowrap;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
kbd {
padding: 2px 4px;
font-size: 90%;
color: #fff;
background-color: #333;
border-radius: 3px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
/* line 5, vendor/_bootstrap.scss */
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.pre-scrollable {
max-height: 340px;
overflow-y: scroll; }
/* line 5, vendor/_bootstrap.scss */
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.container {
width: 750px; } }
@media (min-width: 992px) {
/* line 5, vendor/_bootstrap.scss */
.container {
width: 970px; } }
@media (min-width: 1200px) {
/* line 5, vendor/_bootstrap.scss */
.container {
width: 1170px; } }
/* line 5, vendor/_bootstrap.scss */
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px; }
/* line 5, vendor/_bootstrap.scss */
.row {
margin-left: -15px;
margin-right: -15px; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-12 {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-11 {
width: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-10 {
width: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-9 {
width: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-8 {
width: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-7 {
width: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-6 {
width: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-5 {
width: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-4 {
width: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-3 {
width: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-2 {
width: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-1 {
width: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-12 {
right: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-11 {
right: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-10 {
right: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-9 {
right: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-8 {
right: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-7 {
right: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-6 {
right: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-5 {
right: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-4 {
right: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-3 {
right: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-2 {
right: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-1 {
right: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-pull-0 {
right: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-12 {
left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-11 {
left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-10 {
left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-9 {
left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-8 {
left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-7 {
left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-6 {
left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-5 {
left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-4 {
left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-3 {
left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-2 {
left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-1 {
left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-push-0 {
left: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-12 {
margin-left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-11 {
margin-left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-10 {
margin-left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-9 {
margin-left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-8 {
margin-left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-7 {
margin-left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-6 {
margin-left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-5 {
margin-left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-4 {
margin-left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-3 {
margin-left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-2 {
margin-left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-1 {
margin-left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-xs-offset-0 {
margin-left: 0; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-12 {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-11 {
width: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-10 {
width: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-9 {
width: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-8 {
width: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-7 {
width: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-6 {
width: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-5 {
width: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-4 {
width: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-3 {
width: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-2 {
width: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-1 {
width: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-12 {
right: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-11 {
right: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-10 {
right: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-9 {
right: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-8 {
right: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-7 {
right: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-6 {
right: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-5 {
right: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-4 {
right: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-3 {
right: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-2 {
right: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-1 {
right: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-pull-0 {
right: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-12 {
left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-11 {
left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-10 {
left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-9 {
left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-8 {
left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-7 {
left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-6 {
left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-5 {
left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-4 {
left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-3 {
left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-2 {
left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-1 {
left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-push-0 {
left: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-12 {
margin-left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-11 {
margin-left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-10 {
margin-left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-9 {
margin-left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-8 {
margin-left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-7 {
margin-left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-6 {
margin-left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-5 {
margin-left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-4 {
margin-left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-3 {
margin-left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-2 {
margin-left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-1 {
margin-left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-sm-offset-0 {
margin-left: 0; } }
@media (min-width: 992px) {
/* line 5, vendor/_bootstrap.scss */
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.col-md-12 {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-11 {
width: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-10 {
width: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-9 {
width: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-8 {
width: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-7 {
width: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-6 {
width: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-5 {
width: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-4 {
width: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-3 {
width: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-2 {
width: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-1 {
width: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-12 {
right: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-11 {
right: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-10 {
right: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-9 {
right: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-8 {
right: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-7 {
right: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-6 {
right: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-5 {
right: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-4 {
right: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-3 {
right: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-2 {
right: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-1 {
right: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-pull-0 {
right: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-12 {
left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-11 {
left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-10 {
left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-9 {
left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-8 {
left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-7 {
left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-6 {
left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-5 {
left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-4 {
left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-3 {
left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-2 {
left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-1 {
left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-push-0 {
left: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-12 {
margin-left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-11 {
margin-left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-10 {
margin-left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-9 {
margin-left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-8 {
margin-left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-7 {
margin-left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-6 {
margin-left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-5 {
margin-left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-4 {
margin-left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-3 {
margin-left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-2 {
margin-left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-1 {
margin-left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-md-offset-0 {
margin-left: 0; } }
@media (min-width: 1200px) {
/* line 5, vendor/_bootstrap.scss */
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-12 {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-11 {
width: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-10 {
width: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-9 {
width: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-8 {
width: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-7 {
width: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-6 {
width: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-5 {
width: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-4 {
width: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-3 {
width: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-2 {
width: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-1 {
width: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-12 {
right: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-11 {
right: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-10 {
right: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-9 {
right: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-8 {
right: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-7 {
right: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-6 {
right: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-5 {
right: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-4 {
right: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-3 {
right: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-2 {
right: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-1 {
right: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-pull-0 {
right: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-12 {
left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-11 {
left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-10 {
left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-9 {
left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-8 {
left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-7 {
left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-6 {
left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-5 {
left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-4 {
left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-3 {
left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-2 {
left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-1 {
left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-push-0 {
left: 0; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-12 {
margin-left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-11 {
margin-left: 91.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-10 {
margin-left: 83.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-9 {
margin-left: 75%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-8 {
margin-left: 66.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-7 {
margin-left: 58.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-6 {
margin-left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-5 {
margin-left: 41.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-4 {
margin-left: 33.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-3 {
margin-left: 25%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-2 {
margin-left: 16.66666667%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-1 {
margin-left: 8.33333333%; }
/* line 5, vendor/_bootstrap.scss */
.col-lg-offset-0 {
margin-left: 0; } }
/* line 5, vendor/_bootstrap.scss */
table {
max-width: 100%;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
th {
text-align: left; }
/* line 5, vendor/_bootstrap.scss */
.table {
width: 100%;
margin-bottom: 20px; }
/* line 5, vendor/_bootstrap.scss */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td {
border-top: 0; }
/* line 5, vendor/_bootstrap.scss */
.table > tbody + tbody {
border-top: 2px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.table .table {
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
padding: 5px; }
/* line 5, vendor/_bootstrap.scss */
.table-bordered {
border: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
border: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
border-bottom-width: 2px; }
/* line 5, vendor/_bootstrap.scss */
.table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th {
background-color: #f9f9f9; }
/* line 5, vendor/_bootstrap.scss */
.table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
background-color: #f5f5f5; }
/* line 5, vendor/_bootstrap.scss */
table col[class*="col-"] {
position: static;
float: none;
display: table-column; }
/* line 5, vendor/_bootstrap.scss */
table td[class*="col-"], table th[class*="col-"] {
position: static;
float: none;
display: table-cell; }
/* line 5, vendor/_bootstrap.scss */
.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
background-color: #f5f5f5; }
/* line 5, vendor/_bootstrap.scss */
.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th {
background-color: #e8e8e8; }
/* line 5, vendor/_bootstrap.scss */
.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
background-color: #dff0d8; }
/* line 5, vendor/_bootstrap.scss */
.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th {
background-color: #d0e9c6; }
/* line 5, vendor/_bootstrap.scss */
.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
background-color: #d9edf7; }
/* line 5, vendor/_bootstrap.scss */
.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th {
background-color: #c4e3f3; }
/* line 5, vendor/_bootstrap.scss */
.table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th {
background-color: #fcf8e3; }
/* line 5, vendor/_bootstrap.scss */
.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th {
background-color: #faf2cc; }
/* line 5, vendor/_bootstrap.scss */
.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
background-color: #f2dede; }
/* line 5, vendor/_bootstrap.scss */
.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th {
background-color: #ebcccc; }
@media (max-width: 767px) {
/* line 5, vendor/_bootstrap.scss */
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
overflow-x: scroll;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ddd;
-webkit-overflow-scrolling: touch; }
/* line 5, vendor/_bootstrap.scss */
.table-responsive > .table {
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td {
white-space: nowrap; }
/* line 5, vendor/_bootstrap.scss */
.table-responsive > .table-bordered {
border: 0; }
/* line 5, vendor/_bootstrap.scss */
.table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0; }
/* line 5, vendor/_bootstrap.scss */
.table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0; } }
/* line 5, vendor/_bootstrap.scss */
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0; }
/* line 5, vendor/_bootstrap.scss */
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333;
border: 0;
border-bottom: 1px solid #e5e5e5; }
/* line 5, vendor/_bootstrap.scss */
label {
display: inline-block;
margin-bottom: 5px;
font-weight: bold; }
/* line 5, vendor/_bootstrap.scss */
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/* line 5, vendor/_bootstrap.scss */
input[type="radio"], input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal; }
/* line 5, vendor/_bootstrap.scss */
input[type="file"] {
display: block; }
/* line 5, vendor/_bootstrap.scss */
input[type="range"] {
display: block;
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
select[multiple], select[size] {
height: auto; }
/* line 5, vendor/_bootstrap.scss */
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
/* line 5, vendor/_bootstrap.scss */
output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857143;
color: #555; }
/* line 5, vendor/_bootstrap.scss */
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; }
/* line 5, vendor/_bootstrap.scss */
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
/* line 5, vendor/_bootstrap.scss */
.form-control::-moz-placeholder {
color: #999;
opacity: 1; }
/* line 5, vendor/_bootstrap.scss */
.form-control:-ms-input-placeholder {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.form-control::-webkit-input-placeholder {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
cursor: not-allowed;
background-color: #eee;
opacity: 1; }
/* line 5, vendor/_bootstrap.scss */
textarea.form-control {
height: auto; }
/* line 5, vendor/_bootstrap.scss */
input[type="search"] {
-webkit-appearance: none; }
/* line 5, vendor/_bootstrap.scss */
input[type="date"] {
line-height: 34px; }
/* line 5, vendor/_bootstrap.scss */
.form-group {
margin-bottom: 15px; }
/* line 5, vendor/_bootstrap.scss */
.radio, .checkbox {
display: block;
min-height: 20px;
margin-top: 10px;
margin-bottom: 10px;
padding-left: 20px; }
/* line 5, vendor/_bootstrap.scss */
.radio label, .checkbox label {
display: inline;
font-weight: normal;
cursor: pointer; }
/* line 5, vendor/_bootstrap.scss */
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
float: left;
margin-left: -20px; }
/* line 5, vendor/_bootstrap.scss */
.radio + .radio, .checkbox + .checkbox {
margin-top: -5px; }
/* line 5, vendor/_bootstrap.scss */
.radio-inline, .checkbox-inline {
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer; }
/* line 5, vendor/_bootstrap.scss */
.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px; }
/* line 5, vendor/_bootstrap.scss */
input[type="radio"][disabled], input[type="checkbox"][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline {
cursor: not-allowed; }
/* line 5, vendor/_bootstrap.scss */
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
select.input-sm {
height: 30px;
line-height: 30px; }
/* line 5, vendor/_bootstrap.scss */
textarea.input-sm, select[multiple].input-sm {
height: auto; }
/* line 5, vendor/_bootstrap.scss */
.input-lg {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
select.input-lg {
height: 46px;
line-height: 46px; }
/* line 5, vendor/_bootstrap.scss */
textarea.input-lg, select[multiple].input-lg {
height: auto; }
/* line 5, vendor/_bootstrap.scss */
.has-feedback {
position: relative; }
/* line 5, vendor/_bootstrap.scss */
.has-feedback .form-control {
padding-right: 42.5px; }
/* line 5, vendor/_bootstrap.scss */
.has-feedback .form-control-feedback {
position: absolute;
top: 25px;
right: 0;
display: block;
width: 34px;
height: 34px;
line-height: 34px;
text-align: center; }
/* line 5, vendor/_bootstrap.scss */
.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline {
color: #3c763d; }
/* line 5, vendor/_bootstrap.scss */
.has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
/* line 5, vendor/_bootstrap.scss */
.has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
/* line 5, vendor/_bootstrap.scss */
.has-success .input-group-addon {
color: #3c763d;
border-color: #3c763d;
background-color: #dff0d8; }
/* line 5, vendor/_bootstrap.scss */
.has-success .form-control-feedback {
color: #3c763d; }
/* line 5, vendor/_bootstrap.scss */
.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline {
color: #8a6d3b; }
/* line 5, vendor/_bootstrap.scss */
.has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
/* line 5, vendor/_bootstrap.scss */
.has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
/* line 5, vendor/_bootstrap.scss */
.has-warning .input-group-addon {
color: #8a6d3b;
border-color: #8a6d3b;
background-color: #fcf8e3; }
/* line 5, vendor/_bootstrap.scss */
.has-warning .form-control-feedback {
color: #8a6d3b; }
/* line 5, vendor/_bootstrap.scss */
.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
color: #a94442; }
/* line 5, vendor/_bootstrap.scss */
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
/* line 5, vendor/_bootstrap.scss */
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
/* line 5, vendor/_bootstrap.scss */
.has-error .input-group-addon {
color: #a94442;
border-color: #a94442;
background-color: #f2dede; }
/* line 5, vendor/_bootstrap.scss */
.has-error .form-control-feedback {
color: #a94442; }
/* line 5, vendor/_bootstrap.scss */
.form-control-static {
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.form-inline .input-group > .form-control {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.form-inline .radio, .form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
float: none;
margin-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.form-inline .has-feedback .form-control-feedback {
top: 0; } }
/* line 5, vendor/_bootstrap.scss */
.form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px; }
/* line 5, vendor/_bootstrap.scss */
.form-horizontal .radio, .form-horizontal .checkbox {
min-height: 27px; }
/* line 5, vendor/_bootstrap.scss */
.form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px; }
/* line 5, vendor/_bootstrap.scss */
.form-horizontal .form-control-static {
padding-top: 7px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.form-horizontal .control-label {
text-align: right; } }
/* line 5, vendor/_bootstrap.scss */
.form-horizontal .has-feedback .form-control-feedback {
top: 0;
right: 15px; }
/* line 5, vendor/_bootstrap.scss */
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
/* line 5, vendor/_bootstrap.scss */
.btn:focus, .btn:active:focus, .btn.active:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; }
/* line 5, vendor/_bootstrap.scss */
.btn:hover, .btn:focus {
color: #333;
text-decoration: none; }
/* line 5, vendor/_bootstrap.scss */
.btn:active, .btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
/* line 5, vendor/_bootstrap.scss */
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
cursor: not-allowed;
pointer-events: none;
opacity: .65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc; }
/* line 5, vendor/_bootstrap.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
color: #333;
background-color: #ebebeb;
border-color: #adadad; }
/* line 5, vendor/_bootstrap.scss */
.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
background-image: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
background-color: #fff;
border-color: #ccc; }
/* line 5, vendor/_bootstrap.scss */
.btn-default .badge {
color: #fff;
background-color: #333; }
/* line 5, vendor/_bootstrap.scss */
.btn-primary {
color: #fff;
background-color: #e83f41;
border-color: #e5282a; }
/* line 5, vendor/_bootstrap.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
color: #fff;
background-color: #e31b1e;
border-color: #ba1618; }
/* line 5, vendor/_bootstrap.scss */
.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
background-image: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
background-color: #e83f41;
border-color: #e5282a; }
/* line 5, vendor/_bootstrap.scss */
.btn-primary .badge {
color: #e83f41;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.btn-success {
color: #fff;
background-color: #32ba32;
border-color: #2da62d; }
/* line 5, vendor/_bootstrap.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
color: #fff;
background-color: #299a29;
border-color: #207620; }
/* line 5, vendor/_bootstrap.scss */
.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
background-image: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
background-color: #32ba32;
border-color: #2da62d; }
/* line 5, vendor/_bootstrap.scss */
.btn-success .badge {
color: #32ba32;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.btn-info {
color: #fff;
background-color: #5bc0de;
border-color: #46b8da; }
/* line 5, vendor/_bootstrap.scss */
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
color: #fff;
background-color: #39b3d7;
border-color: #269abc; }
/* line 5, vendor/_bootstrap.scss */
.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
background-image: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
background-color: #5bc0de;
border-color: #46b8da; }
/* line 5, vendor/_bootstrap.scss */
.btn-info .badge {
color: #5bc0de;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.btn-warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236; }
/* line 5, vendor/_bootstrap.scss */
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
color: #fff;
background-color: #ed9c28;
border-color: #d58512; }
/* line 5, vendor/_bootstrap.scss */
.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
background-image: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
background-color: #f0ad4e;
border-color: #eea236; }
/* line 5, vendor/_bootstrap.scss */
.btn-warning .badge {
color: #f0ad4e;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.btn-danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a; }
/* line 5, vendor/_bootstrap.scss */
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
color: #fff;
background-color: #d2322d;
border-color: #ac2925; }
/* line 5, vendor/_bootstrap.scss */
.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
background-image: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
background-color: #d9534f;
border-color: #d43f3a; }
/* line 5, vendor/_bootstrap.scss */
.btn-danger .badge {
color: #d9534f;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.btn-link {
color: #e83f41;
font-weight: normal;
cursor: pointer;
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
border-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.btn-link:hover, .btn-link:focus {
color: #c31719;
text-decoration: underline;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
color: #999;
text-decoration: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-lg, .btn-group-lg > .btn {
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
.btn-sm, .btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.btn-xs, .btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.btn-block {
display: block;
width: 100%;
padding-left: 0;
padding-right: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-block + .btn-block {
margin-top: 5px; }
/* line 5, vendor/_bootstrap.scss */
input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.fade {
opacity: 0;
-webkit-transition: opacity .15s linear;
transition: opacity .15s linear; }
/* line 5, vendor/_bootstrap.scss */
.fade.in {
opacity: 1; }
/* line 5, vendor/_bootstrap.scss */
.collapse {
display: none; }
/* line 5, vendor/_bootstrap.scss */
.collapse.in {
display: block; }
/* line 5, vendor/_bootstrap.scss */
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height .35s ease;
transition: height .35s ease; }
@font-face {
font-family: 'Glyphicons Halflings';
src: url("../fonts/glyphicons-halflings-regular.eot");
src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
/* line 5, vendor/_bootstrap.scss */
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-asterisk:before {
content: "\2a"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-plus:before {
content: "\2b"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-euro:before {
content: "\20ac"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-minus:before {
content: "\2212"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-cloud:before {
content: "\2601"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-envelope:before {
content: "\2709"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-pencil:before {
content: "\270f"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-glass:before {
content: "\e001"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-music:before {
content: "\e002"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-search:before {
content: "\e003"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-heart:before {
content: "\e005"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-star:before {
content: "\e006"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-star-empty:before {
content: "\e007"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-user:before {
content: "\e008"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-film:before {
content: "\e009"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-th-large:before {
content: "\e010"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-th:before {
content: "\e011"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-th-list:before {
content: "\e012"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-ok:before {
content: "\e013"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-remove:before {
content: "\e014"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-zoom-in:before {
content: "\e015"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-zoom-out:before {
content: "\e016"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-off:before {
content: "\e017"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-signal:before {
content: "\e018"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-cog:before {
content: "\e019"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-trash:before {
content: "\e020"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-home:before {
content: "\e021"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-file:before {
content: "\e022"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-time:before {
content: "\e023"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-road:before {
content: "\e024"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-download-alt:before {
content: "\e025"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-download:before {
content: "\e026"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-upload:before {
content: "\e027"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-inbox:before {
content: "\e028"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-play-circle:before {
content: "\e029"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-repeat:before {
content: "\e030"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-refresh:before {
content: "\e031"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-list-alt:before {
content: "\e032"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-lock:before {
content: "\e033"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-flag:before {
content: "\e034"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-headphones:before {
content: "\e035"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-volume-off:before {
content: "\e036"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-volume-down:before {
content: "\e037"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-volume-up:before {
content: "\e038"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-qrcode:before {
content: "\e039"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-barcode:before {
content: "\e040"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-tag:before {
content: "\e041"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-tags:before {
content: "\e042"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-book:before {
content: "\e043"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-bookmark:before {
content: "\e044"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-print:before {
content: "\e045"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-camera:before {
content: "\e046"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-font:before {
content: "\e047"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-bold:before {
content: "\e048"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-italic:before {
content: "\e049"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-text-height:before {
content: "\e050"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-text-width:before {
content: "\e051"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-align-left:before {
content: "\e052"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-align-center:before {
content: "\e053"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-align-right:before {
content: "\e054"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-align-justify:before {
content: "\e055"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-list:before {
content: "\e056"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-indent-left:before {
content: "\e057"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-indent-right:before {
content: "\e058"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-facetime-video:before {
content: "\e059"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-picture:before {
content: "\e060"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-map-marker:before {
content: "\e062"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-adjust:before {
content: "\e063"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-tint:before {
content: "\e064"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-edit:before {
content: "\e065"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-share:before {
content: "\e066"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-check:before {
content: "\e067"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-move:before {
content: "\e068"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-step-backward:before {
content: "\e069"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-fast-backward:before {
content: "\e070"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-backward:before {
content: "\e071"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-play:before {
content: "\e072"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-pause:before {
content: "\e073"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-stop:before {
content: "\e074"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-forward:before {
content: "\e075"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-fast-forward:before {
content: "\e076"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-step-forward:before {
content: "\e077"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-eject:before {
content: "\e078"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-chevron-left:before {
content: "\e079"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-chevron-right:before {
content: "\e080"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-plus-sign:before {
content: "\e081"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-minus-sign:before {
content: "\e082"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-remove-sign:before {
content: "\e083"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-ok-sign:before {
content: "\e084"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-question-sign:before {
content: "\e085"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-info-sign:before {
content: "\e086"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-screenshot:before {
content: "\e087"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-remove-circle:before {
content: "\e088"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-ok-circle:before {
content: "\e089"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-ban-circle:before {
content: "\e090"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-arrow-left:before {
content: "\e091"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-arrow-right:before {
content: "\e092"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-arrow-up:before {
content: "\e093"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-arrow-down:before {
content: "\e094"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-share-alt:before {
content: "\e095"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-resize-full:before {
content: "\e096"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-resize-small:before {
content: "\e097"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-exclamation-sign:before {
content: "\e101"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-gift:before {
content: "\e102"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-leaf:before {
content: "\e103"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-fire:before {
content: "\e104"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-eye-open:before {
content: "\e105"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-eye-close:before {
content: "\e106"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-warning-sign:before {
content: "\e107"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-plane:before {
content: "\e108"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-calendar:before {
content: "\e109"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-random:before {
content: "\e110"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-comment:before {
content: "\e111"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-magnet:before {
content: "\e112"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-chevron-up:before {
content: "\e113"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-chevron-down:before {
content: "\e114"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-retweet:before {
content: "\e115"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-shopping-cart:before {
content: "\e116"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-folder-close:before {
content: "\e117"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-folder-open:before {
content: "\e118"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-resize-vertical:before {
content: "\e119"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-resize-horizontal:before {
content: "\e120"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-hdd:before {
content: "\e121"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-bullhorn:before {
content: "\e122"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-bell:before {
content: "\e123"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-certificate:before {
content: "\e124"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-thumbs-up:before {
content: "\e125"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-thumbs-down:before {
content: "\e126"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-hand-right:before {
content: "\e127"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-hand-left:before {
content: "\e128"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-hand-up:before {
content: "\e129"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-hand-down:before {
content: "\e130"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-circle-arrow-right:before {
content: "\e131"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-circle-arrow-left:before {
content: "\e132"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-circle-arrow-up:before {
content: "\e133"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-circle-arrow-down:before {
content: "\e134"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-globe:before {
content: "\e135"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-wrench:before {
content: "\e136"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-tasks:before {
content: "\e137"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-filter:before {
content: "\e138"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-briefcase:before {
content: "\e139"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-fullscreen:before {
content: "\e140"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-dashboard:before {
content: "\e141"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-paperclip:before {
content: "\e142"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-heart-empty:before {
content: "\e143"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-link:before {
content: "\e144"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-phone:before {
content: "\e145"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-pushpin:before {
content: "\e146"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-usd:before {
content: "\e148"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-gbp:before {
content: "\e149"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sort:before {
content: "\e150"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sort-by-alphabet:before {
content: "\e151"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sort-by-order:before {
content: "\e153"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sort-by-order-alt:before {
content: "\e154"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sort-by-attributes:before {
content: "\e155"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sort-by-attributes-alt:before {
content: "\e156"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-unchecked:before {
content: "\e157"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-expand:before {
content: "\e158"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-collapse-down:before {
content: "\e159"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-collapse-up:before {
content: "\e160"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-log-in:before {
content: "\e161"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-flash:before {
content: "\e162"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-log-out:before {
content: "\e163"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-new-window:before {
content: "\e164"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-record:before {
content: "\e165"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-save:before {
content: "\e166"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-open:before {
content: "\e167"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-saved:before {
content: "\e168"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-import:before {
content: "\e169"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-export:before {
content: "\e170"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-send:before {
content: "\e171"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-floppy-disk:before {
content: "\e172"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-floppy-saved:before {
content: "\e173"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-floppy-remove:before {
content: "\e174"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-floppy-save:before {
content: "\e175"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-floppy-open:before {
content: "\e176"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-credit-card:before {
content: "\e177"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-transfer:before {
content: "\e178"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-cutlery:before {
content: "\e179"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-header:before {
content: "\e180"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-compressed:before {
content: "\e181"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-earphone:before {
content: "\e182"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-phone-alt:before {
content: "\e183"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-tower:before {
content: "\e184"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-stats:before {
content: "\e185"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sd-video:before {
content: "\e186"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-hd-video:before {
content: "\e187"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-subtitles:before {
content: "\e188"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sound-stereo:before {
content: "\e189"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sound-dolby:before {
content: "\e190"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sound-5-1:before {
content: "\e191"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sound-6-1:before {
content: "\e192"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-sound-7-1:before {
content: "\e193"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-copyright-mark:before {
content: "\e194"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-registration-mark:before {
content: "\e195"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-cloud-download:before {
content: "\e197"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-cloud-upload:before {
content: "\e198"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-tree-conifer:before {
content: "\e199"; }
/* line 5, vendor/_bootstrap.scss */
.glyphicon-tree-deciduous:before {
content: "\e200"; }
/* line 5, vendor/_bootstrap.scss */
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px solid;
border-right: 4px solid transparent;
border-left: 4px solid transparent; }
/* line 5, vendor/_bootstrap.scss */
.dropdown {
position: relative; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-toggle:focus {
outline: 0; }
/* line 5, vendor/_bootstrap.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;
font-size: 14px;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu.pull-right {
right: 0;
left: auto; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333;
white-space: nowrap; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
text-decoration: none;
color: #262626;
background-color: #f5f5f5; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
outline: 0;
background-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
color: #999; }
/* line 5, vendor/_bootstrap.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: not-allowed; }
/* line 5, vendor/_bootstrap.scss */
.open > .dropdown-menu {
display: block; }
/* line 5, vendor/_bootstrap.scss */
.open > a {
outline: 0; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu-right {
left: auto;
right: 0; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-menu-left {
left: 0;
right: auto; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857143;
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990; }
/* line 5, vendor/_bootstrap.scss */
.pull-right > .dropdown-menu {
right: 0;
left: auto; }
/* line 5, vendor/_bootstrap.scss */
.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px solid;
content: ""; }
/* line 5, vendor/_bootstrap.scss */
.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 1px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-right .dropdown-menu {
left: auto;
right: 0; }
/* line 5, vendor/_bootstrap.scss */
.navbar-right .dropdown-menu-left {
left: 0;
right: auto; } }
/* line 5, vendor/_bootstrap.scss */
.btn-group, .btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn, .btn-group-vertical > .btn {
position: relative;
float: left; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
z-index: 2; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
outline: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
margin-left: -1px; }
/* line 5, vendor/_bootstrap.scss */
.btn-toolbar {
margin-left: -5px; }
/* line 5, vendor/_bootstrap.scss */
.btn-toolbar .btn-group, .btn-toolbar .input-group {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
margin-left: 5px; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn:first-child {
margin-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn-group {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn-group:last-child > .btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
outline: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px; }
/* line 5, vendor/_bootstrap.scss */
.btn-group > .btn-lg + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px; }
/* line 5, vendor/_bootstrap.scss */
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
/* line 5, vendor/_bootstrap.scss */
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none; }
/* line 5, vendor/_bootstrap.scss */
.btn .caret {
margin-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-lg .caret {
border-width: 5px 5px 0;
border-bottom-width: 0; }
/* line 5, vendor/_bootstrap.scss */
.dropup .btn-lg .caret {
border-width: 0 5px 5px; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn-group > .btn {
float: none; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-bottom-left-radius: 4px;
border-top-right-radius: 0;
border-top-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-justified > .btn, .btn-group-justified > .btn-group {
float: none;
display: table-cell;
width: 1%; }
/* line 5, vendor/_bootstrap.scss */
.btn-group-justified > .btn-group .btn {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
[data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] {
display: none; }
/* line 5, vendor/_bootstrap.scss */
.input-group {
position: relative;
display: table;
border-collapse: separate; }
/* line 5, vendor/_bootstrap.scss */
.input-group[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
height: 46px;
line-height: 46px; }
/* line 5, vendor/_bootstrap.scss */
textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn {
height: auto; }
/* line 5, vendor/_bootstrap.scss */
.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
height: 30px;
line-height: 30px; }
/* line 5, vendor/_bootstrap.scss */
textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon, .input-group-btn, .input-group .form-control {
display: table-cell; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon, .input-group-btn {
width: 1%;
white-space: nowrap;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon {
padding: 6px 12px;
font-size: 14px;
font-weight: normal;
line-height: 1;
color: #555;
text-align: center;
background-color: #eee;
border: 1px solid #ccc;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon.input-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon.input-lg {
padding: 10px 16px;
font-size: 18px;
border-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
margin-top: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon:first-child {
border-right: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group-addon:last-child {
border-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap; }
/* line 5, vendor/_bootstrap.scss */
.input-group-btn > .btn {
position: relative; }
/* line 5, vendor/_bootstrap.scss */
.input-group-btn > .btn + .btn {
margin-left: -1px; }
/* line 5, vendor/_bootstrap.scss */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
z-index: 2; }
/* line 5, vendor/_bootstrap.scss */
.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
margin-right: -1px; }
/* line 5, vendor/_bootstrap.scss */
.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
margin-left: -1px; }
/* line 5, vendor/_bootstrap.scss */
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none; }
/* line 5, vendor/_bootstrap.scss */
.nav > li {
position: relative;
display: block; }
/* line 5, vendor/_bootstrap.scss */
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px; }
/* line 5, vendor/_bootstrap.scss */
.nav > li > a:hover, .nav > li > a:focus {
text-decoration: none;
background-color: #eee; }
/* line 5, vendor/_bootstrap.scss */
.nav > li.disabled > a {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
color: #999;
text-decoration: none;
background-color: transparent;
cursor: not-allowed; }
/* line 5, vendor/_bootstrap.scss */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
background-color: #eee;
border-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5; }
/* line 5, vendor/_bootstrap.scss */
.nav > li > a > img {
max-width: none; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs {
border-bottom: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs > li {
float: left;
margin-bottom: -1px; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 4px 4px 0 0; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs > li > a:hover {
border-color: #eee #eee #ddd; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
color: #555;
background-color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
cursor: default; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > li {
float: none; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
margin-bottom: 0; } }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff; } }
/* line 5, vendor/_bootstrap.scss */
.nav-pills > li {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.nav-pills > li > a {
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.nav-pills > li + li {
margin-left: 2px; }
/* line 5, vendor/_bootstrap.scss */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
color: #fff;
background-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.nav-stacked > li {
float: none; }
/* line 5, vendor/_bootstrap.scss */
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.nav-justified {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.nav-justified > li {
float: none; }
/* line 5, vendor/_bootstrap.scss */
.nav-justified > li > a {
text-align: center;
margin-bottom: 5px; }
/* line 5, vendor/_bootstrap.scss */
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.nav-justified > li {
display: table-cell;
width: 1%; }
/* line 5, vendor/_bootstrap.scss */
.nav-justified > li > a {
margin-bottom: 0; } }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs-justified {
border-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
border: 1px solid #ddd; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.nav-tabs-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 4px 4px 0 0; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus {
border-bottom-color: #fff; } }
/* line 5, vendor/_bootstrap.scss */
.tab-content > .tab-pane {
display: none; }
/* line 5, vendor/_bootstrap.scss */
.tab-content > .active {
display: block; }
/* line 5, vendor/_bootstrap.scss */
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar {
border-radius: 4px; } }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-header {
float: left; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-collapse {
max-height: 340px;
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch; }
/* line 5, vendor/_bootstrap.scss */
.navbar-collapse.in {
overflow-y: auto; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none; }
/* line 5, vendor/_bootstrap.scss */
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important; }
/* line 5, vendor/_bootstrap.scss */
.navbar-collapse.in {
overflow-y: visible; }
/* line 5, vendor/_bootstrap.scss */
.navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0; } }
/* line 5, vendor/_bootstrap.scss */
.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-static-top {
border-radius: 0; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-fixed-top, .navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-fixed-top, .navbar-fixed-bottom {
border-radius: 0; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0; }
/* line 5, vendor/_bootstrap.scss */
.navbar-brand {
float: left;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
height: 50px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-brand:hover, .navbar-brand:focus {
text-decoration: none; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
margin-left: -15px; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-toggle:focus {
outline: none; }
/* line 5, vendor/_bootstrap.scss */
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-toggle {
display: none; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav {
margin: 7.5px -15px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px; }
@media (max-width: 767px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none; }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none; } }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-nav {
float: left;
margin: 0; }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav > li {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav.navbar-right:last-child {
margin-right: -15px; } }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-left {
float: left !important; }
/* line 5, vendor/_bootstrap.scss */
.navbar-right {
float: right !important; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 8px;
margin-bottom: 8px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.navbar-form .input-group > .form-control {
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.navbar-form .radio, .navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
vertical-align: middle; }
/* line 5, vendor/_bootstrap.scss */
.navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] {
float: none;
margin-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.navbar-form .has-feedback .form-control-feedback {
top: 0; } }
@media (max-width: 767px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-form .form-group {
margin-bottom: 5px; } }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none; }
/* line 5, vendor/_bootstrap.scss */
.navbar-form.navbar-right:last-child {
margin-right: -15px; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.navbar-btn {
margin-top: 8px;
margin-bottom: 8px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-text {
margin-top: 15px;
margin-bottom: 15px; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px; }
/* line 5, vendor/_bootstrap.scss */
.navbar-text.navbar-right:last-child {
margin-right: 0; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-brand {
color: #777; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-text {
color: #777; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav > li > a {
color: #777; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-toggle {
border-color: #ddd; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: #ddd; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-toggle .icon-bar {
background-color: #888; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
border-color: #e7e7e7; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555; }
@media (max-width: 767px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-link {
color: #777; }
/* line 5, vendor/_bootstrap.scss */
.navbar-default .navbar-link:hover {
color: #333; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse {
background-color: #222;
border-color: #080808; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-brand {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-text {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav > li > a {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #080808; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-toggle {
border-color: #333; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
background-color: #333; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
border-color: #101010; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
background-color: #080808;
color: #fff; }
@media (max-width: 767px) {
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #080808; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent; } }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-link {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.navbar-inverse .navbar-link:hover {
color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.breadcrumb > li {
display: inline-block; }
/* line 5, vendor/_bootstrap.scss */
.breadcrumb > li + li:before {
content: "/\00a0";
padding: 0 5px;
color: #ccc; }
/* line 5, vendor/_bootstrap.scss */
.breadcrumb > .active {
color: #999; }
/* line 5, vendor/_bootstrap.scss */
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.pagination > li {
display: inline; }
/* line 5, vendor/_bootstrap.scss */
.pagination > li > a, .pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.42857143;
text-decoration: none;
color: #e83f41;
background-color: #fff;
border: 1px solid #ddd;
margin-left: -1px; }
/* line 5, vendor/_bootstrap.scss */
.pagination > li:first-child > a, .pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.pagination > li:last-child > a, .pagination > li:last-child > span {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
color: #c31719;
background-color: #eee;
border-color: #ddd; }
/* line 5, vendor/_bootstrap.scss */
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
z-index: 2;
color: #fff;
background-color: #e83f41;
border-color: #e83f41;
cursor: default; }
/* line 5, vendor/_bootstrap.scss */
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
color: #999;
background-color: #fff;
border-color: #ddd;
cursor: not-allowed; }
/* line 5, vendor/_bootstrap.scss */
.pagination-lg > li > a, .pagination-lg > li > span {
padding: 10px 16px;
font-size: 18px; }
/* line 5, vendor/_bootstrap.scss */
.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
border-bottom-left-radius: 6px;
border-top-left-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
border-bottom-right-radius: 6px;
border-top-right-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
.pagination-sm > li > a, .pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px; }
/* line 5, vendor/_bootstrap.scss */
.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.pager {
padding-left: 0;
margin: 20px 0;
list-style: none;
text-align: center; }
/* line 5, vendor/_bootstrap.scss */
.pager li {
display: inline; }
/* line 5, vendor/_bootstrap.scss */
.pager li > a, .pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 15px; }
/* line 5, vendor/_bootstrap.scss */
.pager li > a:hover, .pager li > a:focus {
text-decoration: none;
background-color: #eee; }
/* line 5, vendor/_bootstrap.scss */
.pager .next > a, .pager .next > span {
float: right; }
/* line 5, vendor/_bootstrap.scss */
.pager .previous > a, .pager .previous > span {
float: left; }
/* line 5, vendor/_bootstrap.scss */
.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
color: #999;
background-color: #fff;
cursor: not-allowed; }
/* line 5, vendor/_bootstrap.scss */
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em; }
/* line 5, vendor/_bootstrap.scss */
.label[href]:hover, .label[href]:focus {
color: #fff;
text-decoration: none;
cursor: pointer; }
/* line 5, vendor/_bootstrap.scss */
.label:empty {
display: none; }
/* line 5, vendor/_bootstrap.scss */
.btn .label {
position: relative;
top: -1px; }
/* line 5, vendor/_bootstrap.scss */
.label-default {
background-color: #999; }
/* line 5, vendor/_bootstrap.scss */
.label-default[href]:hover, .label-default[href]:focus {
background-color: #808080; }
/* line 5, vendor/_bootstrap.scss */
.label-primary {
background-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.label-primary[href]:hover, .label-primary[href]:focus {
background-color: #da1a1c; }
/* line 5, vendor/_bootstrap.scss */
.label-success {
background-color: #32ba32; }
/* line 5, vendor/_bootstrap.scss */
.label-success[href]:hover, .label-success[href]:focus {
background-color: #279227; }
/* line 5, vendor/_bootstrap.scss */
.label-info {
background-color: #5bc0de; }
/* line 5, vendor/_bootstrap.scss */
.label-info[href]:hover, .label-info[href]:focus {
background-color: #31b0d5; }
/* line 5, vendor/_bootstrap.scss */
.label-warning {
background-color: #f0ad4e; }
/* line 5, vendor/_bootstrap.scss */
.label-warning[href]:hover, .label-warning[href]:focus {
background-color: #ec971f; }
/* line 5, vendor/_bootstrap.scss */
.label-danger {
background-color: #d9534f; }
/* line 5, vendor/_bootstrap.scss */
.label-danger[href]:hover, .label-danger[href]:focus {
background-color: #c9302c; }
/* line 5, vendor/_bootstrap.scss */
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
color: #fff;
line-height: 1;
vertical-align: baseline;
white-space: nowrap;
text-align: center;
background-color: #999;
border-radius: 10px; }
/* line 5, vendor/_bootstrap.scss */
.badge:empty {
display: none; }
/* line 5, vendor/_bootstrap.scss */
.btn .badge {
position: relative;
top: -1px; }
/* line 5, vendor/_bootstrap.scss */
.btn-xs .badge {
top: 0;
padding: 1px 5px; }
/* line 5, vendor/_bootstrap.scss */
a.badge:hover, a.badge:focus {
color: #fff;
text-decoration: none;
cursor: pointer; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
color: #e83f41;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.nav-pills > li > a > .badge {
margin-left: 3px; }
/* line 5, vendor/_bootstrap.scss */
.jumbotron {
padding: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eee; }
/* line 5, vendor/_bootstrap.scss */
.jumbotron h1, .jumbotron .h1 {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
.jumbotron p {
margin-bottom: 15px;
font-size: 21px;
font-weight: 200; }
/* line 5, vendor/_bootstrap.scss */
.container .jumbotron {
border-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
.jumbotron .container {
max-width: 100%; }
@media screen and (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.jumbotron {
padding-top: 48px;
padding-bottom: 48px; }
/* line 5, vendor/_bootstrap.scss */
.container .jumbotron {
padding-left: 60px;
padding-right: 60px; }
/* line 5, vendor/_bootstrap.scss */
.jumbotron h1, .jumbotron .h1 {
font-size: 63px; } }
/* line 5, vendor/_bootstrap.scss */
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out; }
/* line 5, vendor/_bootstrap.scss */
.thumbnail > img, .thumbnail a > img {
margin-left: auto;
margin-right: auto; }
/* line 5, vendor/_bootstrap.scss */
a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
border-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.thumbnail .caption {
padding: 9px;
color: #333; }
/* line 5, vendor/_bootstrap.scss */
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.alert h4 {
margin-top: 0;
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
.alert .alert-link {
font-weight: bold; }
/* line 5, vendor/_bootstrap.scss */
.alert > p, .alert > ul {
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.alert > p + p {
margin-top: 5px; }
/* line 5, vendor/_bootstrap.scss */
.alert-dismissable {
padding-right: 35px; }
/* line 5, vendor/_bootstrap.scss */
.alert-dismissable .close {
position: relative;
top: -2px;
right: -21px;
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #3c763d; }
/* line 5, vendor/_bootstrap.scss */
.alert-success hr {
border-top-color: #c9e2b3; }
/* line 5, vendor/_bootstrap.scss */
.alert-success .alert-link {
color: #2b542c; }
/* line 5, vendor/_bootstrap.scss */
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #31708f; }
/* line 5, vendor/_bootstrap.scss */
.alert-info hr {
border-top-color: #a6e1ec; }
/* line 5, vendor/_bootstrap.scss */
.alert-info .alert-link {
color: #245269; }
/* line 5, vendor/_bootstrap.scss */
.alert-warning {
background-color: #fcf8e3;
border-color: #faebcc;
color: #8a6d3b; }
/* line 5, vendor/_bootstrap.scss */
.alert-warning hr {
border-top-color: #f7e1b5; }
/* line 5, vendor/_bootstrap.scss */
.alert-warning .alert-link {
color: #66512c; }
/* line 5, vendor/_bootstrap.scss */
.alert-danger {
background-color: #f2dede;
border-color: #ebccd1;
color: #a94442; }
/* line 5, vendor/_bootstrap.scss */
.alert-danger hr {
border-top-color: #e4b9c0; }
/* line 5, vendor/_bootstrap.scss */
.alert-danger .alert-link {
color: #843534; }
@-webkit-keyframes progress-bar-stripes {
/* line 5, vendor/_bootstrap.scss */
from {
background-position: 40px 0; }
/* line 5, vendor/_bootstrap.scss */
to {
background-position: 0 0; } }
@keyframes progress-bar-stripes {
/* line 5, vendor/_bootstrap.scss */
from {
background-position: 40px 0; }
/* line 5, vendor/_bootstrap.scss */
to {
background-position: 0 0; } }
/* line 5, vendor/_bootstrap.scss */
.progress {
overflow: hidden;
height: 20px;
margin-bottom: 20px;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
/* line 5, vendor/_bootstrap.scss */
.progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 20px;
color: #fff;
text-align: center;
background-color: #e83f41;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width .6s ease;
transition: width .6s ease; }
/* line 5, vendor/_bootstrap.scss */
.progress-striped .progress-bar {
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 5, vendor/_bootstrap.scss */
.progress.active .progress-bar {
-webkit-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite; }
/* line 5, vendor/_bootstrap.scss */
.progress-bar-success {
background-color: #32ba32; }
/* line 5, vendor/_bootstrap.scss */
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: 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 5, vendor/_bootstrap.scss */
.progress-bar-info {
background-color: #5bc0de; }
/* line 5, vendor/_bootstrap.scss */
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: 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 5, vendor/_bootstrap.scss */
.progress-bar-warning {
background-color: #f0ad4e; }
/* line 5, vendor/_bootstrap.scss */
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: 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 5, vendor/_bootstrap.scss */
.progress-bar-danger {
background-color: #d9534f; }
/* line 5, vendor/_bootstrap.scss */
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: 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 5, vendor/_bootstrap.scss */
.media, .media-body {
overflow: hidden;
zoom: 1; }
/* line 5, vendor/_bootstrap.scss */
.media, .media .media {
margin-top: 15px; }
/* line 5, vendor/_bootstrap.scss */
.media:first-child {
margin-top: 0; }
/* line 5, vendor/_bootstrap.scss */
.media-object {
display: block; }
/* line 5, vendor/_bootstrap.scss */
.media-heading {
margin: 0 0 5px; }
/* line 5, vendor/_bootstrap.scss */
.media > .pull-left {
margin-right: 10px; }
/* line 5, vendor/_bootstrap.scss */
.media > .pull-right {
margin-left: 10px; }
/* line 5, vendor/_bootstrap.scss */
.media-list {
padding-left: 0;
list-style: none; }
/* line 5, vendor/_bootstrap.scss */
.list-group {
margin-bottom: 20px;
padding-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item:first-child {
border-top-right-radius: 4px;
border-top-left-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item > .badge {
float: right; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item > .badge + .badge {
margin-right: 5px; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item {
color: #555; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item .list-group-item-heading {
color: #333; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item:hover, a.list-group-item:focus {
text-decoration: none;
background-color: #f5f5f5; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {
z-index: 2;
color: #fff;
background-color: #e83f41;
border-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text {
color: #fef5f5; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item-success {
color: #3c763d;
background-color: #dff0d8; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-success {
color: #3c763d; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-success .list-group-item-heading {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-success:hover, a.list-group-item-success:focus {
color: #3c763d;
background-color: #d0e9c6; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus {
color: #fff;
background-color: #3c763d;
border-color: #3c763d; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item-info {
color: #31708f;
background-color: #d9edf7; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-info {
color: #31708f; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-info .list-group-item-heading {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-info:hover, a.list-group-item-info:focus {
color: #31708f;
background-color: #c4e3f3; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus {
color: #fff;
background-color: #31708f;
border-color: #31708f; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item-warning {
color: #8a6d3b;
background-color: #fcf8e3; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-warning {
color: #8a6d3b; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-warning .list-group-item-heading {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-warning:hover, a.list-group-item-warning:focus {
color: #8a6d3b;
background-color: #faf2cc; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus {
color: #fff;
background-color: #8a6d3b;
border-color: #8a6d3b; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item-danger {
color: #a94442;
background-color: #f2dede; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-danger {
color: #a94442; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-danger .list-group-item-heading {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-danger:hover, a.list-group-item-danger:focus {
color: #a94442;
background-color: #ebcccc; }
/* line 5, vendor/_bootstrap.scss */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus {
color: #fff;
background-color: #a94442;
border-color: #a94442; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item-heading {
margin-top: 0;
margin-bottom: 5px; }
/* line 5, vendor/_bootstrap.scss */
.list-group-item-text {
margin-bottom: 0;
line-height: 1.3; }
/* line 5, vendor/_bootstrap.scss */
.panel {
margin-bottom: 20px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
/* line 5, vendor/_bootstrap.scss */
.panel-body {
padding: 15px; }
/* line 5, vendor/_bootstrap.scss */
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel-heading > .dropdown .dropdown-toggle {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 16px;
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
.panel-title > a {
color: inherit; }
/* line 5, vendor/_bootstrap.scss */
.panel-footer {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .list-group {
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table, .panel > .table-responsive > .table {
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
border-top-right-radius: 3px;
border-top-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.panel > .panel-body + .table, .panel > .panel-body + .table-responsive {
border-top: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
border-top: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
border: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel > .table-responsive {
border: 0;
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel-group {
margin-bottom: 20px; }
/* line 5, vendor/_bootstrap.scss */
.panel-group .panel {
margin-bottom: 0;
border-radius: 4px;
overflow: hidden; }
/* line 5, vendor/_bootstrap.scss */
.panel-group .panel + .panel {
margin-top: 5px; }
/* line 5, vendor/_bootstrap.scss */
.panel-group .panel-heading {
border-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel-group .panel-heading + .panel-collapse .panel-body {
border-top: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.panel-group .panel-footer {
border-top: 0; }
/* line 5, vendor/_bootstrap.scss */
.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #ddd; }
/* line 5, vendor/_bootstrap.scss */
.panel-default {
border-color: #ddd; }
/* line 5, vendor/_bootstrap.scss */
.panel-default > .panel-heading {
color: #333;
background-color: #f5f5f5;
border-color: #ddd; }
/* line 5, vendor/_bootstrap.scss */
.panel-default > .panel-heading + .panel-collapse .panel-body {
border-top-color: #ddd; }
/* line 5, vendor/_bootstrap.scss */
.panel-default > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #ddd; }
/* line 5, vendor/_bootstrap.scss */
.panel-primary {
border-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.panel-primary > .panel-heading {
color: #fff;
background-color: #e83f41;
border-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.panel-primary > .panel-heading + .panel-collapse .panel-body {
border-top-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.panel-primary > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #e83f41; }
/* line 5, vendor/_bootstrap.scss */
.panel-success {
border-color: #d6e9c6; }
/* line 5, vendor/_bootstrap.scss */
.panel-success > .panel-heading {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6; }
/* line 5, vendor/_bootstrap.scss */
.panel-success > .panel-heading + .panel-collapse .panel-body {
border-top-color: #d6e9c6; }
/* line 5, vendor/_bootstrap.scss */
.panel-success > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #d6e9c6; }
/* line 5, vendor/_bootstrap.scss */
.panel-info {
border-color: #bce8f1; }
/* line 5, vendor/_bootstrap.scss */
.panel-info > .panel-heading {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1; }
/* line 5, vendor/_bootstrap.scss */
.panel-info > .panel-heading + .panel-collapse .panel-body {
border-top-color: #bce8f1; }
/* line 5, vendor/_bootstrap.scss */
.panel-info > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #bce8f1; }
/* line 5, vendor/_bootstrap.scss */
.panel-warning {
border-color: #faebcc; }
/* line 5, vendor/_bootstrap.scss */
.panel-warning > .panel-heading {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc; }
/* line 5, vendor/_bootstrap.scss */
.panel-warning > .panel-heading + .panel-collapse .panel-body {
border-top-color: #faebcc; }
/* line 5, vendor/_bootstrap.scss */
.panel-warning > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #faebcc; }
/* line 5, vendor/_bootstrap.scss */
.panel-danger {
border-color: #ebccd1; }
/* line 5, vendor/_bootstrap.scss */
.panel-danger > .panel-heading {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1; }
/* line 5, vendor/_bootstrap.scss */
.panel-danger > .panel-heading + .panel-collapse .panel-body {
border-top-color: #ebccd1; }
/* line 5, vendor/_bootstrap.scss */
.panel-danger > .panel-footer + .panel-collapse .panel-body {
border-bottom-color: #ebccd1; }
/* line 5, vendor/_bootstrap.scss */
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
/* line 5, vendor/_bootstrap.scss */
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15); }
/* line 5, vendor/_bootstrap.scss */
.well-lg {
padding: 24px;
border-radius: 6px; }
/* line 5, vendor/_bootstrap.scss */
.well-sm {
padding: 9px;
border-radius: 3px; }
/* line 5, vendor/_bootstrap.scss */
.close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: .2;
filter: alpha(opacity=20); }
/* line 5, vendor/_bootstrap.scss */
.close:hover, .close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: .5;
filter: alpha(opacity=50); }
/* line 5, vendor/_bootstrap.scss */
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none; }
/* line 5, vendor/_bootstrap.scss */
.modal-open {
overflow: hidden; }
/* line 5, vendor/_bootstrap.scss */
.modal {
display: none;
overflow: auto;
overflow-y: scroll;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0; }
/* line 5, vendor/_bootstrap.scss */
.modal.fade .modal-dialog {
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
transform: translate(0, -25%);
-webkit-transition: -webkit-transform 0.3s ease-out;
-moz-transition: -moz-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out; }
/* line 5, vendor/_bootstrap.scss */
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0); }
/* line 5, vendor/_bootstrap.scss */
.modal-dialog {
position: relative;
width: auto;
margin: 10px; }
/* line 5, vendor/_bootstrap.scss */
.modal-content {
position: relative;
background-color: #fff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
background-clip: padding-box;
outline: none; }
/* line 5, vendor/_bootstrap.scss */
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.modal-backdrop.fade {
opacity: 0;
filter: alpha(opacity=0); }
/* line 5, vendor/_bootstrap.scss */
.modal-backdrop.in {
opacity: .5;
filter: alpha(opacity=50); }
/* line 5, vendor/_bootstrap.scss */
.modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5;
min-height: 16.42857143px; }
/* line 5, vendor/_bootstrap.scss */
.modal-header .close {
margin-top: -2px; }
/* line 5, vendor/_bootstrap.scss */
.modal-title {
margin: 0;
line-height: 1.42857143; }
/* line 5, vendor/_bootstrap.scss */
.modal-body {
position: relative;
padding: 20px; }
/* line 5, vendor/_bootstrap.scss */
.modal-footer {
margin-top: 15px;
padding: 19px 20px 20px;
text-align: right;
border-top: 1px solid #e5e5e5; }
/* line 5, vendor/_bootstrap.scss */
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0; }
/* line 5, vendor/_bootstrap.scss */
.modal-footer .btn-group .btn + .btn {
margin-left: -1px; }
/* line 5, vendor/_bootstrap.scss */
.modal-footer .btn-block + .btn-block {
margin-left: 0; }
@media (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.modal-dialog {
width: 600px;
margin: 30px auto; }
/* line 5, vendor/_bootstrap.scss */
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
/* line 5, vendor/_bootstrap.scss */
.modal-sm {
width: 300px; } }
@media (min-width: 992px) {
/* line 5, vendor/_bootstrap.scss */
.modal-lg {
width: 900px; } }
/* line 5, vendor/_bootstrap.scss */
.tooltip {
position: absolute;
z-index: 1030;
display: block;
visibility: visible;
font-size: 12px;
line-height: 1.4;
opacity: 0;
filter: alpha(opacity=0); }
/* line 5, vendor/_bootstrap.scss */
.tooltip.in {
opacity: .9;
filter: alpha(opacity=90); }
/* line 5, vendor/_bootstrap.scss */
.tooltip.top {
margin-top: -3px;
padding: 5px 0; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.right {
margin-left: 3px;
padding: 0 5px; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.left {
margin-left: -3px;
padding: 0 5px; }
/* line 5, vendor/_bootstrap.scss */
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
text-decoration: none;
background-color: #000;
border-radius: 4px; }
/* line 5, vendor/_bootstrap.scss */
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.top-left .tooltip-arrow {
bottom: 0;
left: 5px;
border-width: 5px 5px 0;
border-top-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.top-right .tooltip-arrow {
bottom: 0;
right: 5px;
border-width: 5px 5px 0;
border-top-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.bottom-left .tooltip-arrow {
top: 0;
left: 5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
/* line 5, vendor/_bootstrap.scss */
.tooltip.bottom-right .tooltip-arrow {
top: 0;
right: 5px;
border-width: 0 5px 5px;
border-bottom-color: #000; }
/* line 5, vendor/_bootstrap.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;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
white-space: normal; }
/* line 5, vendor/_bootstrap.scss */
.popover.top {
margin-top: -10px; }
/* line 5, vendor/_bootstrap.scss */
.popover.right {
margin-left: 10px; }
/* line 5, vendor/_bootstrap.scss */
.popover.bottom {
margin-top: 10px; }
/* line 5, vendor/_bootstrap.scss */
.popover.left {
margin-left: -10px; }
/* line 5, vendor/_bootstrap.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 5, vendor/_bootstrap.scss */
.popover-content {
padding: 9px 14px; }
/* line 5, vendor/_bootstrap.scss */
.popover > .arrow, .popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid; }
/* line 5, vendor/_bootstrap.scss */
.popover > .arrow {
border-width: 11px; }
/* line 5, vendor/_bootstrap.scss */
.popover > .arrow:after {
border-width: 10px;
content: ""; }
/* line 5, vendor/_bootstrap.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 5, vendor/_bootstrap.scss */
.popover.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #fff; }
/* line 5, vendor/_bootstrap.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 5, vendor/_bootstrap.scss */
.popover.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #fff; }
/* line 5, vendor/_bootstrap.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 5, vendor/_bootstrap.scss */
.popover.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #fff; }
/* line 5, vendor/_bootstrap.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 5, vendor/_bootstrap.scss */
.popover.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #fff;
bottom: -10px; }
/* line 5, vendor/_bootstrap.scss */
.carousel {
position: relative; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner {
position: relative;
overflow: hidden;
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: .6s ease-in-out left;
transition: .6s ease-in-out left; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .item > img, .carousel-inner > .item > a > img {
line-height: 1; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
display: block; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .active {
left: 0; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .next, .carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .next {
left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .prev {
left: -100%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .next.left, .carousel-inner > .prev.right {
left: 0; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .active.left {
left: -100%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-inner > .active.right {
left: 100%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: .5;
filter: alpha(opacity=50);
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
/* line 5, vendor/_bootstrap.scss */
.carousel-control.left {
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
/* line 5, vendor/_bootstrap.scss */
.carousel-control.right {
left: auto;
right: 0;
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
/* line 5, vendor/_bootstrap.scss */
.carousel-control:hover, .carousel-control:focus {
outline: none;
color: #fff;
text-decoration: none;
opacity: .9;
filter: alpha(opacity=90); }
/* line 5, vendor/_bootstrap.scss */
.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
z-index: 5;
display: inline-block; }
/* line 5, vendor/_bootstrap.scss */
.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
left: 50%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
right: 50%; }
/* line 5, vendor/_bootstrap.scss */
.carousel-control .icon-prev, .carousel-control .icon-next {
width: 20px;
height: 20px;
margin-top: -10px;
margin-left: -10px;
font-family: serif; }
/* line 5, vendor/_bootstrap.scss */
.carousel-control .icon-prev:before {
content: '\2039'; }
/* line 5, vendor/_bootstrap.scss */
.carousel-control .icon-next:before {
content: '\203a'; }
/* line 5, vendor/_bootstrap.scss */
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center; }
/* line 5, vendor/_bootstrap.scss */
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #fff;
border-radius: 10px;
cursor: pointer;
background-color: #000 \9;
background-color: transparent; }
/* line 5, vendor/_bootstrap.scss */
.carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background-color: #fff; }
/* line 5, vendor/_bootstrap.scss */
.carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
/* line 5, vendor/_bootstrap.scss */
.carousel-caption .btn {
text-shadow: none; }
@media screen and (min-width: 768px) {
/* line 5, vendor/_bootstrap.scss */
.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -15px;
margin-left: -15px;
font-size: 30px; }
/* line 5, vendor/_bootstrap.scss */
.carousel-caption {
left: 20%;
right: 20%;
padding-bottom: 30px; }
/* line 5, vendor/_bootstrap.scss */
.carousel-indicators {
bottom: 20px; } }
/* line 5, vendor/_bootstrap.scss */
.clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after {
content: " ";
display: table; }
/* line 5, vendor/_bootstrap.scss */
.clearfix:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after {
clear: both; }
/* line 5, vendor/_bootstrap.scss */
.center-block {
display: block;
margin-left: auto;
margin-right: auto; }
/* line 5, vendor/_bootstrap.scss */
.pull-right {
float: right !important; }
/* line 5, vendor/_bootstrap.scss */
.pull-left {
float: left !important; }
/* line 5, vendor/_bootstrap.scss */
.hide {
display: none !important; }
/* line 5, vendor/_bootstrap.scss */
.show {
display: block !important; }
/* line 5, vendor/_bootstrap.scss */
.invisible {
visibility: hidden; }
/* line 5, vendor/_bootstrap.scss */
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0; }
/* line 5, vendor/_bootstrap.scss */
.hidden {
display: none !important;
visibility: hidden !important; }
/* line 5, vendor/_bootstrap.scss */
.affix {
position: fixed; }
@-ms-viewport {
width: device-width; }
/* line 5, vendor/_bootstrap.scss */
.visible-xs, .visible-sm, .visible-md, .visible-lg {
display: none !important; }
@media (max-width: 767px) {
/* line 5, vendor/_bootstrap.scss */
.visible-xs {
display: block !important; }
/* line 5, vendor/_bootstrap.scss */
table.visible-xs {
display: table; }
/* line 5, vendor/_bootstrap.scss */
tr.visible-xs {
display: table-row !important; }
/* line 5, vendor/_bootstrap.scss */
th.visible-xs, td.visible-xs {
display: table-cell !important; } }
@media (min-width: 768px) and (max-width: 991px) {
/* line 5, vendor/_bootstrap.scss */
.visible-sm {
display: block !important; }
/* line 5, vendor/_bootstrap.scss */
table.visible-sm {
display: table; }
/* line 5, vendor/_bootstrap.scss */
tr.visible-sm {
display: table-row !important; }
/* line 5, vendor/_bootstrap.scss */
th.visible-sm, td.visible-sm {
display: table-cell !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
/* line 5, vendor/_bootstrap.scss */
.visible-md {
display: block !important; }
/* line 5, vendor/_bootstrap.scss */
table.visible-md {
display: table; }
/* line 5, vendor/_bootstrap.scss */
tr.visible-md {
display: table-row !important; }
/* line 5, vendor/_bootstrap.scss */
th.visible-md, td.visible-md {
display: table-cell !important; } }
@media (min-width: 1200px) {
/* line 5, vendor/_bootstrap.scss */
.visible-lg {
display: block !important; }
/* line 5, vendor/_bootstrap.scss */
table.visible-lg {
display: table; }
/* line 5, vendor/_bootstrap.scss */
tr.visible-lg {
display: table-row !important; }
/* line 5, vendor/_bootstrap.scss */
th.visible-lg, td.visible-lg {
display: table-cell !important; } }
@media (max-width: 767px) {
/* line 5, vendor/_bootstrap.scss */
.hidden-xs {
display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
/* line 5, vendor/_bootstrap.scss */
.hidden-sm {
display: none !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
/* line 5, vendor/_bootstrap.scss */
.hidden-md {
display: none !important; } }
@media (min-width: 1200px) {
/* line 5, vendor/_bootstrap.scss */
.hidden-lg {
display: none !important; } }
/* line 5, vendor/_bootstrap.scss */
.visible-print {
display: none !important; }
@media print {
/* line 5, vendor/_bootstrap.scss */
.visible-print {
display: block !important; }
/* line 5, vendor/_bootstrap.scss */
table.visible-print {
display: table; }
/* line 5, vendor/_bootstrap.scss */
tr.visible-print {
display: table-row !important; }
/* line 5, vendor/_bootstrap.scss */
th.visible-print, td.visible-print {
display: table-cell !important; } }
@media print {
/* line 5, vendor/_bootstrap.scss */
.hidden-print {
display: none !important; } }
/* --------------- Spacers -------------------- */
/* ----- Margin Spacers ----- */
/* line 5, lib/scss/_g-spacers.scss */
.mtxs {
margin-top: 3px; }
/* line 6, lib/scss/_g-spacers.scss */
.mts {
margin-top: 10px; }
/* line 7, lib/scss/_g-spacers.scss */
.mtm {
margin-top: 20px; }
/* line 8, lib/scss/_g-spacers.scss */
.mtl {
margin-top: 60px; }
/* line 9, lib/scss/_g-spacers.scss */
.mtxl {
margin-top: 120px; }
/* line 10, lib/scss/_g-spacers.scss */
.mtn {
margin-top: 0; }
/* line 12, lib/scss/_g-spacers.scss */
.mrxs {
margin-right: 3px; }
/* line 13, lib/scss/_g-spacers.scss */
.mrs {
margin-right: 10px; }
/* line 14, lib/scss/_g-spacers.scss */
.mrm {
margin-right: 20px; }
/* line 15, lib/scss/_g-spacers.scss */
.mrl {
margin-right: 60px; }
/* line 16, lib/scss/_g-spacers.scss */
.mrn {
margin-right: 0; }
/* line 18, lib/scss/_g-spacers.scss */
.mbxs {
margin-bottom: 3px; }
/* line 19, lib/scss/_g-spacers.scss */
.mbs {
margin-bottom: 10px; }
/* line 20, lib/scss/_g-spacers.scss */
.mbm {
margin-bottom: 20px; }
/* line 21, lib/scss/_g-spacers.scss */
.mbl {
margin-bottom: 60px; }
/* line 22, lib/scss/_g-spacers.scss */
.mbxl {
margin-bottom: 120px; }
/* line 23, lib/scss/_g-spacers.scss */
.mbn {
margin-bottom: 0; }
/* line 25, lib/scss/_g-spacers.scss */
.mlxs {
margin-left: 3px; }
/* line 26, lib/scss/_g-spacers.scss */
.mls {
margin-left: 10px; }
/* line 27, lib/scss/_g-spacers.scss */
.mlm {
margin-left: 20px; }
/* line 28, lib/scss/_g-spacers.scss */
.mll {
margin-left: 60px; }
/* line 29, lib/scss/_g-spacers.scss */
.mln {
margin-left: 0; }
/* ----- Margin Spacers END ----- */
/* ----- Padding Spacers ----- */
/* line 35, lib/scss/_g-spacers.scss */
.ptxs {
padding-top: 3px; }
/* line 36, lib/scss/_g-spacers.scss */
.pts {
padding-top: 10px; }
/* line 37, lib/scss/_g-spacers.scss */
.ptm {
padding-top: 20px; }
/* line 38, lib/scss/_g-spacers.scss */
.ptl {
padding-top: 60px; }
/* line 39, lib/scss/_g-spacers.scss */
.ptxl {
padding-top: 80px; }
/* line 41, lib/scss/_g-spacers.scss */
.ptb {
padding-top: 100px;
padding-bottom: 100px; }
/* line 42, lib/scss/_g-spacers.scss */
.ptn {
padding-top: 0; }
/* line 44, lib/scss/_g-spacers.scss */
.prxs {
padding-right: 3px; }
/* line 45, lib/scss/_g-spacers.scss */
.prs {
padding-right: 10px; }
/* line 46, lib/scss/_g-spacers.scss */
.prm {
padding-right: 20px; }
/* line 47, lib/scss/_g-spacers.scss */
.prl {
padding-right: 60px; }
/* line 48, lib/scss/_g-spacers.scss */
.prn {
padding-right: 0; }
/* line 50, lib/scss/_g-spacers.scss */
.pbxs {
padding-bottom: 3px; }
/* line 51, lib/scss/_g-spacers.scss */
.pbs {
padding-bottom: 10px; }
/* line 52, lib/scss/_g-spacers.scss */
.pbm {
padding-bottom: 20px; }
/* line 53, lib/scss/_g-spacers.scss */
.pbl {
padding-bottom: 60px; }
/* line 54, lib/scss/_g-spacers.scss */
.pbn {
padding-bottom: 0; }
/* line 56, lib/scss/_g-spacers.scss */
.plxs {
padding-left: 3px; }
/* line 57, lib/scss/_g-spacers.scss */
.pls {
padding-left: 10px; }
/* line 58, lib/scss/_g-spacers.scss */
.plm {
padding-left: 20px; }
/* line 59, lib/scss/_g-spacers.scss */
.pll {
padding-left: 60px; }
/* line 60, lib/scss/_g-spacers.scss */
.pln {
padding-left: 0; }
/* ----- Padding Spacers END ----- */
/* --------------- Spacers END --------------- */
@font-face {
font-family: 'OgilvyJBaskerville-Regular';
src: url("vendor/ogilvyjbaskerville-regular.eot");
src: url("vendor/ogilvyjbaskerville-regular.eot?#iefix") format("embedded-opentype"), url("vendor/ogilvyjbaskerville-regular.woff") format("woff"), url("vendor/ogilvyjbaskerville-regular.ttf") format("truetype"), url("vendor/ogilvyjbaskerville-regular.svg#ogilvyjbaskerville-regular") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'DINOT-Regular';
src: url("vendor/DINOT-Regular.eot");
src: url("vendor/DINOT-Regular.eot?#iefix") format("embedded-opentype"), url("vendor/DINOT-Regular.woff") format("woff"), url("vendor/DINOT-Regular.ttf") format("truetype"), url("vendor/DINOT-Regular.svg#DINOT-Regular") format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'DINOT-Bold';
src: url("vendor/DINOT-Bold.eot");
src: url("vendor/DINOT-Bold.eot?#iefix") format("embedded-opentype"), url("vendor/DINOT-Bold.woff") format("woff"), url("vendor/DINOT-Bold.ttf") format("truetype"), url("vendor/DINOT-Bold.svg#DINOT-Bold") format("svg");
font-weight: normal;
font-style: normal; }
/* line 46, lib/scss/_typography.scss */
body {
color: #3d3d3d;
font-size: 16px;
font-family: 'DINOT-Regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
letter-spacing: .01rem;
font-weight: 400;
font-style: normal;
line-height: 1.5;
-webkit-font-smoothing: antialiased; }
/* line 59, lib/scss/_typography.scss */
a {
color: #FF0000;
text-decoration: none;
font-weight: bold; }
/* line 62, lib/scss/_typography.scss */
a:hover {
text-decoration: none;
color: inherit;
opacity: .9; }
/* line 64, lib/scss/_typography.scss */
h1 {
font-size: 4em; }
/* line 65, lib/scss/_typography.scss */
h3 {
font-size: 2em;
font-family: Georgia, "Times New Roman", Times, serif;
/* font-weight: bold; */
letter-spacing: -0.03em; }
/* line 69, lib/scss/_typography.scss */
h2 {
font-size: 4em;
font-family: "OgilvyJBaskerville-Regular", Georgia, "Times New Roman", Times, serif;
margin: 0;
font-weight: normal;
letter-spacing: -0.02em; }
/* line 78, lib/scss/_typography.scss */
b, strong {
font-family: 'DINOT-Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: bold;
text-decoration: none; }
/* line 84, lib/scss/_typography.scss */
h1, h2, h4 {
font-family: "OgilvyJBaskerville-Regular", Georgia, "Times New Roman", Times, serif;
font-weight: normal;
letter-spacing: -0.03em; }
@media all and (max-width: 768px) {
/* line 87, lib/scss/_typography.scss */
body {
font-size: 14px; } }
/* line 93, lib/scss/_typography.scss */
a.subtle {
color: #3d3d3d; }
/* line 95, lib/scss/_typography.scss */
a.subtle:hover {
color: #ff0000; }
/* line 102, lib/scss/_typography.scss */
.jumbotron h1 {
color: #ff0000;
font-size: 4em; }
/* line 106, lib/scss/_typography.scss */
.jumbotron h1, .jumbotron h2 {
font-weight: normal; }
/* line 113, lib/scss/_typography.scss */
.blog-content h2, .blog-content h3, .blog-content h4 {
font-size: 20px;
font-weight: bold;
font-family: 'DINOT-Regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 10px 0 15px 0; }
/* line 120, lib/scss/_typography.scss */
.blog-content p {
font-size: 20px;
margin-bottom: 20px; }
/* line 125, lib/scss/_typography.scss */
.blog-content blockquote {
font-style: italic;
border-left: 3px solid #ff0000;
margin-left: -26px;
padding: 0 0 3px 20px;
font-size: 20px;
color: #555554;
margin-top: 5px;
margin-bottom: 25px;
display: inline-block; }
/* line 136, lib/scss/_typography.scss */
.blog-content blockquote p {
margin-bottom: 10px; }
/* line 138, lib/scss/_typography.scss */
.blog-content blockquote cite {
font-style: italic;
color: #666665;
margin-top: 6px;
font-size: 80%; }
/* line 146, lib/scss/_typography.scss */
.blog-content ol, .blog-content ul {
margin-bottom: 20px;
padding-left: 30px;
font-size: 20px;
line-height: 35px; }
/* line 152, lib/scss/_typography.scss */
.blog-content ul > li {
list-style-type: square;
padding-left: 5px;
margin-left: -5px; }
/* line 157, lib/scss/_typography.scss */
.blog-content ol > li {
list-style-type: decimal; }
/* line 161, lib/scss/_typography.scss */
.label-default > a {
color: #f5f5f5; }
/* line 163, lib/scss/_typography.scss */
.label-default > a:hover, .label-default > a:active, .label-default > a:focus {
color: white; }
/* line 7, lib/scss/_buttons.scss */
.btn-red {
color: #e83f41;
border-color: #e83f41;
background-color: #fff;
font-weight: 100; }
/* line 11, lib/scss/_buttons.scss */
.btn-white {
color: #fff;
border: 1px solid #fff; }
/* line 13, lib/scss/_buttons.scss */
.btn-white-clear {
color: #fff;
border: 1px solid #fff;
background-color: transparent; }
/* line 15, lib/scss/_buttons.scss */
.btn-black {
color: #fff;
border-color: #4A4A4A;
background-color: #4A4A4A;
font-weight: 100; }
/* line 20, lib/scss/_buttons.scss */
.btn-primary {
font-size: 14px !important;
background-color: #e83f41;
border-color: #e83f41; }
/* line 22, lib/scss/_buttons.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
color: #ebebeb;
background-color: transparent; }
/* line 30, lib/scss/_buttons.scss */
.btn-lg {
padding: 10px 20px 8px 20px;
line-height: 1.33;
border-radius: 4px;
font-size: inherit; }
/* line 37, lib/scss/_buttons.scss */
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
border-color: #ebebeb;
color: rgba(255, 255, 255, 0.5);
background-color: #e83f41; }
/* line 42, lib/scss/_buttons.scss */
.newsletter-opt {
margin-right: 10px;
font-size: 14px;
display: inline-block;
padding: 6px 12px;
font-weight: normal;
line-height: 1.42857143;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid #4A4A4A;
border-radius: 4px;
width: 260px;
background: transparent;
max-width: 60%; }
/* line 61, lib/scss/_buttons.scss */
.btn:hover, .btn:focus {
color: white;
border-color: #ff0000;
text-decoration: none; }
/* line 67, lib/scss/_buttons.scss */
#mr-field-element-762550951912 {
border-color: #3d3d3d;
color: #3d3d3d;
background-color: transparent;
font-weight: bold;
margin-top: 25px; }
/* line 74, lib/scss/_buttons.scss */
._inline-form #mr-field-element-762550951912 {
border-color: #FFF;
color: #FFF;
background-color: transparent;
font-weight: normal;
margin-top: 25px; }
/* line 80, lib/scss/_buttons.scss */
#mr-field-element-762550951912:hover {
color: #FF0000;
border-color: #ff0000;
text-decoration: none; }
/* line 4, lib/scss/_global.scss */
body {
overflow-x: hidden; }
/* line 5, lib/scss/_global.scss */
img {
max-width: 100%; }
/* line 6, lib/scss/_global.scss */
.bb {
border-bottom: 1px solid #ccc; }
/* line 7, lib/scss/_global.scss */
.list-unstyled .bb {
border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
/* line 9, lib/scss/_global.scss */
abbr {
border-bottom: 1px dotted #fff; }
/* line 10, lib/scss/_global.scss */
th {
border-bottom: none !important; }
/* line 11, lib/scss/_global.scss */
tr {
border-bottom: 1px solid #ddd;
border-top: none; }
/* line 13, lib/scss/_global.scss */
.table {
border-collapse: separate;
border-spacing: 20px 0px;
width: 100%; }
/* line 19, lib/scss/_global.scss */
ul, li {
list-style: none; }
/* line 21, lib/scss/_global.scss */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
padding: 10px 8px 10px 8px;
vertical-align: middle;
line-height: 1.42857143;
border-bottom: 1px solid #ddd;
border-top: none !important; }
/* line 29, lib/scss/_global.scss */
.center {
text-align: center; }
/* line 32, lib/scss/_global.scss */
.block {
height: auto; }
@media all and (min-width: 768px) {
/* line 35, lib/scss/_global.scss */
.block {
min-height: 600px; } }
/* line 39, lib/scss/_global.scss */
.img-block {
min-height: 700px; }
/* line 41, lib/scss/_global.scss */
.ptb h1 {
margin-top: 0px !important;
margin-bottom: 40px; }
/* line 43, lib/scss/_global.scss */
.fa-linkedin-square {
color: #777; }
/* line 45, lib/scss/_global.scss */
.quote {
color: #3d3d3d;
font-size: 3em;
font-family: 'OgilvyJBaskerville-Regular', Georgia, "Times New Roman", Times, serif;
font-weight: normal;
letter-spacing: -0.03em;
text-transform: none !important;
margin: 10px 0px 30px; }
/* line 56, lib/scss/_global.scss */
.quote-mark {
width: 23px;
height: 18px;
background-image: url("images/quote.png"); }
/* line 62, lib/scss/_global.scss */
.primary {
background: red;
color: white; }
/* line 67, lib/scss/_global.scss */
.inverted {
background: #f3f3f3;
color: #3d3d3d; }
/* line 71, lib/scss/_global.scss */
.inverted h3 {
color: #000; }
@media (max-width: 1200px) {
/* line 77, lib/scss/_global.scss */
#org-text {
height: 58%; } }
/* line 80, lib/scss/_global.scss */
.vert-block {
margin-top: 100px;
margin-bottom: 100px; }
@media all and (min-width: 768px) {
/* line 86, lib/scss/_global.scss */
.vert-block {
height: 53%;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0; }
/* line 95, lib/scss/_global.scss */
#channel-content .vert-block {
height: 50%; } }
/* line 102, lib/scss/_global.scss */
.main-logo {
position: absolute;
bottom: 20px;
left: calc(50% - 95px); }
/* line 110, lib/scss/_global.scss */
.pyramid img {
padding-bottom: 17px; }
@media all and (min-width: 768px) {
/* line 117, lib/scss/_global.scss */
.pyramid {
position: relative;
top: -30px; }
/* line 122, lib/scss/_global.scss */
.three-r {
position: relative;
top: -20px; } }
/* line 130, lib/scss/_global.scss */
.three-r img {
padding-bottom: 30px; }
/* line 134, lib/scss/_global.scss */
.overlay {
padding: 20px;
opacity: .95;
color: #fff;
background-color: #3d3d3d; }
/* line 141, lib/scss/_global.scss */
.overlay h1 {
margin-top: 0px !important; }
/* line 143, lib/scss/_global.scss */
.vert-text {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
/* line 151, lib/scss/_global.scss */
.vert-text h1, .vert-text h2 {
text-transform: none !important;
font-family: "DINOT-Regular", "Helvetica Neue", Sans-serif; }
/* line 153, lib/scss/_global.scss */
.vert-text h2 {
font-weight: 200; }
/* line 155, lib/scss/_global.scss */
.video-overlay {
background-color: rgba(0, 0, 0, 0.49803); }
/* line 157, lib/scss/_global.scss */
.vert-video {
position: relative;
top: 50%;
padding: 30px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
text-align: left; }
/* line 167, lib/scss/_global.scss */
.vert-video h3 {
font-weight: 100;
margin-bottom: 5px;
color: #ccc; }
/* line 175, lib/scss/_global.scss */
.intro-heading {
background-color: #fff;
padding: 0.07em 0.2em;
line-height: 1.2em;
display: inline-block;
margin-bottom: 20px; }
/* line 184, lib/scss/_global.scss */
.intro-heading h1 {
padding: 0.25em 0.2em 0.07em;
margin-top: 0px;
color: #000;
font-size: 6em;
font-family: 'OgilvyJBaskerville-Regular';
font-weight: normal;
letter-spacing: -0.02em;
line-height: 1.1em; }
/* line 196, lib/scss/_global.scss */
.second-heading {
font-size: 19px;
display: inline-block;
background: #fff;
margin: 0;
color: #000;
padding: 0.18em 0.5em 0.07em 0.5em; }
@media all and (max-width: 640px) {
/* line 210, lib/scss/_global.scss */
.intro-heading h1 {
font-size: 2.5em;
padding: 0.3em 0.2em 0.1em;
margin: 0px; }
/* line 216, lib/scss/_global.scss */
.second-heading {
font-size: 12px; } }
@media all and (max-width: 768px) {
/* line 231, lib/scss/_global.scss */
.vert-video-opt .btn-lg {
margin: 0px; }
/* line 232, lib/scss/_global.scss */
.vert-video-opt .btn-white-clear {
margin-bottom: 20px; } }
@media all and (min-width: 768px) {
/* line 240, lib/scss/_global.scss */
.cont-l, .cont-r {
width: 750px !important;
padding-left: 15px;
padding-right: 15px;
display: block;
margin-left: auto;
margin-right: auto;
float: none; } }
@media all and (max-width: 768px) {
/* line 259, lib/scss/_global.scss */
.cont-l, .cont-r {
margin-left: auto;
margin-right: auto; } }
@media all and (max-width: 650px) {
/* line 268, lib/scss/_global.scss */
.cont-l, .cont-r {
margin-left: -15px;
margin-right: -15px; } }
@media all and (min-width: 992px) {
/* line 280, lib/scss/_global.scss */
.cont-l, .cont-r {
width: 470px !important; }
/**
.cont-r {
float: left;
}
.cont-l {
float: right;
}**/ }
@media all and (min-width: 1200px) {
/* line 292, lib/scss/_global.scss */
.cont-l, .cont-r {
width: 570px !important; } }
/* line 297, lib/scss/_global.scss */
.stock-img {
background-image: url("images/stockimg-placeholder.jpg"); }
/* line 302, lib/scss/_global.scss */
.img-content {
background-image: url("images/content-channel.jpg");
background-size: cover;
position: relative; }
/* line 308, lib/scss/_global.scss */
#organisation {
background-image: url("images/organisation1.jpg");
background-size: cover;
position: relative; }
/* line 314, lib/scss/_global.scss */
#data-analytics {
background-image: url("images/data-analytics.jpg");
background-size: cover;
position: relative; }
/* line 320, lib/scss/_global.scss */
#technology {
background-image: url("images/tech-background2.jpg");
background-size: cover;
position: relative; }
/* line 330, lib/scss/_global.scss */
.list-unstyled li.bb {
font-size: 14px; }
/* line 332, lib/scss/_global.scss */
.services h3 {
margin-bottom: 25px; }
/* line 334, lib/scss/_global.scss */
.mobile-services li h3 {
margin-bottom: 20px; }
/* line 336, lib/scss/_global.scss */
.mobile-services ul.list-unstyled {
margin-bottom: 40px; }
@media all and (min-width: 768px) {
/* line 339, lib/scss/_global.scss */
.mobile-services {
display: none; } }
@media all and (max-width: 768px) {
/* line 343, lib/scss/_global.scss */
.services {
display: none; } }
@media all and (max-width: 768px) {
/* line 348, lib/scss/_global.scss */
.mobile-hide {
display: none; } }
/* line 357, lib/scss/_global.scss */
.excuse-opt {
max-width: 480px;
margin: 40px auto 0px; }
/* line 362, lib/scss/_global.scss */
.excuse-opt-title {
display: inline-block;
position: relative;
font-size: 24px;
font-weight: bold; }
/* line 371, lib/scss/_global.scss */
.excuse-opt-input {
width: 100%;
padding: 12px 12px;
margin: 0 auto;
border-radius: 2px;
border: 1px solid #C9C9C9;
height: 48px; }
/* line 381, lib/scss/_global.scss */
.input-group-btn button {
padding: 13px 20px;
border-radius: 2px;
height: 48px; }
/* line 390, lib/scss/_global.scss */
#team .col-md-4 {
min-height: 429px; }
/* line 398, lib/scss/_global.scss */
footer {
background: #ff0000;
color: #810000;
font-weight: bold; }
/* line 401, lib/scss/_global.scss */
footer a:hover {
color: #fff; }
/* line 405, lib/scss/_global.scss */
footer .text-right ul {
line-height: 80px;
margin-top: 0px;
margin-bottom: 0px; }
/* line 407, lib/scss/_global.scss */
.logo-footer {
height: 40px; }
@media all and (max-width: 1000px) {
/* line 410, lib/scss/_global.scss */
.mobile-center {
text-align: center; }
/* line 412, lib/scss/_global.scss */
.mobile-center .logo-footer {
margin: 0px; } }
/* line 417, lib/scss/_global.scss */
input[type="submit"], input[type="text"] {
line-height: normal !important; }
/* line 422, lib/scss/_global.scss */
.text-muted .btn {
margin-top: 10px; }
/* line 426, lib/scss/_global.scss */
footer .links .stw-group {
margin-left: 0; }
/* line 432, lib/scss/_global.scss */
footer .stw-group a, footer .ogilvy a {
display: block;
height: 63px;
width: 89px;
text-indent: -999em;
background: url("images/logo_stw-ogilvy.png") 0 0 no-repeat; }
/* line 440, lib/scss/_global.scss */
.bot-logo li {
float: right; }
/* line 442, lib/scss/_global.scss */
footer .ogilvy a {
background-position: -109px 0; }
/* line 446, lib/scss/_global.scss */
footer .links .stw-group, footer .links .ogilvy {
width: 89px;
margin-right: 15px;
border: 0;
padding: 0; }
/* line 452, lib/scss/_global.scss */
footer .links {
padding-left: 0px;
margin-left: 0px; }
/* line 455, lib/scss/_global.scss */
a.phone {
color: #000; }
/* line 458, lib/scss/_global.scss */
#mfa17 {
background: transparent;
color: #e31b1e; }
/* line 461, lib/scss/_global.scss */
#team .h3 {
font-weight: 600; }
/* line 462, lib/scss/_global.scss */
#team .h4 {
font-weight: 400; }
@media all and (min-width: 786px) {
/* line 467, lib/scss/_global.scss */
.mobile-logo {
display: none; } }
@media all and (max-width: 786px) {
/* line 473, lib/scss/_global.scss */
.mobile-logo {
text-align: center;
position: relative;
top: 50px; } }
/* line 477, lib/scss/_global.scss */
#outer {
max-width: 740px;
max-height: 560px;
width: 100%;
height: 100%;
margin: 0 auto; }
/* line 486, lib/scss/_global.scss */
#outer p {
text-align: center;
padding-top: 20px; }
/* line 488, lib/scss/_global.scss */
#outer h2 {
padding-bottom: 20px;
text-align: center; }
/* line 490, lib/scss/_global.scss */
#inner {
height: 0px;
padding-bottom: 56.25%; }
/* line 495, lib/scss/_global.scss */
#inner iframe {
width: 100%;
height: 100%; }
/* line 500, lib/scss/_global.scss */
.greyb {
background-color: #f3f3f3; }
/* line 502, lib/scss/_global.scss */
.darkb {
background-color: #3d3d3d;
color: #fff; }
/* line 504, lib/scss/_global.scss */
.page-title {
background: url(vendor/bg-heading-large.gif) center center no-repeat;
text-align: center;
line-height: 1.13em; }
/* line 508, lib/scss/_global.scss */
.page-title.whiteb h2 {
display: inline-block;
background-color: #fff;
padding: 0px 10px; }
/* line 513, lib/scss/_global.scss */
.page-title.greyb h2 {
display: inline-block;
background-color: #f3f3f3;
padding: 0px 10px; }
/* line 519, lib/scss/_global.scss */
footer .container .col-md-8 {
margin-top: 40px;
margin-bottom: 40px;
color: #000; }
/* line 524, lib/scss/_global.scss */
footer .container .col-md-4 {
margin-bottom: 20px; }
/* line 530, lib/scss/_global.scss */
.stw-ogilvy {
color: #000;
line-height: 40px; }
/* line 532, lib/scss/_global.scss */
.stw-ogilvy a {
color: #000; }
/* line 533, lib/scss/_global.scss */
.stw-ogilvy .left {
float: left; }
/* line 534, lib/scss/_global.scss */
.stw-ogilvy .right {
float: right; }
/* line 536, lib/scss/_global.scss */
.stw-ogilvy a:hover {
color: #fff; }
@media all and (min-width: 786px) {
/* line 539, lib/scss/_global.scss */
.stw-ogilvy .foot-left {
float: left; }
/* line 540, lib/scss/_global.scss */
.stw-ogilvy .foot-right {
float: right; } }
@media all and (max-width: 786px) {
/* line 544, lib/scss/_global.scss */
.stw-ogilvy {
text-align: center; }
/* line 545, lib/scss/_global.scss */
.stw-ogilvy .right {
float: left;
margin-top: 20px; }
/* line 546, lib/scss/_global.scss */
.foot-left {
padding-bottom: 10px; } }
/* line 551, lib/scss/_global.scss */
.prezititle {
font-family: 'DINOT-Regular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 1.5em;
font-weight: bold; }
@font-face {
font-family: 'codropsicons';
src: url("vendor/codropsicons/codropsicons.eot");
src: url("vendor/codropsicons/codropsicons.eot?#iefix") format("embedded-opentype"), url("vendor/codropsicons/codropsicons.woff") format("woff"), url("vendor/codropsicons/codropsicons.ttf") format("truetype"), url("vendor/codropsicons/codropsicons.svg#codropsicons") format("svg");
font-weight: normal;
font-style: normal; }
/* line 13, lib/scss/_checkboxes.scss */
*,
*:after,
*::before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
/* line 22, lib/scss/_checkboxes.scss */
.check-answer {
padding-left: 76px;
margin-top: -20px !important; }
/* line 31, lib/scss/_checkboxes.scss */
.ac-custom h2 {
font-size: 3em;
font-weight: 300;
padding: 0 0 0.5em;
margin: 0 0 30px; }
/* line 38, lib/scss/_checkboxes.scss */
.ac-custom ul,
.ac-custom ol {
list-style: none;
padding: 0; }
/* line 46, lib/scss/_checkboxes.scss */
.ac-custom li {
margin: 0 auto;
padding-bottom: 26px;
position: relative; }
/* line 52, lib/scss/_checkboxes.scss */
.ac-custom label {
display: inline-block;
position: relative;
font-size: 25px;
padding: 0 0 0 75px;
vertical-align: top;
color: #C9C9C9;
cursor: pointer;
-webkit-transition: color 0.3s;
transition: color 0.3s; }
@media all and (max-width: 768px) {
/* line 67, lib/scss/_checkboxes.scss */
.ac-custom label {
font-size: 20px;
line-height: normal; } }
/* line 76, lib/scss/_checkboxes.scss */
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"],
.ac-custom label::before {
width: 50px;
height: 50px;
top: 50%;
left: 0;
margin-top: -25px;
position: absolute;
cursor: pointer; }
/* line 88, lib/scss/_checkboxes.scss */
.ac-custom input[type="checkbox"],
.ac-custom input[type="radio"] {
opacity: 0;
-webkit-appearance: none;
display: inline-block;
vertical-align: middle;
z-index: 100; }
/* line 97, lib/scss/_checkboxes.scss */
.ac-custom label::before {
content: '';
border: 4px solid #afafaf;
-webkit-transition: opacity 0.3s;
transition: opacity 0.3s; }
/* line 104, lib/scss/_checkboxes.scss */
.ac-radio label::before {
border-radius: 50%; }
/* line 108, lib/scss/_checkboxes.scss */
.ac-custom input[type="checkbox"]:checked + label,
.ac-custom input[type="radio"]:checked + label {
color: #4A4A4A; }
/* line 113, lib/scss/_checkboxes.scss */
.ac-custom input[type="checkbox"]:checked + label::before,
.ac-custom input[type="radio"]:checked + label::before {
opacity: 0.8; }
/* General SVG and path styles */
/* line 120, lib/scss/_checkboxes.scss */
.ac-custom svg {
position: absolute;
width: 40px;
height: 40px;
top: 50%;
margin-top: -35px;
left: 5px;
pointer-events: none; }
/* line 130, lib/scss/_checkboxes.scss */
.ac-custom svg path {
stroke: #E83F41;
stroke-width: 13px;
stroke-linecap: round;
stroke-linejoin: round;
fill: none; }
/* Specific input, SVG and path styles */
/* Circle */
/* line 141, lib/scss/_checkboxes.scss */
.ac-circle input[type="checkbox"],
.ac-circle input[type="radio"],
.ac-circle label::before {
width: 30px;
height: 30px;
margin-top: -15px;
left: 10px;
position: absolute; }
/* line 151, lib/scss/_checkboxes.scss */
.ac-circle label::before {
background-color: #fff;
border: none; }
/* line 156, lib/scss/_checkboxes.scss */
.ac-circle svg {
width: 70px;
height: 70px;
margin-top: -35px;
left: -10px; }
/* line 163, lib/scss/_checkboxes.scss */
.ac-circle svg path {
stroke-width: 5px; }
/* Box Fill */
/* line 168, lib/scss/_checkboxes.scss */
.ac-boxfill svg path {
stroke-width: 8px; }
/* Swirl */
/* line 173, lib/scss/_checkboxes.scss */
.ac-swirl svg path {
stroke-width: 8px; }
/* List */
/* line 178, lib/scss/_checkboxes.scss */
.ac-list ol {
list-style: decimal;
list-style-position: inside; }
/* line 183, lib/scss/_checkboxes.scss */
.ac-list ol li {
font-size: 2em;
padding: 1em 1em 0 2em;
text-indent: -40px; }
/* line 189, lib/scss/_checkboxes.scss */
.ac-list ol li label {
font-size: 1em;
text-indent: 0;
padding-left: 30px; }
/* line 195, lib/scss/_checkboxes.scss */
.ac-list label::before {
display: none; }
/* line 199, lib/scss/_checkboxes.scss */
.ac-list svg {
width: 100%;
height: 80px;
left: 0;
top: 1.2em;
margin-top: 0px; }
/* line 207, lib/scss/_checkboxes.scss */
.ac-list svg path {
stroke-width: 4px; }
/* Media Queries */
@media screen and (max-width: 50em) {
/* line 213, lib/scss/_checkboxes.scss */
section {
font-size: 80%; } }
@media all and (min-width: 1000px) {
/* line 3, lib/scss/_big-video.scss */
.static-overlay {
display: none; }
/* line 6, lib/scss/_big-video.scss */
.actual-video {
position: absolute;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background: url("https://s3-ap-southeast-2.amazonaws.com/tiekili-videos/city-videos/poster.jpg") no-repeat;
background-size: cover; }
/* line 21, lib/scss/_big-video.scss */
.actual-video video {
display: block;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
top: 0;
left: 0; } }
@media all and (max-width: 1000px) {
/* line 35, lib/scss/_big-video.scss */
.actual-video {
display: none; }
/* line 37, lib/scss/_big-video.scss */
.static-overlay {
position: absolute;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background: url("images/static-background.jpg") no-repeat;
background-size: cover; } }
/* line 1, lib/scss/_blog.scss */
header._blog {
background: black url("./images/header-image-david-ogilvy.jpg") no-repeat center center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
filter: 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'#($img_uri)header_bg.jpg\', sizingMethod=\'scale\')';
-ms-filter: 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'#($img_uri)header_bg.jpg\', sizingMethod=\'scale\')'; }
/* line 10, lib/scss/_blog.scss */
header._blog h1 {
color: white;
font-size: 6em; }
/* line 15, lib/scss/_blog.scss */
header._blog .btn-white {
background-color: rgba(0, 0, 0, 0.25);
box-shadow: 0 0 18px rgba(0, 0, 0, 0.5); }
/* line 21, lib/scss/_blog.scss */
.signup-widget {
background-color: #eee; }
var {
font-style: normal;
}
.form-horizontal label {
line-height: 40px;
font-size: 14px;
margin-right: -20px;
}
div.prefix input {
padding-left: 20px;
}
span.prefix {
position: absolute;
top: 8px;
left: 12px;
color: #555;
z-index: 10;
font-size: 13px;
-webkit-font-smoothing: auto;
}
div.suffix input {
padding-right: 22px;
}
span.suffix {
position: absolute;
top: 8px;
right: 87px;
color: #555;
font-size: 13px;
width: 12px;
z-index: 10;
text-align: right;
-webkit-font-smoothing: auto;
}
.form-horizontal .form-group {
margin-bottom: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
}
/*mobile only*/
#calculate-btn {
height: 55px;
margin-top: 5px;
}
@media all and (max-width: 767px) {
#calculate-btn {
margin-left: -5px;
width: calc(100% - 5px);
}
}
table.pe-blog-post {
border-spacing: 0;
}
table.pe-blog-post th {
border-bottom: 1px solid #888 !important;
font-weight: bold;
}
.pe-blog-post .input-group-btn button {
padding: 6px 15px;
border-radius: 2px;
height: auto;
z-index: 10;
}
.input-group input {
border-radius: 2px !important;
}
.pe-blog-post tr:nth-child(6) td, .pe-blog-post tr:nth-child(5) td {
border-bottom: 1px solid rgba(0,0,0,.5);
}
strong {
// font-weight: 600;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment