@charset "UTF-8";
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/**
 * @see http://quirksmode.org/css/user-interface/cursor.html#note
 */
/**
 * Mixin to prefix a property
 * @author Hugo Giraudel
 * @param {String} $property - Property name
 * @param {*} $value - Property value
 * @param {List} $prefixes (()) - List of prefixes to print
 * @see https://css-tricks.com/snippets/sass/mixin-prefix-properties/
 */
/**
 * @see https://css-tricks.com/snippets/css/retina-display-media-query/
 * @example @include toHidpi(getMediaQuery(tablet)) { color : red }
 */
/**
 * Hardware-accelerated 
 * @see http://blog.teamtreehouse.com/increase-your-sites-performance-with-hardware-accelerated-css
 * @see http://www.html5rocks.com/en/tutorials/speed/high-performance-animations/
 */
.slick-slide, #box-nav-main-mobile nav ul li a.nav-collapsible-trigger {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  perspective: 1000;
}

/**
 * Sistema griglia basato su Semantic.gs
 * @see http://tylertate.github.io/semantic.gs/
 */
.col-group {
  *zoom: 1;
}
.col-group:before, .col-group:after {
  content: "";
  display: table;
}
.col-group:after {
  clear: both;
}
.col-group.col-group-1 {
  margin-right: -0.5%;
  margin-left: -0.5%;
}
.col-group.col-group-2 {
  margin-right: -1%;
  margin-left: -1%;
}
.col-group.col-group-3 {
  margin-right: -1.5%;
  margin-left: -1.5%;
}
.col-group.col-group-4 {
  margin-right: -2%;
  margin-left: -2%;
}
.col-group.col-group-5 {
  margin-right: -2.5%;
  margin-left: -2.5%;
}
.col-group.col-group-6 {
  margin-right: -3%;
  margin-left: -3%;
}
.col-group.col-group-7 {
  margin-right: -3.5%;
  margin-left: -3.5%;
}
.col-group.col-group-8 {
  margin-right: -4%;
  margin-left: -4%;
}
.col-group.col-group-9 {
  margin-right: -4.5%;
  margin-left: -4.5%;
}
.col-group.col-group-10 {
  margin-right: -5%;
  margin-left: -5%;
}

/**
 * Reset CSS
 * Basato su http://meyerweb.com/eric/tools/css/reset/ 
 * @license none (public domain)
 * @version 2.0 | 20110126
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
*:focus {
  outline: 0 !important;
}

html,
input,
button,
textarea {
  -webkit-font-smoothing: antialiased;
}

/*
 * IE11 Non sembra supportare a pieno il tag html5 "main".
 * @see http://stackoverflow.com/questions/20094276/ie11-is-missing-user-agent-style-for-main-element-display-block
 * @see http://roger.steneteg.org/657/html5-main-element-tag-not-working-in-ie11/
 */
main {
  display: block;
}

body {
  overflow-x: hidden;
  word-wrap: break-word;
}

.body-container {
  overflow-y: visible;
}

#box-nav-main-mobile nav ul ul {
  background-image: url("../../img/black-o-30.png");
}

.typo.typo-1.typo-1-theme-white ul > li {
  background-image: url("../../img/icon/circle-1-white@2x.png");
}

.typo.typo-1 ul > li {
  background-image: url("../../img/icon/circle-1-green@2x.png");
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .navbar {
    display: none;
  }

  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }

  .label {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.42857;
  color: #333333;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}
a:hover, a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 2px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 18px;
  margin-bottom: 18px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role="button"] {
  cursor: pointer;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 2px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 2px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  padding: 8.5px;
  margin: 0 0 9px;
  font-size: 12px;
  line-height: 1.42857;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 2px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 18px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 13.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 18px;
  font-size: 19.5px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type="file"] {
  display: block;
}

input[type="range"] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 13px;
  line-height: 1.42857;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 32px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.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);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 32px;
  }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm
  input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg
  input[type="month"] {
    line-height: 45px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 18px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled, fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed;
}

.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled, fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label, fieldset[disabled]
.checkbox label {
  cursor: not-allowed;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 31px;
}
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.33333;
  border-radius: 2px;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 45px;
  line-height: 45px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 45px;
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.33333;
  border-radius: 2px;
}
.form-group-lg select.form-control {
  height: 45px;
  line-height: 45px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 45px;
  min-height: 35px;
  padding: 11px 16px;
  font-size: 17px;
  line-height: 1.33333;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 40px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 45px;
  height: 45px;
  line-height: 45px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}
.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);
}
.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;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.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);
}
.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;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}
.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);
}
.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;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 23px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 25px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.42857;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}
.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);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 17px;
  line-height: 1.33333;
  border-radius: 2px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.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: 13px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  -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;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 8px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.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;
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #777777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.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;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.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);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.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;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.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;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group .form-control:focus {
  z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.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;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 2px;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 17px;
  border-radius: 2px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

.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;
}

.input-group-addon:first-child {
  border-right: 0;
}

.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;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 8px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857;
  border: 1px solid transparent;
  border-radius: 2px 2px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}

.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 2px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 2px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 2px 2px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.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;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.label-default {
  background-color: #777777;
}
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #5e5e5e;
}

.label-primary {
  background-color: #337ab7;
}
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #286090;
}

.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44;
}

.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5;
}

.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f;
}

.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c;
}

.alert {
  padding: 15px;
  margin-bottom: 18px;
  border: 1px solid transparent;
  border-radius: 2px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 18px;
  margin-bottom: 18px;
  background-color: #f5f5f5;
  border-radius: 2px;
  -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);
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
  background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
}

.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}

button.list-group-item {
  width: 100%;
  text-align: left;
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

.panel {
  margin-bottom: 18px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 1px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 1px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 18px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 2px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 2px;
  -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);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-lg {
  padding: 24px;
  border-radius: 2px;
}

.well-sm {
  padding: 9px;
  border-radius: 2px;
}

.close {
  float: right;
  font-size: 19.5px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  -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: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header:before, .modal-header:after {
  content: " ";
  display: table;
}
.modal-header:after {
  clear: both;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .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);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 2px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 13px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 1px 1px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
.tabs-group.tabs-group-style-1 .nav-tabs {
  border-bottom: 0;
}
.tabs-group.tabs-group-style-1 .nav-tabs li {
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  text-transform: uppercase;
  font-size: 1.07692em;
  font-weight: 800;
}
.tabs-group.tabs-group-style-1 .nav-tabs li a {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: 0;
  border: 0;
  background-color: #444444;
  color: #FFFFFF;
}
.tabs-group.tabs-group-style-1 .nav-tabs li.active a {
  background-color: #EEEEEE;
  color: #1f723a;
}
.tabs-group.tabs-group-style-1 .tab-content .tab-pane {
  padding: 15px 20px;
  background-color: #EEEEEE;
}

/**
 * Fix per il problema dello scorrimento involontario quando si visualizza un video 
 * in Fancybox (limita l'utilizzo degli strumenti di navigazione del video embeddato).
 */
.fancybox-wrap > .fancybox-skin {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.fancybox-wrap > .fancybox-skin > .fancybox-outer .fancybox-nav {
  top: 10%;
  width: 50px;
  height: 76%;
}

.slick-slider {
  -webkit-box-sizing: "border-box";
  -moz-box-sizing: "border-box";
  box-sizing: "border-box";
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slider {
  overflow: hidden;
}
.slider.slider-async, .slider.slick-initialized {
  height: auto;
}
.slider .slick-prev,
.slider .slick-next {
  z-index: 10;
}
.slider .slick-prev.slick-disabled,
.slider .slick-next.slick-disabled {
  cursor: default;
}
.slider .slick-dots {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.slider.slider-paging-arrows-1 .slick-prev,
.slider.slider-paging-arrows-1 .slick-next {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: rgba(17, 17, 17, 0.3) 0 2px 5px 0px;
  box-shadow: rgba(17, 17, 17, 0.3) 0 2px 5px 0px;
  background-color: #ff00ff;
  position: absolute;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  top: 50%;
  margin-top: -14px;
  width: 28px;
  height: 28px;
  z-index: 1002;
}
.slider.slider-paging-arrows-1 .slick-prev.slick-disabled,
.slider.slider-paging-arrows-1 .slick-next.slick-disabled {
  background-color: #CCCCCC;
}
.slider.slider-paging-arrows-1 .slick-prev {
  background-repeat: no-repeat;
  background-position: center center;
  left: -11px;
}
.slider.slider-paging-arrows-1 .slick-next {
  background-repeat: no-repeat;
  background-position: center center;
  right: -11px;
}
.slider.slider-paging-dots-centered .slick-dots {
  text-align: center;
}
.slider.slider-paging-dots-1 .slick-dots {
  z-index: 1111;
  position: relative;
  padding: 0;
  margin: 0;
}
.slider.slider-paging-dots-1 .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  cursor: hand;
  margin: 0 3px;
  padding: 0;
  width: 12px;
  height: 12px;
  overflow: hidden;
  background-color: #FFFFFF;
  will-change: background-color;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.slider.slider-paging-dots-1 .slick-dots li button {
  display: none;
}
.slider.slider-paging-dots-1 .slick-dots li:hover, .slider.slider-paging-dots-1 .slick-dots li.slick-active {
  opacity: 1;
  filter: alpha(opacity=100);
}

@media (max-width: 840px) {
  .slider.slider-paging-dots-1 .slick-dots {
    margin: 15px 0 0 0;
  }
  .slider.slider-paging-dots-1 .slick-dots li {
    width: 24px;
    height: 24px;
    margin: 0 5px;
  }
}
.icon.icon-fa, #box-nav-main-mobile nav ul li a.icon.nav-collapsible-trigger {
  text-indent: 0;
}

.icon-fa.icon-fa-0-5x, #box-nav-main-mobile nav ul li a.icon-fa-0-5x.nav-collapsible-trigger {
  font-size: 0.5em;
}
.icon-fa.icon-fa-1-5x, #box-nav-main-mobile nav ul li a.icon-fa-1-5x.nav-collapsible-trigger {
  font-size: 1.5em;
}
.icon-fa.icon-fa-2-5x, #box-nav-main-mobile nav ul li a.icon-fa-2-5x.nav-collapsible-trigger {
  font-size: 2.5em;
}
.icon-fa.icon-fa-3-5x, #box-nav-main-mobile nav ul li a.icon-fa-3-5x.nav-collapsible-trigger {
  font-size: 3.5em;
}
.icon-fa.icon-fa-4-5x, #box-nav-main-mobile nav ul li a.icon-fa-4-5x.nav-collapsible-trigger {
  font-size: 4.5em;
}
.icon-fa.icon-fa-5-5x, #box-nav-main-mobile nav ul li a.icon-fa-5-5x.nav-collapsible-trigger {
  font-size: 5.5em;
}
.icon-fa.icon-fa-6-5x, #box-nav-main-mobile nav ul li a.icon-fa-6-5x.nav-collapsible-trigger {
  font-size: 6.5em;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../../vendor/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../../vendor/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../../vendor/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../../vendor/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../../vendor/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../../vendor/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon-fa, #box-nav-main-mobile nav ul li a.nav-collapsible-trigger {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.icon-fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.icon-fa-2x {
  font-size: 2em;
}

.icon-fa-3x {
  font-size: 3em;
}

.icon-fa-4x {
  font-size: 4em;
}

.icon-fa-5x {
  font-size: 5em;
}

.icon-fa-fw {
  width: 1.28571em;
  text-align: center;
}

.icon-fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}
.icon-fa-ul > li {
  position: relative;
}

.icon-fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}
.icon-fa-li.icon-fa-lg {
  left: -1.85714em;
}

.icon-fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.icon-fa-pull-left {
  float: left;
}

.icon-fa-pull-right {
  float: right;
}

.icon-fa.icon-fa-pull-left, #box-nav-main-mobile nav ul li a.icon-fa-pull-left.nav-collapsible-trigger {
  margin-right: .3em;
}
.icon-fa.icon-fa-pull-right, #box-nav-main-mobile nav ul li a.icon-fa-pull-right.nav-collapsible-trigger {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.icon-fa.pull-left, #box-nav-main-mobile nav ul li a.pull-left.nav-collapsible-trigger {
  margin-right: .3em;
}
.icon-fa.pull-right, #box-nav-main-mobile nav ul li a.pull-right.nav-collapsible-trigger {
  margin-left: .3em;
}

.icon-fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.icon-fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.icon-fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.icon-fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.icon-fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .icon-fa-rotate-90,
:root .icon-fa-rotate-180,
:root .icon-fa-rotate-270,
:root .icon-fa-flip-horizontal,
:root .icon-fa-flip-vertical {
  filter: none;
}

.icon-fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.icon-fa-stack-1x, .icon-fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.icon-fa-stack-1x {
  line-height: inherit;
}

.icon-fa-stack-2x {
  font-size: 2em;
}

.icon-fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.icon-fa-glass:before {
  content: "";
}

.icon-fa-music:before {
  content: "";
}

.icon-fa-search:before {
  content: "";
}

.icon-fa-envelope-o:before {
  content: "";
}

.icon-fa-heart:before {
  content: "";
}

.icon-fa-star:before {
  content: "";
}

.icon-fa-star-o:before {
  content: "";
}

.icon-fa-user:before {
  content: "";
}

.icon-fa-film:before {
  content: "";
}

.icon-fa-th-large:before {
  content: "";
}

.icon-fa-th:before {
  content: "";
}

.icon-fa-th-list:before {
  content: "";
}

.icon-fa-check:before {
  content: "";
}

.icon-fa-remove:before,
.icon-fa-close:before,
.icon-fa-times:before {
  content: "";
}

.icon-fa-search-plus:before {
  content: "";
}

.icon-fa-search-minus:before {
  content: "";
}

.icon-fa-power-off:before {
  content: "";
}

.icon-fa-signal:before {
  content: "";
}

.icon-fa-gear:before,
.icon-fa-cog:before {
  content: "";
}

.icon-fa-trash-o:before {
  content: "";
}

.icon-fa-home:before {
  content: "";
}

.icon-fa-file-o:before {
  content: "";
}

.icon-fa-clock-o:before {
  content: "";
}

.icon-fa-road:before {
  content: "";
}

.icon-fa-download:before {
  content: "";
}

.icon-fa-arrow-circle-o-down:before {
  content: "";
}

.icon-fa-arrow-circle-o-up:before {
  content: "";
}

.icon-fa-inbox:before {
  content: "";
}

.icon-fa-play-circle-o:before {
  content: "";
}

.icon-fa-rotate-right:before,
.icon-fa-repeat:before {
  content: "";
}

.icon-fa-refresh:before {
  content: "";
}

.icon-fa-list-alt:before {
  content: "";
}

.icon-fa-lock:before {
  content: "";
}

.icon-fa-flag:before {
  content: "";
}

.icon-fa-headphones:before {
  content: "";
}

.icon-fa-volume-off:before {
  content: "";
}

.icon-fa-volume-down:before {
  content: "";
}

.icon-fa-volume-up:before {
  content: "";
}

.icon-fa-qrcode:before {
  content: "";
}

.icon-fa-barcode:before {
  content: "";
}

.icon-fa-tag:before {
  content: "";
}

.icon-fa-tags:before {
  content: "";
}

.icon-fa-book:before {
  content: "";
}

.icon-fa-bookmark:before {
  content: "";
}

.icon-fa-print:before {
  content: "";
}

.icon-fa-camera:before {
  content: "";
}

.icon-fa-font:before {
  content: "";
}

.icon-fa-bold:before {
  content: "";
}

.icon-fa-italic:before {
  content: "";
}

.icon-fa-text-height:before {
  content: "";
}

.icon-fa-text-width:before {
  content: "";
}

.icon-fa-align-left:before {
  content: "";
}

.icon-fa-align-center:before {
  content: "";
}

.icon-fa-align-right:before {
  content: "";
}

.icon-fa-align-justify:before {
  content: "";
}

.icon-fa-list:before {
  content: "";
}

.icon-fa-dedent:before,
.icon-fa-outdent:before {
  content: "";
}

.icon-fa-indent:before {
  content: "";
}

.icon-fa-video-camera:before {
  content: "";
}

.icon-fa-photo:before,
.icon-fa-image:before,
.icon-fa-picture-o:before {
  content: "";
}

.icon-fa-pencil:before {
  content: "";
}

.icon-fa-map-marker:before {
  content: "";
}

.icon-fa-adjust:before {
  content: "";
}

.icon-fa-tint:before {
  content: "";
}

.icon-fa-edit:before,
.icon-fa-pencil-square-o:before {
  content: "";
}

.icon-fa-share-square-o:before {
  content: "";
}

.icon-fa-check-square-o:before {
  content: "";
}

.icon-fa-arrows:before {
  content: "";
}

.icon-fa-step-backward:before {
  content: "";
}

.icon-fa-fast-backward:before {
  content: "";
}

.icon-fa-backward:before {
  content: "";
}

.icon-fa-play:before {
  content: "";
}

.icon-fa-pause:before {
  content: "";
}

.icon-fa-stop:before {
  content: "";
}

.icon-fa-forward:before {
  content: "";
}

.icon-fa-fast-forward:before {
  content: "";
}

.icon-fa-step-forward:before {
  content: "";
}

.icon-fa-eject:before {
  content: "";
}

.icon-fa-chevron-left:before {
  content: "";
}

.icon-fa-chevron-right:before {
  content: "";
}

.icon-fa-plus-circle:before {
  content: "";
}

.icon-fa-minus-circle:before {
  content: "";
}

.icon-fa-times-circle:before {
  content: "";
}

.icon-fa-check-circle:before {
  content: "";
}

.icon-fa-question-circle:before {
  content: "";
}

.icon-fa-info-circle:before {
  content: "";
}

.icon-fa-crosshairs:before {
  content: "";
}

.icon-fa-times-circle-o:before {
  content: "";
}

.icon-fa-check-circle-o:before {
  content: "";
}

.icon-fa-ban:before {
  content: "";
}

.icon-fa-arrow-left:before {
  content: "";
}

.icon-fa-arrow-right:before {
  content: "";
}

.icon-fa-arrow-up:before {
  content: "";
}

.icon-fa-arrow-down:before {
  content: "";
}

.icon-fa-mail-forward:before,
.icon-fa-share:before {
  content: "";
}

.icon-fa-expand:before {
  content: "";
}

.icon-fa-compress:before {
  content: "";
}

.icon-fa-plus:before {
  content: "";
}

.icon-fa-minus:before {
  content: "";
}

.icon-fa-asterisk:before {
  content: "";
}

.icon-fa-exclamation-circle:before {
  content: "";
}

.icon-fa-gift:before {
  content: "";
}

.icon-fa-leaf:before {
  content: "";
}

.icon-fa-fire:before {
  content: "";
}

.icon-fa-eye:before {
  content: "";
}

.icon-fa-eye-slash:before {
  content: "";
}

.icon-fa-warning:before,
.icon-fa-exclamation-triangle:before {
  content: "";
}

.icon-fa-plane:before {
  content: "";
}

.icon-fa-calendar:before {
  content: "";
}

.icon-fa-random:before {
  content: "";
}

.icon-fa-comment:before {
  content: "";
}

.icon-fa-magnet:before {
  content: "";
}

.icon-fa-chevron-up:before {
  content: "";
}

.icon-fa-chevron-down:before {
  content: "";
}

.icon-fa-retweet:before {
  content: "";
}

.icon-fa-shopping-cart:before {
  content: "";
}

.icon-fa-folder:before {
  content: "";
}

.icon-fa-folder-open:before {
  content: "";
}

.icon-fa-arrows-v:before {
  content: "";
}

.icon-fa-arrows-h:before {
  content: "";
}

.icon-fa-bar-chart-o:before,
.icon-fa-bar-chart:before {
  content: "";
}

.icon-fa-twitter-square:before {
  content: "";
}

.icon-fa-facebook-square:before {
  content: "";
}

.icon-fa-camera-retro:before {
  content: "";
}

.icon-fa-key:before {
  content: "";
}

.icon-fa-gears:before,
.icon-fa-cogs:before {
  content: "";
}

.icon-fa-comments:before {
  content: "";
}

.icon-fa-thumbs-o-up:before {
  content: "";
}

.icon-fa-thumbs-o-down:before {
  content: "";
}

.icon-fa-star-half:before {
  content: "";
}

.icon-fa-heart-o:before {
  content: "";
}

.icon-fa-sign-out:before {
  content: "";
}

.icon-fa-linkedin-square:before {
  content: "";
}

.icon-fa-thumb-tack:before {
  content: "";
}

.icon-fa-external-link:before {
  content: "";
}

.icon-fa-sign-in:before {
  content: "";
}

.icon-fa-trophy:before {
  content: "";
}

.icon-fa-github-square:before {
  content: "";
}

.icon-fa-upload:before {
  content: "";
}

.icon-fa-lemon-o:before {
  content: "";
}

.icon-fa-phone:before {
  content: "";
}

.icon-fa-square-o:before {
  content: "";
}

.icon-fa-bookmark-o:before {
  content: "";
}

.icon-fa-phone-square:before {
  content: "";
}

.icon-fa-twitter:before {
  content: "";
}

.icon-fa-facebook-f:before,
.icon-fa-facebook:before {
  content: "";
}

.icon-fa-github:before {
  content: "";
}

.icon-fa-unlock:before {
  content: "";
}

.icon-fa-credit-card:before {
  content: "";
}

.icon-fa-feed:before,
.icon-fa-rss:before {
  content: "";
}

.icon-fa-hdd-o:before {
  content: "";
}

.icon-fa-bullhorn:before {
  content: "";
}

.icon-fa-bell:before {
  content: "";
}

.icon-fa-certificate:before {
  content: "";
}

.icon-fa-hand-o-right:before {
  content: "";
}

.icon-fa-hand-o-left:before {
  content: "";
}

.icon-fa-hand-o-up:before {
  content: "";
}

.icon-fa-hand-o-down:before {
  content: "";
}

.icon-fa-arrow-circle-left:before {
  content: "";
}

.icon-fa-arrow-circle-right:before {
  content: "";
}

.icon-fa-arrow-circle-up:before {
  content: "";
}

.icon-fa-arrow-circle-down:before {
  content: "";
}

.icon-fa-globe:before {
  content: "";
}

.icon-fa-wrench:before {
  content: "";
}

.icon-fa-tasks:before {
  content: "";
}

.icon-fa-filter:before {
  content: "";
}

.icon-fa-briefcase:before {
  content: "";
}

.icon-fa-arrows-alt:before {
  content: "";
}

.icon-fa-group:before,
.icon-fa-users:before {
  content: "";
}

.icon-fa-chain:before,
.icon-fa-link:before {
  content: "";
}

.icon-fa-cloud:before {
  content: "";
}

.icon-fa-flask:before {
  content: "";
}

.icon-fa-cut:before,
.icon-fa-scissors:before {
  content: "";
}

.icon-fa-copy:before,
.icon-fa-files-o:before {
  content: "";
}

.icon-fa-paperclip:before {
  content: "";
}

.icon-fa-save:before,
.icon-fa-floppy-o:before {
  content: "";
}

.icon-fa-square:before {
  content: "";
}

.icon-fa-navicon:before,
.icon-fa-reorder:before,
.icon-fa-bars:before {
  content: "";
}

.icon-fa-list-ul:before {
  content: "";
}

.icon-fa-list-ol:before {
  content: "";
}

.icon-fa-strikethrough:before {
  content: "";
}

.icon-fa-underline:before {
  content: "";
}

.icon-fa-table:before {
  content: "";
}

.icon-fa-magic:before {
  content: "";
}

.icon-fa-truck:before {
  content: "";
}

.icon-fa-pinterest:before {
  content: "";
}

.icon-fa-pinterest-square:before {
  content: "";
}

.icon-fa-google-plus-square:before {
  content: "";
}

.icon-fa-google-plus:before {
  content: "";
}

.icon-fa-money:before {
  content: "";
}

.icon-fa-caret-down:before {
  content: "";
}

.icon-fa-caret-up:before {
  content: "";
}

.icon-fa-caret-left:before {
  content: "";
}

.icon-fa-caret-right:before {
  content: "";
}

.icon-fa-columns:before {
  content: "";
}

.icon-fa-unsorted:before,
.icon-fa-sort:before {
  content: "";
}

.icon-fa-sort-down:before,
.icon-fa-sort-desc:before {
  content: "";
}

.icon-fa-sort-up:before,
.icon-fa-sort-asc:before {
  content: "";
}

.icon-fa-envelope:before {
  content: "";
}

.icon-fa-linkedin:before {
  content: "";
}

.icon-fa-rotate-left:before,
.icon-fa-undo:before {
  content: "";
}

.icon-fa-legal:before,
.icon-fa-gavel:before {
  content: "";
}

.icon-fa-dashboard:before,
.icon-fa-tachometer:before {
  content: "";
}

.icon-fa-comment-o:before {
  content: "";
}

.icon-fa-comments-o:before {
  content: "";
}

.icon-fa-flash:before,
.icon-fa-bolt:before {
  content: "";
}

.icon-fa-sitemap:before {
  content: "";
}

.icon-fa-umbrella:before {
  content: "";
}

.icon-fa-paste:before,
.icon-fa-clipboard:before {
  content: "";
}

.icon-fa-lightbulb-o:before {
  content: "";
}

.icon-fa-exchange:before {
  content: "";
}

.icon-fa-cloud-download:before {
  content: "";
}

.icon-fa-cloud-upload:before {
  content: "";
}

.icon-fa-user-md:before {
  content: "";
}

.icon-fa-stethoscope:before {
  content: "";
}

.icon-fa-suitcase:before {
  content: "";
}

.icon-fa-bell-o:before {
  content: "";
}

.icon-fa-coffee:before {
  content: "";
}

.icon-fa-cutlery:before {
  content: "";
}

.icon-fa-file-text-o:before {
  content: "";
}

.icon-fa-building-o:before {
  content: "";
}

.icon-fa-hospital-o:before {
  content: "";
}

.icon-fa-ambulance:before {
  content: "";
}

.icon-fa-medkit:before {
  content: "";
}

.icon-fa-fighter-jet:before {
  content: "";
}

.icon-fa-beer:before {
  content: "";
}

.icon-fa-h-square:before {
  content: "";
}

.icon-fa-plus-square:before {
  content: "";
}

.icon-fa-angle-double-left:before {
  content: "";
}

.icon-fa-angle-double-right:before {
  content: "";
}

.icon-fa-angle-double-up:before {
  content: "";
}

.icon-fa-angle-double-down:before {
  content: "";
}

.icon-fa-angle-left:before {
  content: "";
}

.icon-fa-angle-right:before {
  content: "";
}

.icon-fa-angle-up:before {
  content: "";
}

.icon-fa-angle-down:before {
  content: "";
}

.icon-fa-desktop:before {
  content: "";
}

.icon-fa-laptop:before {
  content: "";
}

.icon-fa-tablet:before {
  content: "";
}

.icon-fa-mobile-phone:before,
.icon-fa-mobile:before {
  content: "";
}

.icon-fa-circle-o:before {
  content: "";
}

.icon-fa-quote-left:before {
  content: "";
}

.icon-fa-quote-right:before {
  content: "";
}

.icon-fa-spinner:before {
  content: "";
}

.icon-fa-circle:before {
  content: "";
}

.icon-fa-mail-reply:before,
.icon-fa-reply:before {
  content: "";
}

.icon-fa-github-alt:before {
  content: "";
}

.icon-fa-folder-o:before {
  content: "";
}

.icon-fa-folder-open-o:before {
  content: "";
}

.icon-fa-smile-o:before {
  content: "";
}

.icon-fa-frown-o:before {
  content: "";
}

.icon-fa-meh-o:before {
  content: "";
}

.icon-fa-gamepad:before {
  content: "";
}

.icon-fa-keyboard-o:before {
  content: "";
}

.icon-fa-flag-o:before {
  content: "";
}

.icon-fa-flag-checkered:before {
  content: "";
}

.icon-fa-terminal:before {
  content: "";
}

.icon-fa-code:before {
  content: "";
}

.icon-fa-mail-reply-all:before,
.icon-fa-reply-all:before {
  content: "";
}

.icon-fa-star-half-empty:before,
.icon-fa-star-half-full:before,
.icon-fa-star-half-o:before {
  content: "";
}

.icon-fa-location-arrow:before {
  content: "";
}

.icon-fa-crop:before {
  content: "";
}

.icon-fa-code-fork:before {
  content: "";
}

.icon-fa-unlink:before,
.icon-fa-chain-broken:before {
  content: "";
}

.icon-fa-question:before {
  content: "";
}

.icon-fa-info:before {
  content: "";
}

.icon-fa-exclamation:before {
  content: "";
}

.icon-fa-superscript:before {
  content: "";
}

.icon-fa-subscript:before {
  content: "";
}

.icon-fa-eraser:before {
  content: "";
}

.icon-fa-puzzle-piece:before {
  content: "";
}

.icon-fa-microphone:before {
  content: "";
}

.icon-fa-microphone-slash:before {
  content: "";
}

.icon-fa-shield:before {
  content: "";
}

.icon-fa-calendar-o:before {
  content: "";
}

.icon-fa-fire-extinguisher:before {
  content: "";
}

.icon-fa-rocket:before {
  content: "";
}

.icon-fa-maxcdn:before {
  content: "";
}

.icon-fa-chevron-circle-left:before {
  content: "";
}

.icon-fa-chevron-circle-right:before {
  content: "";
}

.icon-fa-chevron-circle-up:before {
  content: "";
}

.icon-fa-chevron-circle-down:before {
  content: "";
}

.icon-fa-html5:before {
  content: "";
}

.icon-fa-css3:before {
  content: "";
}

.icon-fa-anchor:before {
  content: "";
}

.icon-fa-unlock-alt:before {
  content: "";
}

.icon-fa-bullseye:before {
  content: "";
}

.icon-fa-ellipsis-h:before {
  content: "";
}

.icon-fa-ellipsis-v:before {
  content: "";
}

.icon-fa-rss-square:before {
  content: "";
}

.icon-fa-play-circle:before {
  content: "";
}

.icon-fa-ticket:before {
  content: "";
}

.icon-fa-minus-square:before {
  content: "";
}

.icon-fa-minus-square-o:before {
  content: "";
}

.icon-fa-level-up:before {
  content: "";
}

.icon-fa-level-down:before {
  content: "";
}

.icon-fa-check-square:before {
  content: "";
}

.icon-fa-pencil-square:before {
  content: "";
}

.icon-fa-external-link-square:before {
  content: "";
}

.icon-fa-share-square:before {
  content: "";
}

.icon-fa-compass:before {
  content: "";
}

.icon-fa-toggle-down:before,
.icon-fa-caret-square-o-down:before {
  content: "";
}

.icon-fa-toggle-up:before,
.icon-fa-caret-square-o-up:before {
  content: "";
}

.icon-fa-toggle-right:before,
.icon-fa-caret-square-o-right:before {
  content: "";
}

.icon-fa-euro:before,
.icon-fa-eur:before {
  content: "";
}

.icon-fa-gbp:before {
  content: "";
}

.icon-fa-dollar:before,
.icon-fa-usd:before {
  content: "";
}

.icon-fa-rupee:before,
.icon-fa-inr:before {
  content: "";
}

.icon-fa-cny:before,
.icon-fa-rmb:before,
.icon-fa-yen:before,
.icon-fa-jpy:before {
  content: "";
}

.icon-fa-ruble:before,
.icon-fa-rouble:before,
.icon-fa-rub:before {
  content: "";
}

.icon-fa-won:before,
.icon-fa-krw:before {
  content: "";
}

.icon-fa-bitcoin:before,
.icon-fa-btc:before {
  content: "";
}

.icon-fa-file:before {
  content: "";
}

.icon-fa-file-text:before {
  content: "";
}

.icon-fa-sort-alpha-asc:before {
  content: "";
}

.icon-fa-sort-alpha-desc:before {
  content: "";
}

.icon-fa-sort-amount-asc:before {
  content: "";
}

.icon-fa-sort-amount-desc:before {
  content: "";
}

.icon-fa-sort-numeric-asc:before {
  content: "";
}

.icon-fa-sort-numeric-desc:before {
  content: "";
}

.icon-fa-thumbs-up:before {
  content: "";
}

.icon-fa-thumbs-down:before {
  content: "";
}

.icon-fa-youtube-square:before {
  content: "";
}

.icon-fa-youtube:before {
  content: "";
}

.icon-fa-xing:before {
  content: "";
}

.icon-fa-xing-square:before {
  content: "";
}

.icon-fa-youtube-play:before {
  content: "";
}

.icon-fa-dropbox:before {
  content: "";
}

.icon-fa-stack-overflow:before {
  content: "";
}

.icon-fa-instagram:before {
  content: "";
}

.icon-fa-flickr:before {
  content: "";
}

.icon-fa-adn:before {
  content: "";
}

.icon-fa-bitbucket:before {
  content: "";
}

.icon-fa-bitbucket-square:before {
  content: "";
}

.icon-fa-tumblr:before {
  content: "";
}

.icon-fa-tumblr-square:before {
  content: "";
}

.icon-fa-long-arrow-down:before {
  content: "";
}

.icon-fa-long-arrow-up:before {
  content: "";
}

.icon-fa-long-arrow-left:before {
  content: "";
}

.icon-fa-long-arrow-right:before {
  content: "";
}

.icon-fa-apple:before {
  content: "";
}

.icon-fa-windows:before {
  content: "";
}

.icon-fa-android:before {
  content: "";
}

.icon-fa-linux:before {
  content: "";
}

.icon-fa-dribbble:before {
  content: "";
}

.icon-fa-skype:before {
  content: "";
}

.icon-fa-foursquare:before {
  content: "";
}

.icon-fa-trello:before {
  content: "";
}

.icon-fa-female:before {
  content: "";
}

.icon-fa-male:before {
  content: "";
}

.icon-fa-gittip:before,
.icon-fa-gratipay:before {
  content: "";
}

.icon-fa-sun-o:before {
  content: "";
}

.icon-fa-moon-o:before {
  content: "";
}

.icon-fa-archive:before {
  content: "";
}

.icon-fa-bug:before {
  content: "";
}

.icon-fa-vk:before {
  content: "";
}

.icon-fa-weibo:before {
  content: "";
}

.icon-fa-renren:before {
  content: "";
}

.icon-fa-pagelines:before {
  content: "";
}

.icon-fa-stack-exchange:before {
  content: "";
}

.icon-fa-arrow-circle-o-right:before {
  content: "";
}

.icon-fa-arrow-circle-o-left:before {
  content: "";
}

.icon-fa-toggle-left:before,
.icon-fa-caret-square-o-left:before {
  content: "";
}

.icon-fa-dot-circle-o:before {
  content: "";
}

.icon-fa-wheelchair:before {
  content: "";
}

.icon-fa-vimeo-square:before {
  content: "";
}

.icon-fa-turkish-lira:before,
.icon-fa-try:before {
  content: "";
}

.icon-fa-plus-square-o:before {
  content: "";
}

.icon-fa-space-shuttle:before {
  content: "";
}

.icon-fa-slack:before {
  content: "";
}

.icon-fa-envelope-square:before {
  content: "";
}

.icon-fa-wordpress:before {
  content: "";
}

.icon-fa-openid:before {
  content: "";
}

.icon-fa-institution:before,
.icon-fa-bank:before,
.icon-fa-university:before {
  content: "";
}

.icon-fa-mortar-board:before,
.icon-fa-graduation-cap:before {
  content: "";
}

.icon-fa-yahoo:before {
  content: "";
}

.icon-fa-google:before {
  content: "";
}

.icon-fa-reddit:before {
  content: "";
}

.icon-fa-reddit-square:before {
  content: "";
}

.icon-fa-stumbleupon-circle:before {
  content: "";
}

.icon-fa-stumbleupon:before {
  content: "";
}

.icon-fa-delicious:before {
  content: "";
}

.icon-fa-digg:before {
  content: "";
}

.icon-fa-pied-piper-pp:before {
  content: "";
}

.icon-fa-pied-piper-alt:before {
  content: "";
}

.icon-fa-drupal:before {
  content: "";
}

.icon-fa-joomla:before {
  content: "";
}

.icon-fa-language:before {
  content: "";
}

.icon-fa-fax:before {
  content: "";
}

.icon-fa-building:before {
  content: "";
}

.icon-fa-child:before {
  content: "";
}

.icon-fa-paw:before {
  content: "";
}

.icon-fa-spoon:before {
  content: "";
}

.icon-fa-cube:before {
  content: "";
}

.icon-fa-cubes:before {
  content: "";
}

.icon-fa-behance:before {
  content: "";
}

.icon-fa-behance-square:before {
  content: "";
}

.icon-fa-steam:before {
  content: "";
}

.icon-fa-steam-square:before {
  content: "";
}

.icon-fa-recycle:before {
  content: "";
}

.icon-fa-automobile:before,
.icon-fa-car:before {
  content: "";
}

.icon-fa-cab:before,
.icon-fa-taxi:before {
  content: "";
}

.icon-fa-tree:before {
  content: "";
}

.icon-fa-spotify:before {
  content: "";
}

.icon-fa-deviantart:before {
  content: "";
}

.icon-fa-soundcloud:before {
  content: "";
}

.icon-fa-database:before {
  content: "";
}

.icon-fa-file-pdf-o:before {
  content: "";
}

.icon-fa-file-word-o:before {
  content: "";
}

.icon-fa-file-excel-o:before {
  content: "";
}

.icon-fa-file-powerpoint-o:before {
  content: "";
}

.icon-fa-file-photo-o:before,
.icon-fa-file-picture-o:before,
.icon-fa-file-image-o:before {
  content: "";
}

.icon-fa-file-zip-o:before,
.icon-fa-file-archive-o:before {
  content: "";
}

.icon-fa-file-sound-o:before,
.icon-fa-file-audio-o:before {
  content: "";
}

.icon-fa-file-movie-o:before,
.icon-fa-file-video-o:before {
  content: "";
}

.icon-fa-file-code-o:before {
  content: "";
}

.icon-fa-vine:before {
  content: "";
}

.icon-fa-codepen:before {
  content: "";
}

.icon-fa-jsfiddle:before {
  content: "";
}

.icon-fa-life-bouy:before,
.icon-fa-life-buoy:before,
.icon-fa-life-saver:before,
.icon-fa-support:before,
.icon-fa-life-ring:before {
  content: "";
}

.icon-fa-circle-o-notch:before {
  content: "";
}

.icon-fa-ra:before,
.icon-fa-resistance:before,
.icon-fa-rebel:before {
  content: "";
}

.icon-fa-ge:before,
.icon-fa-empire:before {
  content: "";
}

.icon-fa-git-square:before {
  content: "";
}

.icon-fa-git:before {
  content: "";
}

.icon-fa-y-combinator-square:before,
.icon-fa-yc-square:before,
.icon-fa-hacker-news:before {
  content: "";
}

.icon-fa-tencent-weibo:before {
  content: "";
}

.icon-fa-qq:before {
  content: "";
}

.icon-fa-wechat:before,
.icon-fa-weixin:before {
  content: "";
}

.icon-fa-send:before,
.icon-fa-paper-plane:before {
  content: "";
}

.icon-fa-send-o:before,
.icon-fa-paper-plane-o:before {
  content: "";
}

.icon-fa-history:before {
  content: "";
}

.icon-fa-circle-thin:before {
  content: "";
}

.icon-fa-header:before {
  content: "";
}

.icon-fa-paragraph:before {
  content: "";
}

.icon-fa-sliders:before {
  content: "";
}

.icon-fa-share-alt:before {
  content: "";
}

.icon-fa-share-alt-square:before {
  content: "";
}

.icon-fa-bomb:before {
  content: "";
}

.icon-fa-soccer-ball-o:before,
.icon-fa-futbol-o:before {
  content: "";
}

.icon-fa-tty:before {
  content: "";
}

.icon-fa-binoculars:before {
  content: "";
}

.icon-fa-plug:before {
  content: "";
}

.icon-fa-slideshare:before {
  content: "";
}

.icon-fa-twitch:before {
  content: "";
}

.icon-fa-yelp:before {
  content: "";
}

.icon-fa-newspaper-o:before {
  content: "";
}

.icon-fa-wifi:before {
  content: "";
}

.icon-fa-calculator:before {
  content: "";
}

.icon-fa-paypal:before {
  content: "";
}

.icon-fa-google-wallet:before {
  content: "";
}

.icon-fa-cc-visa:before {
  content: "";
}

.icon-fa-cc-mastercard:before {
  content: "";
}

.icon-fa-cc-discover:before {
  content: "";
}

.icon-fa-cc-amex:before {
  content: "";
}

.icon-fa-cc-paypal:before {
  content: "";
}

.icon-fa-cc-stripe:before {
  content: "";
}

.icon-fa-bell-slash:before {
  content: "";
}

.icon-fa-bell-slash-o:before {
  content: "";
}

.icon-fa-trash:before {
  content: "";
}

.icon-fa-copyright:before {
  content: "";
}

.icon-fa-at:before {
  content: "";
}

.icon-fa-eyedropper:before {
  content: "";
}

.icon-fa-paint-brush:before {
  content: "";
}

.icon-fa-birthday-cake:before {
  content: "";
}

.icon-fa-area-chart:before {
  content: "";
}

.icon-fa-pie-chart:before {
  content: "";
}

.icon-fa-line-chart:before {
  content: "";
}

.icon-fa-lastfm:before {
  content: "";
}

.icon-fa-lastfm-square:before {
  content: "";
}

.icon-fa-toggle-off:before {
  content: "";
}

.icon-fa-toggle-on:before {
  content: "";
}

.icon-fa-bicycle:before {
  content: "";
}

.icon-fa-bus:before {
  content: "";
}

.icon-fa-ioxhost:before {
  content: "";
}

.icon-fa-angellist:before {
  content: "";
}

.icon-fa-cc:before {
  content: "";
}

.icon-fa-shekel:before,
.icon-fa-sheqel:before,
.icon-fa-ils:before {
  content: "";
}

.icon-fa-meanpath:before {
  content: "";
}

.icon-fa-buysellads:before {
  content: "";
}

.icon-fa-connectdevelop:before {
  content: "";
}

.icon-fa-dashcube:before {
  content: "";
}

.icon-fa-forumbee:before {
  content: "";
}

.icon-fa-leanpub:before {
  content: "";
}

.icon-fa-sellsy:before {
  content: "";
}

.icon-fa-shirtsinbulk:before {
  content: "";
}

.icon-fa-simplybuilt:before {
  content: "";
}

.icon-fa-skyatlas:before {
  content: "";
}

.icon-fa-cart-plus:before {
  content: "";
}

.icon-fa-cart-arrow-down:before {
  content: "";
}

.icon-fa-diamond:before {
  content: "";
}

.icon-fa-ship:before {
  content: "";
}

.icon-fa-user-secret:before {
  content: "";
}

.icon-fa-motorcycle:before {
  content: "";
}

.icon-fa-street-view:before {
  content: "";
}

.icon-fa-heartbeat:before {
  content: "";
}

.icon-fa-venus:before {
  content: "";
}

.icon-fa-mars:before {
  content: "";
}

.icon-fa-mercury:before {
  content: "";
}

.icon-fa-intersex:before,
.icon-fa-transgender:before {
  content: "";
}

.icon-fa-transgender-alt:before {
  content: "";
}

.icon-fa-venus-double:before {
  content: "";
}

.icon-fa-mars-double:before {
  content: "";
}

.icon-fa-venus-mars:before {
  content: "";
}

.icon-fa-mars-stroke:before {
  content: "";
}

.icon-fa-mars-stroke-v:before {
  content: "";
}

.icon-fa-mars-stroke-h:before {
  content: "";
}

.icon-fa-neuter:before {
  content: "";
}

.icon-fa-genderless:before {
  content: "";
}

.icon-fa-facebook-official:before {
  content: "";
}

.icon-fa-pinterest-p:before {
  content: "";
}

.icon-fa-whatsapp:before {
  content: "";
}

.icon-fa-server:before {
  content: "";
}

.icon-fa-user-plus:before {
  content: "";
}

.icon-fa-user-times:before {
  content: "";
}

.icon-fa-hotel:before,
.icon-fa-bed:before {
  content: "";
}

.icon-fa-viacoin:before {
  content: "";
}

.icon-fa-train:before {
  content: "";
}

.icon-fa-subway:before {
  content: "";
}

.icon-fa-medium:before {
  content: "";
}

.icon-fa-yc:before,
.icon-fa-y-combinator:before {
  content: "";
}

.icon-fa-optin-monster:before {
  content: "";
}

.icon-fa-opencart:before {
  content: "";
}

.icon-fa-expeditedssl:before {
  content: "";
}

.icon-fa-battery-4:before,
.icon-fa-battery:before,
.icon-fa-battery-full:before {
  content: "";
}

.icon-fa-battery-3:before,
.icon-fa-battery-three-quarters:before {
  content: "";
}

.icon-fa-battery-2:before,
.icon-fa-battery-half:before {
  content: "";
}

.icon-fa-battery-1:before,
.icon-fa-battery-quarter:before {
  content: "";
}

.icon-fa-battery-0:before,
.icon-fa-battery-empty:before {
  content: "";
}

.icon-fa-mouse-pointer:before {
  content: "";
}

.icon-fa-i-cursor:before {
  content: "";
}

.icon-fa-object-group:before {
  content: "";
}

.icon-fa-object-ungroup:before {
  content: "";
}

.icon-fa-sticky-note:before {
  content: "";
}

.icon-fa-sticky-note-o:before {
  content: "";
}

.icon-fa-cc-jcb:before {
  content: "";
}

.icon-fa-cc-diners-club:before {
  content: "";
}

.icon-fa-clone:before {
  content: "";
}

.icon-fa-balance-scale:before {
  content: "";
}

.icon-fa-hourglass-o:before {
  content: "";
}

.icon-fa-hourglass-1:before,
.icon-fa-hourglass-start:before {
  content: "";
}

.icon-fa-hourglass-2:before,
.icon-fa-hourglass-half:before {
  content: "";
}

.icon-fa-hourglass-3:before,
.icon-fa-hourglass-end:before {
  content: "";
}

.icon-fa-hourglass:before {
  content: "";
}

.icon-fa-hand-grab-o:before,
.icon-fa-hand-rock-o:before {
  content: "";
}

.icon-fa-hand-stop-o:before,
.icon-fa-hand-paper-o:before {
  content: "";
}

.icon-fa-hand-scissors-o:before {
  content: "";
}

.icon-fa-hand-lizard-o:before {
  content: "";
}

.icon-fa-hand-spock-o:before {
  content: "";
}

.icon-fa-hand-pointer-o:before {
  content: "";
}

.icon-fa-hand-peace-o:before {
  content: "";
}

.icon-fa-trademark:before {
  content: "";
}

.icon-fa-registered:before {
  content: "";
}

.icon-fa-creative-commons:before {
  content: "";
}

.icon-fa-gg:before {
  content: "";
}

.icon-fa-gg-circle:before {
  content: "";
}

.icon-fa-tripadvisor:before {
  content: "";
}

.icon-fa-odnoklassniki:before {
  content: "";
}

.icon-fa-odnoklassniki-square:before {
  content: "";
}

.icon-fa-get-pocket:before {
  content: "";
}

.icon-fa-wikipedia-w:before {
  content: "";
}

.icon-fa-safari:before {
  content: "";
}

.icon-fa-chrome:before {
  content: "";
}

.icon-fa-firefox:before {
  content: "";
}

.icon-fa-opera:before {
  content: "";
}

.icon-fa-internet-explorer:before {
  content: "";
}

.icon-fa-tv:before,
.icon-fa-television:before {
  content: "";
}

.icon-fa-contao:before {
  content: "";
}

.icon-fa-500px:before {
  content: "";
}

.icon-fa-amazon:before {
  content: "";
}

.icon-fa-calendar-plus-o:before {
  content: "";
}

.icon-fa-calendar-minus-o:before {
  content: "";
}

.icon-fa-calendar-times-o:before {
  content: "";
}

.icon-fa-calendar-check-o:before {
  content: "";
}

.icon-fa-industry:before {
  content: "";
}

.icon-fa-map-pin:before {
  content: "";
}

.icon-fa-map-signs:before {
  content: "";
}

.icon-fa-map-o:before {
  content: "";
}

.icon-fa-map:before {
  content: "";
}

.icon-fa-commenting:before {
  content: "";
}

.icon-fa-commenting-o:before {
  content: "";
}

.icon-fa-houzz:before {
  content: "";
}

.icon-fa-vimeo:before {
  content: "";
}

.icon-fa-black-tie:before {
  content: "";
}

.icon-fa-fonticons:before {
  content: "";
}

.icon-fa-reddit-alien:before {
  content: "";
}

.icon-fa-edge:before {
  content: "";
}

.icon-fa-credit-card-alt:before {
  content: "";
}

.icon-fa-codiepie:before {
  content: "";
}

.icon-fa-modx:before {
  content: "";
}

.icon-fa-fort-awesome:before {
  content: "";
}

.icon-fa-usb:before {
  content: "";
}

.icon-fa-product-hunt:before {
  content: "";
}

.icon-fa-mixcloud:before {
  content: "";
}

.icon-fa-scribd:before {
  content: "";
}

.icon-fa-pause-circle:before {
  content: "";
}

.icon-fa-pause-circle-o:before {
  content: "";
}

.icon-fa-stop-circle:before {
  content: "";
}

.icon-fa-stop-circle-o:before {
  content: "";
}

.icon-fa-shopping-bag:before {
  content: "";
}

.icon-fa-shopping-basket:before {
  content: "";
}

.icon-fa-hashtag:before {
  content: "";
}

.icon-fa-bluetooth:before {
  content: "";
}

.icon-fa-bluetooth-b:before {
  content: "";
}

.icon-fa-percent:before {
  content: "";
}

.icon-fa-gitlab:before {
  content: "";
}

.icon-fa-wpbeginner:before {
  content: "";
}

.icon-fa-wpforms:before {
  content: "";
}

.icon-fa-envira:before {
  content: "";
}

.icon-fa-universal-access:before {
  content: "";
}

.icon-fa-wheelchair-alt:before {
  content: "";
}

.icon-fa-question-circle-o:before {
  content: "";
}

.icon-fa-blind:before {
  content: "";
}

.icon-fa-audio-description:before {
  content: "";
}

.icon-fa-volume-control-phone:before {
  content: "";
}

.icon-fa-braille:before {
  content: "";
}

.icon-fa-assistive-listening-systems:before {
  content: "";
}

.icon-fa-asl-interpreting:before,
.icon-fa-american-sign-language-interpreting:before {
  content: "";
}

.icon-fa-deafness:before,
.icon-fa-hard-of-hearing:before,
.icon-fa-deaf:before {
  content: "";
}

.icon-fa-glide:before {
  content: "";
}

.icon-fa-glide-g:before {
  content: "";
}

.icon-fa-signing:before,
.icon-fa-sign-language:before {
  content: "";
}

.icon-fa-low-vision:before {
  content: "";
}

.icon-fa-viadeo:before {
  content: "";
}

.icon-fa-viadeo-square:before {
  content: "";
}

.icon-fa-snapchat:before {
  content: "";
}

.icon-fa-snapchat-ghost:before {
  content: "";
}

.icon-fa-snapchat-square:before {
  content: "";
}

.icon-fa-pied-piper:before {
  content: "";
}

.icon-fa-first-order:before {
  content: "";
}

.icon-fa-yoast:before {
  content: "";
}

.icon-fa-themeisle:before {
  content: "";
}

.icon-fa-google-plus-circle:before,
.icon-fa-google-plus-official:before {
  content: "";
}

.icon-fa-fa:before,
.icon-fa-font-awesome:before {
  content: "";
}

.icon-fa-handshake-o:before {
  content: "";
}

.icon-fa-envelope-open:before {
  content: "";
}

.icon-fa-envelope-open-o:before {
  content: "";
}

.icon-fa-linode:before {
  content: "";
}

.icon-fa-address-book:before {
  content: "";
}

.icon-fa-address-book-o:before {
  content: "";
}

.icon-fa-vcard:before,
.icon-fa-address-card:before {
  content: "";
}

.icon-fa-vcard-o:before,
.icon-fa-address-card-o:before {
  content: "";
}

.icon-fa-user-circle:before {
  content: "";
}

.icon-fa-user-circle-o:before {
  content: "";
}

.icon-fa-user-o:before {
  content: "";
}

.icon-fa-id-badge:before {
  content: "";
}

.icon-fa-drivers-license:before,
.icon-fa-id-card:before {
  content: "";
}

.icon-fa-drivers-license-o:before,
.icon-fa-id-card-o:before {
  content: "";
}

.icon-fa-quora:before {
  content: "";
}

.icon-fa-free-code-camp:before {
  content: "";
}

.icon-fa-telegram:before {
  content: "";
}

.icon-fa-thermometer-4:before,
.icon-fa-thermometer:before,
.icon-fa-thermometer-full:before {
  content: "";
}

.icon-fa-thermometer-3:before,
.icon-fa-thermometer-three-quarters:before {
  content: "";
}

.icon-fa-thermometer-2:before,
.icon-fa-thermometer-half:before {
  content: "";
}

.icon-fa-thermometer-1:before,
.icon-fa-thermometer-quarter:before {
  content: "";
}

.icon-fa-thermometer-0:before,
.icon-fa-thermometer-empty:before {
  content: "";
}

.icon-fa-shower:before {
  content: "";
}

.icon-fa-bathtub:before,
.icon-fa-s15:before,
.icon-fa-bath:before {
  content: "";
}

.icon-fa-podcast:before {
  content: "";
}

.icon-fa-window-maximize:before {
  content: "";
}

.icon-fa-window-minimize:before {
  content: "";
}

.icon-fa-window-restore:before {
  content: "";
}

.icon-fa-times-rectangle:before,
.icon-fa-window-close:before {
  content: "";
}

.icon-fa-times-rectangle-o:before,
.icon-fa-window-close-o:before {
  content: "";
}

.icon-fa-bandcamp:before {
  content: "";
}

.icon-fa-grav:before {
  content: "";
}

.icon-fa-etsy:before {
  content: "";
}

.icon-fa-imdb:before {
  content: "";
}

.icon-fa-ravelry:before {
  content: "";
}

.icon-fa-eercast:before {
  content: "";
}

.icon-fa-microchip:before {
  content: "";
}

.icon-fa-snowflake-o:before {
  content: "";
}

.icon-fa-superpowers:before {
  content: "";
}

.icon-fa-wpexplorer:before {
  content: "";
}

.icon-fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.gmap {
  min-height: 310px;
}

#main .gmap {
  min-height: 520px;
}

.form-item-container-recaptcha > div {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}

.recaptcha-container {
  position: relative;
  width: 245px;
  height: 65px;
}
.recaptcha-container .recaptcha-container-inner {
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  position: absolute;
  top: -8px;
  right: -30px;
}

.animated {
  opacity: 0;
  filter: alpha(opacity=0);
}

.hide-accessibility {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

@-webkit-keyframes rotating1 {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotating1 {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotating1 {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating1 {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body {
  background-color: #FFFFFF;
}

.hide {
  display: none !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

img {
  height: auto;
}

.wrapper {
  position: relative;
  margin: 0 auto;
}
.wrapper:before, .wrapper:after {
  content: " ";
  display: table;
}
.wrapper:after {
  clear: both;
}

.inline-block, #box-site-logo-top .logo-container a .asset {
  display: inline-block !important;
  vertical-align: middle !important;
  *vertical-align: auto !important;
  *zoom: 1 !important;
  *display: inline !important;
}

.float-right {
  float: right !important;
}

.float-left {
  float: left !important;
}

.font-style-italic {
  font-style: italic !important;
}

.font-safe {
  font-family: sans-serif !important;
}

.no-radius {
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
}

.gmap {
  width: 100%;
}
.gmap .gmap-info-window {
  width: 200px;
}
.gmap img {
  max-width: none;
}

.icon {
  -webkit-box-sizing: "border-box";
  -moz-box-sizing: "border-box";
  box-sizing: "border-box";
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  text-indent: -99999px;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: relative;
}
.icon * {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.asset {
  display: block;
  text-indent: -99999px;
}

.media-responsive,
img,
object,
iframe,
embed {
  max-width: 100%;
  overflow: visible;
}

.opacity-00 {
  opacity: 0;
  filter: alpha(opacity=0);
}

.opacity-10 {
  opacity: 0.1;
  filter: alpha(opacity=10);
}

.opacity-20 {
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.opacity-30 {
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.opacity-40 {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.opacity-50 {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.opacity-60 {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.opacity-70 {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.opacity-80 {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.opacity-90 {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.opacity-100 {
  opacity: 1;
  filter: alpha(opacity=100);
}

.color-not-found {
  color: #FF0000 !important;
}

.color-black-0 {
  color: #000000 !important;
}

.color-black-1 {
  color: #111111 !important;
}

.color-black-2 {
  color: #222222 !important;
}

.color-black-3 {
  color: #333333 !important;
}

.color-black-4 {
  color: #444444 !important;
}

.color-black-5 {
  color: #555555 !important;
}

.color-black-6 {
  color: #666666 !important;
}

.color-black-7 {
  color: #777777 !important;
}

.color-black-8 {
  color: #888888 !important;
}

.color-grey-1 {
  color: #999999 !important;
}

.color-grey-2 {
  color: #AAAAAA !important;
}

.color-grey-3 {
  color: #BBBBBB !important;
}

.color-grey-4 {
  color: #CCCCCC !important;
}

.color-grey-5 {
  color: #DDDDDD !important;
}

.color-grey-6 {
  color: #EEEEEE !important;
}

.color-grey-7 {
  color: #ebebeb !important;
}

.color-grey-8 {
  color: #414042 !important;
}

.color-green-1 {
  color: #1f723a !important;
}

.color-crimson-1 {
  color: #bc263f !important;
}

.color-blue-1 {
  color: #337ab7 !important;
}

.color-orange-1 {
  color: #e36a09 !important;
}

.color-white-1 {
  color: #FFFFFF !important;
}

.scale-070 {
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.scale-075 {
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
}

.circle-block-1 {
  display: block;
  float: left;
  margin: 0;
  text-align: center;
  color: #111111;
  position: relative;
  font-weight: 800;
  font-size: 3.46154em;
}
.circle-block-1:after {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 10px solid rgba(17, 17, 17, 0.25);
  content: " ";
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  top: -15px;
  left: -35px;
}

.border-1 {
  border: 1px solid #CCCCCC;
}

.nav-burger-icon {
  cursor: pointer;
  cursor: hand;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  max-width: none;
  min-width: 0;
}
.nav-burger-icon .nav-burger-icon-inner .nav-burger-icon-line {
  display: block;
  height: 3px;
  width: 100%;
  margin-bottom: 7px;
}
.nav-burger-icon .nav-burger-icon-inner .nav-burger-icon-line:last-child {
  margin-bottom: 0;
}

.line-1-green {
  border-bottom: 1px solid #1f723a;
}

.number, .circle-block-1, body.home #countdown-1-container #countdown-1 .time-block .time-value {
  font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.transform-scale-half {
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.iconed-section-1 {
  padding: 0 0 0 100px;
  position: relative;
}
.iconed-section-1 .iconed-section-icon {
  position: absolute;
  top: 0;
  left: 20px;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.price {
  position: relative;
  top: 5px;
  color: #1f723a;
  font-size: 1.84615em;
  font-weight: 300;
  line-height: 1;
}
.price .price-line {
  display: block;
  margin: 0 0 5px 0;
}
.price .price-number {
  letter-spacing: -2px;
}
.price .price-number .integer {
  letter-spacing: -7px;
  font-size: 3em;
  font-weight: 600;
}
.price .suffix {
  position: relative;
  top: -14px;
  color: #999999;
  font-size: 0.8em;
  left: -2%;
}

#zaki-credits-logo {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 11px;
  color: #FFFFFF;
  -webkit-transition: opacity 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
#zaki-credits-logo .icon-text-prefix {
  position: relative;
  top: 1px;
  left: -2px;
}
#zaki-credits-logo:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  text-decoration: none;
}

@media (max-width: 600px) {
  .price .price-number .integer {
    font-size: 1em;
    letter-spacing: -2px;
  }
  .price .suffix {
    top: -9px;
  }
}
.base-font-size, body {
  font-size: 13px;
}

.font-size-10 {
  font-size: 0.76923em;
}

.font-size-11 {
  font-size: 0.84615em;
}

.font-size-12 {
  font-size: 0.92308em;
}

body {
  font-family: "Raleway", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  color: #444444;
}

hr,
.hr {
  clear: both;
  width: 100%;
  height: 0;
  content: '';
  font-size: 0;
  overflow: hidden;
  color: transparent !important;
  border: none;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-style: italic;
  font-size: 1.23077em;
}
blockquote p {
  margin: 0 !important;
}
blockquote cite {
  padding: 10px 0 0 0;
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.6em;
  font-style: normal;
  color: #337ab7;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

.list-bigger-1 li {
  font-size: 2em !important;
  font-weight: 800 !important;
  background-position-y: 17px !important;
}

table {
  width: 100%;
}
table caption {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
table,
table th,
table td {
  border: 0;
  border-collapse: collapse;
}
table th,
table td {
  color: #333333;
}
table thead td,
table th {
  font-weight: bold;
}

a:link, a:visited {
  text-decoration: none;
  color: #1f723a;
}
a:hover {
  text-decoration: underline;
}

.list-none-1 {
  margin: 0 !important;
}
.list-none-1 li {
  background-image: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.valign-center {
  vertical-align: middle;
}

.table-1 tr td {
  padding: 10px 15px;
  border: 1px solid #DDDDDD;
  border-collapse: collapse;
}
.table-1 thead tr td {
  text-align: center;
  font-size: 1.23077em;
  background-color: #1f723a;
  color: #FFFFFF;
}
.table-1 thead tr td:nth-child(1) {
  background-color: transparent;
  border-top: 0;
  border-left: 0;
}
.table-1 tbody tr td {
  text-align: center;
  background-color: #FFFFFF;
}
.table-1 tbody tr td:nth-child(1) {
  text-align: left;
}

.typo.typo-1 h1,
.typo.typo-1 h2,
.typo.typo-1 h3,
.typo.typo-1 h4,
.typo.typo-1 h5,
.typo.typo-1 h6 {
  color: #1f723a;
  font-weight: 600;
}
.typo.typo-1 * + h1,
.typo.typo-1 * + h2,
.typo.typo-1 * + h3,
.typo.typo-1 * + h4,
.typo.typo-1 * + h5,
.typo.typo-1 * + h6 {
  padding-top: 10px;
  line-height: 1.2em;
}
.typo.typo-1 h1 {
  font-size: 1.53846em;
  margin-bottom: 5px;
}
.typo.typo-1 h2 {
  font-size: 1.53846em;
  margin-bottom: 5px;
}
.typo.typo-1 h3 {
  font-size: 1.07692em;
  color: #ff00ff;
  margin-bottom: 5px;
}
.typo.typo-1 time {
  display: block;
}
.typo.typo-1 strong {
  font-weight: 800;
}
.typo.typo-1 img.wp-post-image {
  margin-bottom: 10px;
}
.typo.typo-1 iframe {
  width: 100%;
}
.typo.typo-1 p,
.typo.typo-1 figure,
.typo.typo-1 img,
.typo.typo-1 form,
.typo.typo-1 iframe,
.typo.typo-1 .fluid-width-video-wrapper {
  margin-bottom: 15px;
}
.typo.typo-1 figure img {
  margin: 0;
}
.typo.typo-1 figure figcaption {
  padding: 5px 0 0 0;
  font-size: 0.84615em;
}
.typo.typo-1 p,
.typo.typo-1 ul li,
.typo.typo-1 ol li {
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 400;
  color: #555555;
  margin: 0 0 15px 0;
}
.typo.typo-1 ul > li,
.typo.typo-1 ol > li {
  margin: 0 0 5px 0;
}
.typo.typo-1 ul > li:last-child,
.typo.typo-1 ol > li:last-child {
  margin: 0 0 0 0;
}
.typo.typo-1 ul {
  margin: 0 0 10px 0;
}
.typo.typo-1 ul > li {
  list-style-type: none;
  background-size: 7px 7px;
  background-repeat: no-repeat;
  background-position: 0 5px;
  padding: 0 0 0 18px;
}
.typo.typo-1 ol {
  margin: 0 0 10px 20px;
}
.typo.typo-1 ol > li {
  list-style-type: decimal;
}
.typo.typo-1.typo-1-theme-crimson h1,
.typo.typo-1.typo-1-theme-crimson h2,
.typo.typo-1.typo-1-theme-crimson h3,
.typo.typo-1.typo-1-theme-crimson h4,
.typo.typo-1.typo-1-theme-crimson h5,
.typo.typo-1.typo-1-theme-crimson h6 {
  color: #bc263f;
  font-weight: 800;
  margin-bottom: 20px;
}
.typo.typo-1.typo-1-theme-white h1,
.typo.typo-1.typo-1-theme-white h2,
.typo.typo-1.typo-1-theme-white h3,
.typo.typo-1.typo-1-theme-white h4,
.typo.typo-1.typo-1-theme-white h5,
.typo.typo-1.typo-1-theme-white h6 {
  color: #FFFFFF;
}
.typo.typo-1.typo-1-theme-white a:link, .typo.typo-1.typo-1-theme-white a:visited {
  color: #FFFFFF;
}
.typo.typo-1.typo-1-theme-white p,
.typo.typo-1.typo-1-theme-white ul li,
.typo.typo-1.typo-1-theme-white ol li {
  color: #FFFFFF;
}
.typo.typo-2 h2 {
  font-size: 2.46154em;
  color: #FFFFFF;
  font-weight: 700;
}
.typo.typo-2 strong {
  font-weight: 800;
}
.typo.typo-2 p,
.typo.typo-2 ul li,
.typo.typo-2 ol li {
  font-size: 1.76923em;
  line-height: 1.6em;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 15px 0;
}
.typo.typo-3 p,
.typo.typo-3 ul li,
.typo.typo-3 ol li {
  font-size: 2em;
  line-height: 1.6em;
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 15px 0;
}
.typo.typo-3 p strong,
.typo.typo-3 ul li strong,
.typo.typo-3 ol li strong {
  font-weight: 800;
}

html,
html body,
html .body-container {
  height: 100%;
}
html #body-container-1 {
  position: relative;
}
html #body-container-2 {
  position: relative;
  height: auto;
  min-height: 100%;
  padding-top: 103px;
}

.row {
  overflow: hidden;
}

@media (max-width: 840px) {
  html #body-container-2 {
    padding-top: 85px;
  }
}
.show-on-js {
  display: block;
}

.no-js .show-on-js {
  display: none;
}

input,
textarea,
button,
.button,
.btn,
select {
  /**
   * <input> has mysterious bottom padding
   * @see http://stackoverflow.com/questions/8964281/input-has-mysterious-bottom-padding (ultimo post)
   * @see http://www.456bereastreet.com/archive/201108/line-height_in_input_fields/
   */
  line-height: normal !important;
}

/**
 * Inputs with a type=search in WebKit browsers by default have rounded corners and are 
 * very strict in what you can alter via CSS. If you don't want that styling, you can remove
 * it in one fell swoop with appearance.
 * @see http://css-tricks.com/almanac/properties/a/appearance/    
 */
input[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/**
 * Remove border radius from Select tag in bootstrap 3
 * @see http://stackoverflow.com/questions/24210132/remove-border-radius-from-select-tag-in-bootstrap-3
 */
label,
legend {
  font-size: 0.92308em;
}

.form-container form {
  margin-bottom: 0 !important;
}
.form-container.form-hide-labels .form-item-container > label {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.form-item-container.form-item-container-checkbox > .form-item-wrapper, .form-item-container.form-item-container-radio > .form-item-wrapper {
  padding-left: 20px;
}
.form-item-container.form-item-container-checkbox > .form-item-wrapper label, .form-item-container.form-item-container-radio > .form-item-wrapper label {
  font-weight: 400;
}
.form-item-container.form-item-container-checkbox > .form-item-wrapper > .form-item, .form-item-container.form-item-container-radio > .form-item-wrapper > .form-item {
  float: left;
  margin: 3px 0 0 -20px;
}

.form-item-required {
  color: #ff00ff;
}

.form-hide-label > label,
.form-hide-label > .label {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

.button,
.button:link,
.button:visited {
  overflow: visible;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.button[disabled],
button[disabled],
input[type="button"][disabled],
input[type="submit"][disabled],
input[type="reset"][disabled],
[role="button"][disabled] {
  cursor: default;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.button,
.button:link,
.button:visited {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  cursor: pointer;
  cursor: hand;
  border: 0;
  text-align: center;
  width: 100%;
  min-width: 80px;
  max-width: 200px;
  padding: 10px 10px;
  margin-bottom: 10px;
  font-family: "Roboto Condensed", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1.15385em;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  color: #FFFFFF;
  background-color: #1f723a;
}
.button:active,
.button:link:active,
.button:visited:active {
  position: relative;
  top: 1px;
}
.button:hover,
.button:link:hover,
.button:visited:hover {
  background-color: #144a26;
  text-decoration: none;
  color: #FFFFFF;
}
.button .icon,
.button:link .icon,
.button:visited .icon {
  top: -2px;
  margin-right: 9px;
}
.button.button-size-xxxxs,
.button:link.button-size-xxxxs,
.button:visited.button-size-xxxxs {
  width: 16px;
  max-width: none;
  min-width: 0;
}
.button.button-size-xxxs,
.button:link.button-size-xxxs,
.button:visited.button-size-xxxs {
  width: 32px;
  max-width: none;
  min-width: 0;
}
.button.button-size-xxs,
.button:link.button-size-xxs,
.button:visited.button-size-xxs {
  width: 48px;
  max-width: none;
  min-width: 0;
}
.button.button-size-xs,
.button:link.button-size-xs,
.button:visited.button-size-xs {
  width: 90px;
  max-width: none;
  min-width: 0;
}
.button.button-size-s,
.button:link.button-size-s,
.button:visited.button-size-s {
  width: 120px;
  max-width: none;
  min-width: 0;
}
.button.button-size-m,
.button:link.button-size-m,
.button:visited.button-size-m {
  width: 160px;
  max-width: none;
  min-width: 0;
}
.button.button-size-l,
.button:link.button-size-l,
.button:visited.button-size-l {
  width: 200px;
  max-width: none;
  min-width: 0;
}
.button.button-size-xl,
.button:link.button-size-xl,
.button:visited.button-size-xl {
  width: 260px;
  max-width: none;
  min-width: 0;
}
.button.button-size-xxl,
.button:link.button-size-xxl,
.button:visited.button-size-xxl {
  width: 360px;
  max-width: none;
  min-width: 0;
}
.button.button-size-xxxl,
.button:link.button-size-xxxl,
.button:visited.button-size-xxxl {
  width: 460px;
  max-width: none;
  min-width: 0;
}
.button.button-size-xxxxl,
.button:link.button-size-xxxxl,
.button:visited.button-size-xxxxl {
  width: 560px;
  max-width: none;
  min-width: 0;
}
.button.button-color-grey,
.button:link.button-color-grey,
.button:visited.button-color-grey {
  background-color: #DDDDDD;
}
.button.button-color-grey:hover,
.button:link.button-color-grey:hover,
.button:visited.button-color-grey:hover {
  background-color: #c4c4c4;
}
.button.button-color-crimson,
.button:link.button-color-crimson,
.button:visited.button-color-crimson {
  background-color: #bc263f;
}
.button.button-color-crimson:hover,
.button:link.button-color-crimson:hover,
.button:visited.button-color-crimson:hover {
  background-color: #921d31;
}
.button.button-color-orange,
.button:link.button-color-orange,
.button:visited.button-color-orange {
  background-color: #e36a09;
}
.button.button-color-orange:hover,
.button:link.button-color-orange:hover,
.button:visited.button-color-orange:hover {
  background-color: #b25307;
}
.button.button-uppercase,
.button:link.button-uppercase,
.button:visited.button-uppercase {
  text-transform: uppercase;
}
.button.button-style-1,
.button:link.button-style-1,
.button:visited.button-style-1 {
  color: #1f723a !important;
  background-color: #FFFFFF !important;
}
.button.button-style-1:hover,
.button:link.button-style-1:hover,
.button:visited.button-style-1:hover {
  background-color: #e6e6e6 !important;
}
.button.button-h-1,
.button:link.button-h-1,
.button:visited.button-h-1 {
  padding-top: 18px;
  padding-bottom: 18px;
}

.form-theme-1 ::-webkit-input-placeholder {
  color: #777777;
}
.form-theme-1 :-moz-placeholder {
  color: #777777;
}
.form-theme-1 ::-moz-placeholder {
  color: #777777;
}
.form-theme-1 :-ms-input-placeholder {
  color: #777777;
}
.form-theme-1 .form-control {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 1px solid #AAAAAA;
}
.form-theme-1 .form-group {
  margin-bottom: 10px;
}
.form-theme-1 input[type="text"],
.form-theme-1 input[type="password"],
.form-theme-1 input[type="email"],
.form-theme-1 input[type="url"],
.form-theme-1 input[type="date"],
.form-theme-1 input[type="month"],
.form-theme-1 input[type="time"],
.form-theme-1 input[type="datetime"],
.form-theme-1 input[type="datetime-local"],
.form-theme-1 input[type="week"],
.form-theme-1 input[type="number"],
.form-theme-1 input[type="search"],
.form-theme-1 input[type="tel"],
.form-theme-1 input[type="color"],
.form-theme-1 input[type="file"],
.form-theme-1 input[type="checkbox"],
.form-theme-1 input[type="radio"],
.form-theme-1 input[type="checkbox"],
.form-theme-1 input[type="radio"],
.form-theme-1 select,
.form-theme-1 textarea {
  color: #444444;
}

.box {
  position: relative;
}
.box > .box-wrapper {
  position: relative;
}

.box-group:before, .box-group:after {
  content: " ";
  display: table;
}
.box-group:after {
  clear: both;
}

.box-no-head > .box-wrapper > .box-head {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * Spaziatura tra slides
 * @see https://github.com/kenwheeler/slick/issues/582
 * @see http://stackoverflow.com/questions/30999076/how-add-spaces-between-slick-carousel-item
 */
.box-slider > .box-wrapper > .box-content > .slider .slick-list {
  margin-right: -7px;
  margin-left: -7px;
}
.box-slider > .box-wrapper > .box-content > .slider .slick-list .slick-slide {
  margin-right: 7px;
  margin-left: 7px;
}

#box-site-logo-top {
  width: 236px;
  height: 140px;
  background-color: #1f723a;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 11;
  -webkit-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
#box-site-logo-top .logo-container {
  padding-top: 58px;
}
#box-site-logo-top .logo-container a {
  display: block;
  text-align: center;
}
#box-site-logo-top .logo-container a .asset {
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
}

html.scrolled #box-site-logo-top {
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

@media (max-width: 840px) {
  #box-site-logo-top {
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
.nav-collapsible-trigger span {
  display: none;
}

.nav-burger-icon {
  cursor: pointer;
  cursor: hand;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  max-width: none;
  min-width: 0;
}
.nav-burger-icon .nav-burger-icon-inner .nav-burger-icon-line {
  display: block;
  height: 4px;
  width: 100%;
  margin-bottom: 7px;
  background-color: #1f723a;
}
.nav-burger-icon .nav-burger-icon-inner .nav-burger-icon-line:last-child {
  margin-bottom: 0;
}

#box-nav-main-mobile {
  padding-top: 17px;
}
#box-nav-main-mobile .nav-burger-icon {
  float: right;
}

#box-nav-main-mobile {
  width: 100%;
}
#box-nav-main-mobile nav {
  clear: both;
  position: relative;
  z-index: 150;
}
#box-nav-main-mobile nav ul {
  clear: both;
  will-change: transform;
}
#box-nav-main-mobile nav ul li {
  position: relative;
  float: none;
}
#box-nav-main-mobile nav ul li a {
  font-size: 1.07692em;
  padding: 10px 43px 10px 10px;
  display: block;
  border-bottom: 1px solid #919191;
}
#box-nav-main-mobile nav ul li a.nav-collapsible-trigger {
  -webkit-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
  color: #FFFFFF;
}
#box-nav-main-mobile nav ul li a.nav-collapsible-trigger:hover {
  text-decoration: none;
}
#box-nav-main-mobile nav ul li a.nav-collapsible-trigger:after {
  content: "";
  position: relative;
  top: 8px;
  left: 17px;
}
#box-nav-main-mobile nav ul li,
#box-nav-main-mobile nav ul li a {
  color: #FFFFFF;
}
#box-nav-main-mobile nav ul ul {
  display: none;
  background-color: transparent;
  background-repeat: repeat;
  background-position: top left;
}
#box-nav-main-mobile nav ul ul.nav-collapsible-menu-open + .nav-collapsible-trigger {
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#box-nav-main-mobile nav > ul {
  background-color: #333333;
  padding: 10px;
  display: none;
}
#box-nav-main-mobile nav > ul > li:last-child > a {
  border-bottom: 0;
}
#box-nav-main-mobile nav > ul > li > ul {
  background-color: #333333;
}
#box-nav-main-mobile nav > ul > li > ul > li > a {
  padding-left: 10px;
}
#box-nav-main-mobile nav > ul > li > ul > li > ul > li > a {
  padding-left: 20px;
}
#box-nav-main-mobile nav > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 30px;
}
#box-nav-main-mobile nav > ul > li > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 40px;
}

@media (min-width: 840px) {
  #box-nav-main-mobile {
    display: none;
  }
}
@media (max-width: 840px) {
  #box-nav-main-mobile {
    display: block;
  }
  #box-nav-main-mobile nav {
    padding-top: 25px;
  }
}
#box-nav-main {
  padding-top: 30px;
  font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
#box-nav-main > .box-wrapper > .box-content nav {
  height: 45px;
}
#box-nav-main > .box-wrapper > .box-content nav ul li {
  position: relative;
  float: none;
  padding: 0;
  text-transform: uppercase;
}
#box-nav-main > .box-wrapper > .box-content nav ul li a {
  display: block;
  color: #000000;
  -webkit-transition: color 100ms ease-in-out;
  -o-transition: color 100ms ease-in-out;
  transition: color 100ms ease-in-out;
}
#box-nav-main > .box-wrapper > .box-content nav ul li.nav-item-mobile-only {
  display: none;
}
#box-nav-main > .box-wrapper > .box-content nav ul ul {
  display: none;
  position: absolute;
  z-index: 2999;
}
#box-nav-main > .box-wrapper > .box-content nav ul ul li {
  padding: 0 10px;
}
#box-nav-main > .box-wrapper > .box-content nav ul ul li a {
  padding: 6px 0;
  font-size: 1.07692em;
  font-weight: 400;
  color: #444444;
}
#box-nav-main > .box-wrapper > .box-content nav ul ul li.menu-item-has-children > a:after {
  position: absolute;
  right: 10px;
  top: 8px;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}
#box-nav-main > .box-wrapper > .box-content nav ul ul li.last-child > a {
  border-bottom: 0;
}
#box-nav-main > .box-wrapper > .box-content nav > ul {
  position: relative;
  top: 1px;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li {
  position: static;
  float: left;
  margin: 0 24px 0 0;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li > a {
  line-height: 1;
  padding: 12px 0 19px 0;
  font-size: 1.07692em;
  font-weight: 400;
  word-wrap: normal;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li.menu-item-only-mobile {
  display: none;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li.current > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-menu-item > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-menu-parent > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-menu-ancestor > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-page-item > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-page-parent > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-page-ancestor > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current_page_item > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current_page_parent > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current_page_ancestor > a {
  color: #000000;
  text-decoration: none;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li.current > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-menu-item > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-menu-parent > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-menu-ancestor > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-page-item > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-page-parent > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current-page-ancestor > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current_page_item > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current_page_parent > ul, #box-nav-main > .box-wrapper > .box-content nav > ul > li.current_page_ancestor > ul {
  display: block !important;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li.first-child > a {
  padding-left: 0;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li.last-child {
  margin-right: 0;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li.last-child > a {
  padding-right: 0;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li.last-child:after {
  display: none;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li > ul {
  position: absolute;
  top: 45px;
  right: -10px;
  width: 150%;
  text-align: right;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  -khtml-opacity: 1 !important;
  opacity: 1 !important;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li {
  padding: 0;
  float: none;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li > a {
  padding: 10px 10px;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current-menu-item > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current-menu-parent > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current-menu-ancestor > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current-page-item > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current-page-parent > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current-page-ancestor > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current_page_item > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current_page_parent > a, #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul > li.current_page_ancestor > a {
  color: #ff00ff;
  text-decoration: none;
}
#box-nav-main > .box-wrapper > .box-content nav > ul > li > ul ul {
  text-align: left;
  right: -240px;
  background-color: #FFFFFF;
  top: 34px;
  left: 0;
}

@media (min-width: 840px) {
  #box-nav-main li.nav-item-mobile {
    display: none;
  }
}
@media (max-width: 1100px) {
  #box-nav-main > .box-wrapper > .box-content nav ul ul {
    width: 200px;
  }
  #box-nav-main > .box-wrapper > .box-content nav > ul > li.menu-item-has-children {
    background-position: 99% 48%;
  }
  #box-nav-main > .box-wrapper > .box-content nav > ul > li > ul ul {
    right: -200px;
  }
}
@media (max-width: 840px) {
  #box-nav-main {
    display: none !important;
  }
}
#box-richiedi-informazioni-1 {
  margin-bottom: 20px;
  -webkit-transition: box-shadow 500ms ease-in-out;
  -o-transition: box-shadow 500ms ease-in-out;
  transition: box-shadow 500ms ease-in-out;
}
#box-richiedi-informazioni-1.effect-highlight-1 {
  -webkit-box-shadow: #FFFFFF 0 0 70px;
  box-shadow: #FFFFFF 0 0 70px;
}
#box-richiedi-informazioni-1 > .box-wrapper > .box-head,
#box-richiedi-informazioni-1 > .box-wrapper > .box-content {
  padding: 15px 20px;
}
#box-richiedi-informazioni-1 > .box-wrapper > .box-head {
  background-color: #1f723a;
}
#box-richiedi-informazioni-1 > .box-wrapper > .box-head h2 {
  font-size: 1.38462em;
}
#box-richiedi-informazioni-1 > .box-wrapper > .box-head h2,
#box-richiedi-informazioni-1 > .box-wrapper > .box-head h2 a {
  color: #FFFFFF;
}
#box-richiedi-informazioni-1 > .box-wrapper > .box-content {
  background-color: #DDDDDD;
}
#box-richiedi-informazioni-1 > .box-wrapper > .box-content textarea {
  height: 100px;
}
#box-richiedi-informazioni-1 > .box-wrapper > .box-content #form-info1-testoprivacy-container {
  display: none;
}

@media (min-width: 840px) {
  #box-richiedi-informazioni-1 #numbero-verde-mobile {
    display: none;
  }
}
@media (max-width: 840px) {
  #box-richiedi-informazioni-1 #numbero-verde-mobile {
    padding-top: 10px;
  }
  #box-richiedi-informazioni-1 #numbero-verde-mobile #numbero-verde-mobile-text-1 {
    font-weight: 800;
    display: block;
    padding: 0 10px;
    background-color: #DDDDDD;
    color: #1f723a;
    width: 67px;
    margin: -30px auto 0 auto;
  }
  #box-richiedi-informazioni-1 #numbero-verde-mobile .asset {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
#header {
  border-top: 3px solid #1f723a;
  background-color: #EEEEEE;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transition: box-shadow 250ms ease-in-out;
  -o-transition: box-shadow 250ms ease-in-out;
  transition: box-shadow 250ms ease-in-out;
}
#header #header-row-1 {
  overflow: visible;
  height: 100px;
}
#header #header-row-1 .wrapper {
  padding-left: 258px;
}
#header #header-asset-numeroverde-1 {
  position: absolute;
  top: 19px;
  right: 0;
}
#header #header-row-1 .wrapper {
  -webkit-transition: padding-left 250ms ease-in-out;
  -o-transition: padding-left 250ms ease-in-out;
  transition: padding-left 250ms ease-in-out;
}

html.scrolled #header {
  -webkit-box-shadow: rgba(17, 17, 17, 0.25) 0 6px 12px 0px;
  box-shadow: rgba(17, 17, 17, 0.25) 0 6px 12px 0px;
}
html.scrolled #header #header-row-1 .wrapper {
  padding-left: 148px;
}

@media (max-width: 840px) {
  #header #header-asset-numeroverde-1 {
    display: none;
  }
  #header #header-row-1 {
    height: 82px;
  }
  #header #header-row-1 .wrapper {
    padding-left: 0;
  }

  html.scrolled #header #header-row-1 .wrapper {
    padding-left: 0;
  }
}
#footer .typo.typo-1 p,
#footer .typo.typo-1 ul li,
#footer .typo.typo-1 ol li {
  font-size: 0.84615em;
  font-weight: 500;
}
#footer .socials {
  float: right;
  margin-top: -60px;
}
#footer .socials a {
  display: block;
  float: left;
  margin-left: 10px;
}
#footer #footer-row-1 {
  background-color: #414042;
}
#footer #footer-row-1 > .wrapper {
  padding: 69px 0 35px 0;
}
#footer #footer-row-1 > .wrapper .col {
  position: relative;
}
#footer #footer-row-1 > .wrapper .col:nth-child(2) {
  margin-top: -42px;
  padding-top: 20px;
  padding-bottom: 20px;
  			    /*
  				&:after {
  					content: " ";
  					position: absolute;
  					top: 0;
  					left: -30px;
  	    			border-left: 1px solid #bbb;
      			    width: 1px;
      			    height: 100%;
  				}*/
}
#footer #footer-row-credits {
  background-color: #373737;
}
#footer #footer-row-credits > .wrapper {
  padding: 10px 0;
}
#footer #logo-footer {
  display: block;
  float: left;
  margin-top: -48px;
}

@media (max-width: 840px) {
  #footer .socials {
    clear: both;
    float: none;
    margin: 0;
  }
  #footer .socials a {
    margin: 0 10px 0 0;
  }
  #footer #footer-row-1 > .wrapper .col:nth-child(2) {
    margin-top: 0;
  }
}
#body-container-1 {
  background-color: #444444;
}

#body-container-2 {
  background-color: #FFFFFF;
  -webkit-box-shadow: #111111 0px 0px 50px 0px;
  box-shadow: #111111 0px 0px 50px 0px;
}

#offcanvas-left-trigger-1-container {
  position: absolute;
  top: 5px;
  left: 0;
}
#offcanvas-left-trigger-1-container #offcanvas-left-trigger-1 {
  position: relative;
  z-index: 12;
}

@media (min-width: 840px) {
  #offcanvas-left-trigger-1 {
    display: none !important;
  }
}
@media (max-width: 840px) {
  #offcanvas-left-trigger-1 {
    display: block;
  }
}
body.home #home-row-advcampaign-1 {
  background-image: url(../../img/content/bg1.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
body.home #home-row-advcampaign-1 .row-inner {
  min-height: 450px;
  background-color: rgba(17, 17, 17, 0.5);
}
body.home #home-row-advcampaign-1 .row-inner .wrapper {
  padding-top: 80px;
}
body.home #home-row-advcampaign-1 .row-inner .wrapper article h2,
body.home #home-row-advcampaign-1 .row-inner .wrapper article p {
  text-shadow: rgba(17, 17, 17, 0.5) 0 2px 10px;
}
body.home #countdown-1-container {
  padding-left: 20px;
  padding-top: 10px;
}
body.home #countdown-1-container #countdown-1 .time-block {
  display: block;
  float: left;
  margin: 0 65px 0 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}
body.home #countdown-1-container #countdown-1 .time-block .time-value,
body.home #countdown-1-container #countdown-1 .time-block .time-label {
  display: block;
}
body.home #countdown-1-container #countdown-1 .time-block .time-value {
  font-weight: 800;
  font-size: 3.46154em;
}
body.home #countdown-1-container #countdown-1 .time-block .time-label {
  padding-top: 25px;
  font-weight: 600;
  font-size: 1.23077em;
}
body.home #countdown-1-container #countdown-1 .time-block:after {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.7);
  content: " ";
  width: 100px;
  height: 100px;
  display: block;
  position: absolute;
  top: -15px;
  left: -23px;
}
body.home #home-row-claim1 {
  background-color: #1f723a;
}
body.home #home-row-claim1 .wrapper {
  padding: 38px 0;
}
body.home #home-row-section1 .wrapper {
  padding: 72px 0;
}
body.home #home-row-section1 #home-row-section1-mockup1 {
  position: absolute;
  right: -14%;
  top: 190px;
}
body.home #tabella-comparativa-1-cta2 {
  float: right;
  margin-top: -120px;
  margin-right: -70px;
}
body.home #home-row-advcampaign-2 {
  background-image: url(../../img/content/bg2.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
body.home #home-row-advcampaign-2 .row-inner .wrapper {
  padding: 78px 0;
}
body.home #home-row-companyinfo-1 {
  border-top: 3px solid #bc263f;
}
body.home #home-row-companyinfo-1 .row-inner .wrapper {
  padding: 30px 0;
}
body.home #home-row-companyinfo-1 .row-inner .wrapper .asset-logo-6 {
  width: 108px;
  height: 84px;
  background-size: contain;
  background-repeat: no-repeat;
}
body.home #tabella-comparativa-1 tr td .icon-fa-question-circle {
  position: relative;
  top: 3px;
  left: 2px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
body.home #tabella-comparativa-1 tr td:nth-child(1) {
  width: 33.3%;
}
body.home #tabella-comparativa-1 tr td:nth-child(2) {
  width: 33.3%;
}
body.home #tabella-comparativa-1 tr td:nth-child(3) {
  width: 33.3%;
}
body.home #tabella-comparativa-1 tr:last-child td:nth-child(1) {
  background-color: transparent;
  border-left: 0;
  border-bottom: 0;
}
body.home #home-row-partners-1 {
  background-color: #EEEEEE;
}
body.home #home-row-partners-1 .wrapper {
  padding: 40px 0;
}

@media (max-width: 1100px) {
  body.home #home-row-section1 #home-row-section1-mockup1 {
    background-repeat: no-repeat;
    background-size: contain;
    width: 60%;
  }
}
@media (max-width: 840px) {
  body.home #home-row-advcampaign-1 .wrapper {
    padding-top: 30px !important;
  }
  body.home #home-row-advcampaign-1 .wrapper #countdown-1-container {
    padding-left: 50%;
    margin-left: -220px;
  }
  body.home #home-row-advcampaign-1 .wrapper #countdown-1-container #countdown-1 .time-block {
    margin-bottom: 40px;
  }
  body.home #home-row-section1 .wrapper {
    padding: 40px 0;
  }
  body.home #home-row-section1 .wrapper #home-row-section1-mockup1 {
    margin: 0 auto;
    position: static;
    height: 240px;
    width: 320px;
  }
  body.home #tabella-comparativa-1-cta2 {
    float: none;
    margin-top: 10px;
  }
  body.home #home-row-advcampaign-2 .row-inner .wrapper {
    padding: 40px 0;
  }
  body.home #home-row-advcampaign-2 .row-inner .wrapper .button {
    width: 260px;
  }

  #tabella-comparativa-1 {
    margin: 0 0 20px 0;
  }
  #tabella-comparativa-1 tr.row-cta {
    display: none;
  }
}
@media (max-width: 600px) {
  body.home #countdown-1-container {
    margin-left: -85px !important;
  }
  body.home #tabella-comparativa-1 tr td:nth-child(1) {
    width: 98%;
  }
  body.home #tabella-comparativa-1 tr td:nth-child(2) {
    width: 1%;
  }
  body.home #tabella-comparativa-1 tr td:nth-child(3) {
    width: 1%;
  }
}
@media (max-width: 1100px), (min-width: 1100px) {
  .col-dh-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 5.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 13.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 22.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 30.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 38.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 47.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 55.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 63.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 72.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 80.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 88.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 97.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dh-0-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 8.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 16.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 25%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 33.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 41.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 50%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 58.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 66.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 75%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 83.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 91.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-dh-0-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .wrapper {
    max-width: 1100px;
  }

  .align-left {
    text-align: left !important;
  }

  .align-center {
    text-align: center !important;
  }

  .align-right {
    text-align: right !important;
  }

  .margin-bottom-0 {
    margin-bottom: 0px !important;
  }

  .margin-bottom-1 {
    margin-bottom: 1px !important;
  }

  .margin-bottom-2 {
    margin-bottom: 2px !important;
  }

  .margin-bottom-3 {
    margin-bottom: 3px !important;
  }

  .margin-bottom-4 {
    margin-bottom: 4px !important;
  }

  .margin-bottom-5 {
    margin-bottom: 5px !important;
  }

  .margin-bottom-6 {
    margin-bottom: 6px !important;
  }

  .margin-bottom-7 {
    margin-bottom: 7px !important;
  }

  .margin-bottom-8 {
    margin-bottom: 8px !important;
  }

  .margin-bottom-9 {
    margin-bottom: 9px !important;
  }

  .margin-bottom-10 {
    margin-bottom: 10px !important;
  }

  .margin-bottom-11 {
    margin-bottom: 11px !important;
  }

  .margin-bottom-12 {
    margin-bottom: 12px !important;
  }

  .margin-bottom-13 {
    margin-bottom: 13px !important;
  }

  .margin-bottom-14 {
    margin-bottom: 14px !important;
  }

  .margin-bottom-15 {
    margin-bottom: 15px !important;
  }

  .margin-bottom-16 {
    margin-bottom: 16px !important;
  }

  .margin-bottom-17 {
    margin-bottom: 17px !important;
  }

  .margin-bottom-18 {
    margin-bottom: 18px !important;
  }

  .margin-bottom-19 {
    margin-bottom: 19px !important;
  }

  .margin-bottom-20 {
    margin-bottom: 20px !important;
  }

  .margin-bottom-21 {
    margin-bottom: 21px !important;
  }

  .margin-bottom-22 {
    margin-bottom: 22px !important;
  }

  .margin-bottom-23 {
    margin-bottom: 23px !important;
  }

  .margin-bottom-24 {
    margin-bottom: 24px !important;
  }

  .margin-bottom-25 {
    margin-bottom: 25px !important;
  }

  .margin-bottom-26 {
    margin-bottom: 26px !important;
  }

  .margin-bottom-27 {
    margin-bottom: 27px !important;
  }

  .margin-bottom-28 {
    margin-bottom: 28px !important;
  }

  .margin-bottom-29 {
    margin-bottom: 29px !important;
  }

  .margin-bottom-30 {
    margin-bottom: 30px !important;
  }

  .margin-bottom-31 {
    margin-bottom: 31px !important;
  }

  .margin-bottom-32 {
    margin-bottom: 32px !important;
  }

  .margin-bottom-33 {
    margin-bottom: 33px !important;
  }

  .margin-bottom-34 {
    margin-bottom: 34px !important;
  }

  .margin-bottom-35 {
    margin-bottom: 35px !important;
  }

  .margin-bottom-36 {
    margin-bottom: 36px !important;
  }

  .margin-bottom-37 {
    margin-bottom: 37px !important;
  }

  .margin-bottom-38 {
    margin-bottom: 38px !important;
  }

  .margin-bottom-39 {
    margin-bottom: 39px !important;
  }

  .margin-bottom-40 {
    margin-bottom: 40px !important;
  }

  .margin-bottom-41 {
    margin-bottom: 41px !important;
  }

  .margin-bottom-42 {
    margin-bottom: 42px !important;
  }

  .margin-bottom-43 {
    margin-bottom: 43px !important;
  }

  .margin-bottom-44 {
    margin-bottom: 44px !important;
  }

  .margin-bottom-45 {
    margin-bottom: 45px !important;
  }

  .margin-bottom-46 {
    margin-bottom: 46px !important;
  }

  .margin-bottom-47 {
    margin-bottom: 47px !important;
  }

  .margin-bottom-48 {
    margin-bottom: 48px !important;
  }

  .margin-bottom-49 {
    margin-bottom: 49px !important;
  }

  .margin-bottom-50 {
    margin-bottom: 50px !important;
  }
}
@media (max-width: 1100px) {
  .col-dl-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 5.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 13.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 22.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 30.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 38.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 47.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 55.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 63.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 72.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 80.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 88.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-dl-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 97.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .wrapper {
    width: 92%;
  }
}
@media (max-width: 840px) {
  .col-t-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 5.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 13.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 22.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 30.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 38.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 47.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 55.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 63.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 72.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 80.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 88.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 97.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-t-0-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 8.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 16.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 25%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 33.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 41.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 50%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 58.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 66.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 75%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 83.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 91.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-t-0-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .tablet-align-left {
    text-align: left !important;
  }

  .tablet-align-center {
    text-align: center !important;
  }

  .tablet-align-right {
    text-align: right !important;
  }

  .tablet-margin-bottom-0 {
    margin-bottom: 0px;
  }

  .tablet-margin-bottom-1 {
    margin-bottom: 1px;
  }

  .tablet-margin-bottom-2 {
    margin-bottom: 2px;
  }

  .tablet-margin-bottom-3 {
    margin-bottom: 3px;
  }

  .tablet-margin-bottom-4 {
    margin-bottom: 4px;
  }

  .tablet-margin-bottom-5 {
    margin-bottom: 5px;
  }

  .tablet-margin-bottom-6 {
    margin-bottom: 6px;
  }

  .tablet-margin-bottom-7 {
    margin-bottom: 7px;
  }

  .tablet-margin-bottom-8 {
    margin-bottom: 8px;
  }

  .tablet-margin-bottom-9 {
    margin-bottom: 9px;
  }

  .tablet-margin-bottom-10 {
    margin-bottom: 10px;
  }

  .tablet-margin-bottom-11 {
    margin-bottom: 11px;
  }

  .tablet-margin-bottom-12 {
    margin-bottom: 12px;
  }

  .tablet-margin-bottom-13 {
    margin-bottom: 13px;
  }

  .tablet-margin-bottom-14 {
    margin-bottom: 14px;
  }

  .tablet-margin-bottom-15 {
    margin-bottom: 15px;
  }

  .tablet-margin-bottom-16 {
    margin-bottom: 16px;
  }

  .tablet-margin-bottom-17 {
    margin-bottom: 17px;
  }

  .tablet-margin-bottom-18 {
    margin-bottom: 18px;
  }

  .tablet-margin-bottom-19 {
    margin-bottom: 19px;
  }

  .tablet-margin-bottom-20 {
    margin-bottom: 20px;
  }

  .tablet-margin-bottom-21 {
    margin-bottom: 21px;
  }

  .tablet-margin-bottom-22 {
    margin-bottom: 22px;
  }

  .tablet-margin-bottom-23 {
    margin-bottom: 23px;
  }

  .tablet-margin-bottom-24 {
    margin-bottom: 24px;
  }

  .tablet-margin-bottom-25 {
    margin-bottom: 25px;
  }

  .tablet-margin-bottom-26 {
    margin-bottom: 26px;
  }

  .tablet-margin-bottom-27 {
    margin-bottom: 27px;
  }

  .tablet-margin-bottom-28 {
    margin-bottom: 28px;
  }

  .tablet-margin-bottom-29 {
    margin-bottom: 29px;
  }

  .tablet-margin-bottom-30 {
    margin-bottom: 30px;
  }

  .tablet-margin-bottom-31 {
    margin-bottom: 31px;
  }

  .tablet-margin-bottom-32 {
    margin-bottom: 32px;
  }

  .tablet-margin-bottom-33 {
    margin-bottom: 33px;
  }

  .tablet-margin-bottom-34 {
    margin-bottom: 34px;
  }

  .tablet-margin-bottom-35 {
    margin-bottom: 35px;
  }

  .tablet-margin-bottom-36 {
    margin-bottom: 36px;
  }

  .tablet-margin-bottom-37 {
    margin-bottom: 37px;
  }

  .tablet-margin-bottom-38 {
    margin-bottom: 38px;
  }

  .tablet-margin-bottom-39 {
    margin-bottom: 39px;
  }

  .tablet-margin-bottom-40 {
    margin-bottom: 40px;
  }

  .tablet-margin-bottom-41 {
    margin-bottom: 41px;
  }

  .tablet-margin-bottom-42 {
    margin-bottom: 42px;
  }

  .tablet-margin-bottom-43 {
    margin-bottom: 43px;
  }

  .tablet-margin-bottom-44 {
    margin-bottom: 44px;
  }

  .tablet-margin-bottom-45 {
    margin-bottom: 45px;
  }

  .tablet-margin-bottom-46 {
    margin-bottom: 46px;
  }

  .tablet-margin-bottom-47 {
    margin-bottom: 47px;
  }

  .tablet-margin-bottom-48 {
    margin-bottom: 48px;
  }

  .tablet-margin-bottom-49 {
    margin-bottom: 49px;
  }

  .tablet-margin-bottom-50 {
    margin-bottom: 50px;
  }

  .asset-arrow-1-1-white {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .col-sh-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 5.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 13.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 22.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 30.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 38.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 47.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 55.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 63.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 72.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 80.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 88.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 97.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sh-0-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 8.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 16.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 25%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 33.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 41.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 50%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 58.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 66.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 75%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 83.33333%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 91.66667%;
    margin-right: 0%;
    margin-left: 0%;
  }

  .col-sh-0-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
  }
}
@media (max-width: 480px) {
  .col-sm-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 5.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 13.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 22.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 30.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 38.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 47.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 55.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 63.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 72.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 80.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 88.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sm-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 97.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .wrapper {
    width: 88%;
  }

  .sm-align-left {
    text-align: left !important;
  }

  .sm-align-center {
    text-align: center !important;
  }

  .sm-align-right {
    text-align: right !important;
  }
}
@media (max-width: 320px) {
  .col-sl-1 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 5.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-2 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 13.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-3 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 22.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-4 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 30.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-5 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 38.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-6 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 47.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-7 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 55.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-8 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 63.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-9 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 72.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-10 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 80.55556%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-11 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 88.88889%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }

  .col-sl-12 {
    -webkit-box-sizing: "border-box";
    -moz-box-sizing: "border-box";
    box-sizing: "border-box";
    display: inline;
    float: left;
    width: 97.22222%;
    margin-right: 1.38889%;
    margin-left: 1.38889%;
  }
}
