.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;

  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 200%;
  overflow: hidden;
  background: #212121;
}



.pace .pace-progress {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  display: block;
  position: fixed;
  right: 100%;
  margin-right: 0px;
  width: 100%;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  font-size: 17px;
  background: #ffc107;
  color: #ffffff;
  line-height: 60px;
  font-weight: normal;
  font-family: Helvetica, Arial, sans-serif;

}

body.red .pace .pace-progress{
  background-color: #f44336;
}
body.green .pace .pace-progress{
  background-color: #00c853;
}
body.blue .pace .pace-progress{
  background-color: #29b6f6;
}
body.orange .pace .pace-progress{
  background-color: #ff6630;
}



.pace .pace-progress:after {
  display: none;
  content: attr(data-progress-text);
  display: inline-block;
  position: fixed;
  width: auto;
  text-align: left;
  right: 0;
  padding-right: 0px;
  top: 4px;
}

.pace .pace-activity {
}

.pace.pace-inactive {
  display: none;
}

@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30%, 0, 0);
    transform: translate3d(-30%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #424242;
	color: #cccccc;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
	        padding: 5px !important;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(33, 33, 33, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(33, 33, 33, 0.5);
	        box-shadow: 0 10px 25px rgba(33, 33, 33, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url(../themes/jara/assets/img/fancybox/fancybox_sprite.png);
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url(../themes/jara/assets/img/fancybox/fancybox_loading.gif) center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url(../themes/jara/assets/css/blank.gif); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    /*overflow: visible !important;*/
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url(../themes/jara/assets/img/fancybox/fancybox_overlay.png);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 5px 25px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(33, 33, 33, 1);
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
	color: #FFF;
	font-weight: normal;
	font-size: 16px;
	white-space: nowrap;
	line-height: 28px;
	margin-top: 10px;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url(../themes/jara/assets/img/fancybox/fancybox_sprite@2x.png);
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url(../themes/jara/assets/img/fancybox/fancybox_loading@2x.gif);
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  margin: .67em 0;
  font-size: 2em;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-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;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('../themes/jara/assets/fonts/glyphicons-halflings-regular.eot');
  src: url('../themes/jara/assets/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../themes/jara/assets/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../themes/jara/assets/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../themes/jara/assets/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../themes/jara/assets/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -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: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  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,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
.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;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  padding: .2em;
  background-color: #fcf8e3;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777;
}
.text-primary {
  color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #286090;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #286090;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
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: 4px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
          box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
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;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.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;
  display: table-column;
  float: none;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.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 > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.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 > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.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 > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.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 > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.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 {
  min-height: .01%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    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 > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
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: 14px;
  line-height: 1.42857143;
  color: #555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .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 {
  background-color: transparent;
  border: 0;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  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: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  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-top: 4px \9;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.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: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .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, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}
.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, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}
.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, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.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 {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
.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: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.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 {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
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 > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].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 > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].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 > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].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 > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].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 > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].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 > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  font-weight: normal;
  color: #337ab7;
  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,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.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 .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .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-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}
.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;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropdown-menu-left {
  right: auto;
  left: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}
.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 {
    right: auto;
    left: 0;
  }
}
.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-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.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 .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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.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-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(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 {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .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 > .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-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.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-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  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-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[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-right: 0;
  padding-left: 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-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.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: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.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-top-right-radius: 0;
  border-bottom-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-top-left-radius: 0;
  border-bottom-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 {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.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: #eee;
}
.nav > li.disabled > a {
  color: #777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 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.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.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 {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-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-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.breadcrumb > .active {
  color: #777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.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;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777;
}
.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;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #337ab7;
}
.thumbnail .caption {
  padding: 9px;
  color: #333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.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 {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.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;
  }
}
@-o-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 {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
          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, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.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 {
  padding-left: 0;
  margin-bottom: 20px;
}
.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-left-radius: 4px;
  border-top-right-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
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,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  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 {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}
.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: #777;
}
.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:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .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,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
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,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
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,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
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,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
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: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  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: 3px;
  border-bottom-left-radius: 3px;
}
.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-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-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-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .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 > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .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 > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.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-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.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: #333;
  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: #333;
}
.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;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, .15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.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;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.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, .5);
            box-shadow: 0 5px 15px rgba(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-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}
.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}
.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 {
  right: 5px;
  bottom: 0;
  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-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

  line-break: auto;
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 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 {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
}
.popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  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: #999;
  border-left-color: rgba(0, 0, 0, .25);
}
.popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: 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,
.visible-sm,
.visible-md,
.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;
  }
}
/*# sourceMappingURL=bootstrap.css.map */

/* MaterialDesignIcons.com */
@font-face {
  font-family: 'MaterialDesignIcons';
  src:url('../themes/jara/assets/fonts/MaterialDesignIcons.full.eot?490x1g');
  src:url('../themes/jara/assets/fonts/MaterialDesignIcons.full.eot?#iefix490x1g') format('embedded-opentype'),
    url('../themes/jara/assets/fonts/MaterialDesignIcons.full.ttf?490x1g') format('truetype'),
    url('../themes/jara/assets/fonts/MaterialDesignIcons.full.woff?490x1g') format('woff'),
    url('../themes/jara/assets/fonts/MaterialDesignIcons.full.svg?490x1g#MaterialDesignIcons') format('svg');

  font-weight: normal;
  font-style: normal;
}

.mdi {
  display: inline-block;
  font: normal normal normal 24px/1 MaterialDesignIcons;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  speak: none;
  text-transform: none;
}

.mdi-account::before {
  content: "\f101";
}

.mdi-account-alert::before {
  content: "\f102";
}

.mdi-account-box::before {
  content: "\f103";
}

.mdi-account-box-outline::before {
  content: "\f104";
}

.mdi-account-check::before {
  content: "\f105";
}

.mdi-account-circle::before {
  content: "\f106";
}

.mdi-account-key::before {
  content: "\f107";
}

.mdi-account-location::before {
  content: "\f108";
}

.mdi-account-minus::before {
  content: "\f109";
}

.mdi-account-multiple::before {
  content: "\f10a";
}

.mdi-account-multiple-outline::before {
  content: "\f10b";
}

.mdi-account-multiple-plus::before {
  content: "\f10c";
}

.mdi-account-network::before {
  content: "\f10d";
}

.mdi-account-outline::before {
  content: "\f10e";
}

.mdi-account-plus::before {
  content: "\f10f";
}

.mdi-account-remove::before {
  content: "\f110";
}

.mdi-account-search::before {
  content: "\f111";
}

.mdi-account-star::before {
  content: "\f112";
}

.mdi-account-star-variant::before {
  content: "\f113";
}

.mdi-account-switch::before {
  content: "\f114";
}

.mdi-airballoon::before {
  content: "\f115";
}

.mdi-airplane::before {
  content: "\f116";
}

.mdi-airplane-off::before {
  content: "\f117";
}

.mdi-alarm::before {
  content: "\f118";
}

.mdi-alarm-check::before {
  content: "\f119";
}

.mdi-alarm-multiple::before {
  content: "\f11a";
}

.mdi-alarm-off::before {
  content: "\f11b";
}

.mdi-alarm-plus::before {
  content: "\f11c";
}

.mdi-album::before {
  content: "\f11d";
}

.mdi-alert::before {
  content: "\f11e";
}

.mdi-alert-box::before {
  content: "\f11f";
}

.mdi-alert-circle::before {
  content: "\f120";
}

.mdi-alert-octagon::before {
  content: "\f121";
}

.mdi-alpha::before {
  content: "\f122";
}

.mdi-alphabetical::before {
  content: "\f123";
}

.mdi-amazon::before {
  content: "\f124";
}

.mdi-amazon-clouddrive::before {
  content: "\f125";
}

.mdi-ambulance::before {
  content: "\f126";
}

.mdi-android::before {
  content: "\f127";
}

.mdi-android-debug-bridge::before {
  content: "\f128";
}

.mdi-android-studio::before {
  content: "\f129";
}

.mdi-apple::before {
  content: "\f12a";
}

.mdi-apple-finder::before {
  content: "\f12b";
}

.mdi-apple-mobileme::before {
  content: "\f12c";
}

.mdi-apple-safari::before {
  content: "\f12d";
}

.mdi-appnet::before {
  content: "\f12e";
}

.mdi-apps::before {
  content: "\f12f";
}

.mdi-archive::before {
  content: "\f130";
}

.mdi-arrange-bring-forward::before {
  content: "\f131";
}

.mdi-arrange-bring-to-front::before {
  content: "\f132";
}

.mdi-arrange-send-backward::before {
  content: "\f133";
}

.mdi-arrange-send-to-back::before {
  content: "\f134";
}

.mdi-arrow-all::before {
  content: "\f135";
}

.mdi-arrow-bottom-left::before {
  content: "\f136";
}

.mdi-arrow-bottom-right::before {
  content: "\f137";
}

.mdi-arrow-collapse::before {
  content: "\f138";
}

.mdi-arrow-down::before {
  content: "\f139";
}

.mdi-arrow-down-bold::before {
  content: "\f13a";
}

.mdi-arrow-down-bold-circle::before {
  content: "\f13b";
}

.mdi-arrow-down-bold-circle-outline::before {
  content: "\f13c";
}

.mdi-arrow-down-bold-hexagon-outline::before {
  content: "\f13d";
}

.mdi-arrow-expand::before {
  content: "\f13e";
}

.mdi-arrow-left::before {
  content: "\f13f";
}

.mdi-arrow-left-bold::before {
  content: "\f140";
}

.mdi-arrow-left-bold-circle::before {
  content: "\f141";
}

.mdi-arrow-left-bold-circle-outline::before {
  content: "\f142";
}

.mdi-arrow-left-bold-hexagon-outline::before {
  content: "\f143";
}

.mdi-arrow-right::before {
  content: "\f144";
}

.mdi-arrow-right-bold::before {
  content: "\f145";
}

.mdi-arrow-right-bold-circle::before {
  content: "\f146";
}

.mdi-arrow-right-bold-circle-outline::before {
  content: "\f147";
}

.mdi-arrow-right-bold-hexagon-outline::before {
  content: "\f148";
}

.mdi-arrow-top-left::before {
  content: "\f149";
}

.mdi-arrow-top-right::before {
  content: "\f14a";
}

.mdi-arrow-up::before {
  content: "\f14b";
}

.mdi-arrow-up-bold::before {
  content: "\f14c";
}

.mdi-arrow-up-bold-circle::before {
  content: "\f14d";
}

.mdi-arrow-up-bold-circle-outline::before {
  content: "\f14e";
}

.mdi-arrow-up-bold-hexagon-outline::before {
  content: "\f14f";
}

.mdi-at::before {
  content: "\f150";
}

.mdi-attachment::before {
  content: "\f151";
}

.mdi-audiobook::before {
  content: "\f152";
}

.mdi-auto-fix::before {
  content: "\f153";
}

.mdi-auto-upload::before {
  content: "\f154";
}

.mdi-backburger::before {
  content: "\f155";
}

.mdi-backup-restore::before {
  content: "\f156";
}

.mdi-bank::before {
  content: "\f157";
}

.mdi-barcode::before {
  content: "\f158";
}

.mdi-barley::before {
  content: "\f159";
}

.mdi-barrel::before {
  content: "\f15a";
}

.mdi-basecamp::before {
  content: "\f15b";
}

.mdi-basket::before {
  content: "\f15c";
}

.mdi-basket-fill::before {
  content: "\f15d";
}

.mdi-basket-unfill::before {
  content: "\f15e";
}

.mdi-battery::before {
  content: "\f15f";
}

.mdi-battery-20::before {
  content: "\f160";
}

.mdi-battery-30::before {
  content: "\f161";
}

.mdi-battery-40::before {
  content: "\f162";
}

.mdi-battery-60::before {
  content: "\f163";
}

.mdi-battery-80::before {
  content: "\f164";
}

.mdi-battery-90::before {
  content: "\f165";
}

.mdi-battery-alert::before {
  content: "\f166";
}

.mdi-battery-charging-100::before {
  content: "\f167";
}

.mdi-battery-charging-20::before {
  content: "\f168";
}

.mdi-battery-charging-30::before {
  content: "\f169";
}

.mdi-battery-charging-40::before {
  content: "\f16a";
}

.mdi-battery-charging-60::before {
  content: "\f16b";
}

.mdi-battery-charging-80::before {
  content: "\f16c";
}

.mdi-battery-charging-90::before {
  content: "\f16d";
}

.mdi-battery-minus::before {
  content: "\f16e";
}

.mdi-battery-negative::before {
  content: "\f16f";
}

.mdi-battery-outline::before {
  content: "\f170";
}

.mdi-battery-plus::before {
  content: "\f171";
}

.mdi-battery-positive::before {
  content: "\f172";
}

.mdi-battery-unknown::before {
  content: "\f173";
}

.mdi-beach::before {
  content: "\f174";
}

.mdi-beaker::before {
  content: "\f175";
}

.mdi-beaker-empty::before {
  content: "\f176";
}

.mdi-beaker-empty-outline::before {
  content: "\f177";
}

.mdi-beaker-outline::before {
  content: "\f178";
}

.mdi-beats::before {
  content: "\f179";
}

.mdi-beer::before {
  content: "\f17a";
}

.mdi-behance::before {
  content: "\f17b";
}

.mdi-bell::before {
  content: "\f17c";
}

.mdi-bell-off::before {
  content: "\f17d";
}

.mdi-bell-outline::before {
  content: "\f17e";
}

.mdi-bell-ring::before {
  content: "\f17f";
}

.mdi-bell-ring-outline::before {
  content: "\f180";
}

.mdi-bell-sleep::before {
  content: "\f181";
}

.mdi-beta::before {
  content: "\f182";
}

.mdi-bike::before {
  content: "\f183";
}

.mdi-bing::before {
  content: "\f184";
}

.mdi-binoculars::before {
  content: "\f185";
}

.mdi-bio::before {
  content: "\f186";
}

.mdi-biohazard::before {
  content: "\f187";
}

.mdi-black-mesa::before {
  content: "\f188";
}

.mdi-blackberry::before {
  content: "\f189";
}

.mdi-blinds::before {
  content: "\f18a";
}

.mdi-block-helper::before {
  content: "\f18b";
}

.mdi-blogger::before {
  content: "\f18c";
}

.mdi-bluetooth::before {
  content: "\f18d";
}

.mdi-bluetooth-audio::before {
  content: "\f18e";
}

.mdi-bluetooth-connect::before {
  content: "\f18f";
}

.mdi-bluetooth-settings::before {
  content: "\f190";
}

.mdi-blur::before {
  content: "\f191";
}

.mdi-blur-linear::before {
  content: "\f192";
}

.mdi-blur-off::before {
  content: "\f193";
}

.mdi-blur-radial::before {
  content: "\f194";
}

.mdi-bone::before {
  content: "\f195";
}

.mdi-book::before {
  content: "\f196";
}

.mdi-book-multiple::before {
  content: "\f197";
}

.mdi-book-multiple-variant::before {
  content: "\f198";
}

.mdi-book-open::before {
  content: "\f199";
}

.mdi-book-variant::before {
  content: "\f19a";
}

.mdi-bookmark::before {
  content: "\f19b";
}

.mdi-bookmark-check::before {
  content: "\f19c";
}

.mdi-bookmark-music::before {
  content: "\f19d";
}

.mdi-bookmark-outline::before {
  content: "\f19e";
}

.mdi-bookmark-outline-plus::before {
  content: "\f19f";
}

.mdi-bookmark-plus::before {
  content: "\f1a0";
}

.mdi-bookmark-remove::before {
  content: "\f1a1";
}

.mdi-border-all::before {
  content: "\f1a2";
}

.mdi-border-bottom::before {
  content: "\f1a3";
}

.mdi-border-color::before {
  content: "\f1a4";
}

.mdi-border-horizontal::before {
  content: "\f1a5";
}

.mdi-border-inside::before {
  content: "\f1a6";
}

.mdi-border-left::before {
  content: "\f1a7";
}

.mdi-border-none::before {
  content: "\f1a8";
}

.mdi-border-outside::before {
  content: "\f1a9";
}

.mdi-border-right::before {
  content: "\f1aa";
}

.mdi-border-top::before {
  content: "\f1ab";
}

.mdi-border-vertical::before {
  content: "\f1ac";
}

.mdi-bowling::before {
  content: "\f1ad";
}

.mdi-box::before {
  content: "\f1ae";
}

.mdi-briefcase::before {
  content: "\f1af";
}

.mdi-briefcase-check::before {
  content: "\f1b0";
}

.mdi-briefcase-download::before {
  content: "\f1b1";
}

.mdi-briefcase-upload::before {
  content: "\f1b2";
}

.mdi-brightness-1::before {
  content: "\f1b3";
}

.mdi-brightness-2::before {
  content: "\f1b4";
}

.mdi-brightness-3::before {
  content: "\f1b5";
}

.mdi-brightness-4::before {
  content: "\f1b6";
}

.mdi-brightness-5::before {
  content: "\f1b7";
}

.mdi-brightness-6::before {
  content: "\f1b8";
}

.mdi-brightness-7::before {
  content: "\f1b9";
}

.mdi-brightness-auto::before {
  content: "\f1ba";
}

.mdi-broom::before {
  content: "\f1bb";
}

.mdi-brush::before {
  content: "\f1bc";
}

.mdi-bug::before {
  content: "\f1bd";
}

.mdi-bullhorn::before {
  content: "\f1be";
}

.mdi-bus::before {
  content: "\f1bf";
}

.mdi-cake::before {
  content: "\f1c0";
}

.mdi-cake-variant::before {
  content: "\f1c1";
}

.mdi-calculator::before {
  content: "\f1c2";
}

.mdi-calendar::before {
  content: "\f1c3";
}

.mdi-calendar-blank::before {
  content: "\f1c4";
}

.mdi-calendar-check::before {
  content: "\f1c5";
}

.mdi-calendar-clock::before {
  content: "\f1c6";
}

.mdi-calendar-multiple::before {
  content: "\f1c7";
}

.mdi-calendar-multiple-check::before {
  content: "\f1c8";
}

.mdi-calendar-plus::before {
  content: "\f1c9";
}

.mdi-calendar-remove::before {
  content: "\f1ca";
}

.mdi-calendar-text::before {
  content: "\f1cb";
}

.mdi-calendar-today::before {
  content: "\f1cc";
}

.mdi-camcorder::before {
  content: "\f1cd";
}

.mdi-camcorder-box::before {
  content: "\f1ce";
}

.mdi-camcorder-box-off::before {
  content: "\f1cf";
}

.mdi-camcorder-off::before {
  content: "\f1d0";
}

.mdi-camera::before {
  content: "\f1d1";
}

.mdi-camera-iris::before {
  content: "\f1d2";
}

.mdi-camera-party-mode::before {
  content: "\f1d3";
}

.mdi-camera-switch::before {
  content: "\f1d4";
}

.mdi-camera-timer::before {
  content: "\f1d5";
}

.mdi-candycane::before {
  content: "\f1d6";
}

.mdi-car::before {
  content: "\f1d7";
}

.mdi-car-wash::before {
  content: "\f1d8";
}

.mdi-carrot::before {
  content: "\f1d9";
}

.mdi-cart::before {
  content: "\f1da";
}

.mdi-cart-outline::before {
  content: "\f1db";
}

.mdi-cash::before {
  content: "\f1dc";
}

.mdi-cash-multiple::before {
  content: "\f1dd";
}

.mdi-cash-usd::before {
  content: "\f1de";
}

.mdi-cast::before {
  content: "\f1df";
}

.mdi-cast-connected::before {
  content: "\f1e0";
}

.mdi-castle::before {
  content: "\f1e1";
}

.mdi-cat::before {
  content: "\f1e2";
}

.mdi-cellphone::before {
  content: "\f1e3";
}

.mdi-cellphone-android::before {
  content: "\f1e4";
}

.mdi-cellphone-dock::before {
  content: "\f1e5";
}

.mdi-cellphone-iphone::before {
  content: "\f1e6";
}

.mdi-cellphone-link::before {
  content: "\f1e7";
}

.mdi-cellphone-link-off::before {
  content: "\f1e8";
}

.mdi-cellphone-settings::before {
  content: "\f1e9";
}

.mdi-chair-school::before {
  content: "\f1ea";
}

.mdi-chart-arc::before {
  content: "\f1eb";
}

.mdi-chart-areaspline::before {
  content: "\f1ec";
}

.mdi-chart-bar::before {
  content: "\f1ed";
}

.mdi-chart-histogram::before {
  content: "\f1ee";
}

.mdi-chart-line::before {
  content: "\f1ef";
}

.mdi-chart-pie::before {
  content: "\f1f0";
}

.mdi-check::before {
  content: "\f1f1";
}

.mdi-check-all::before {
  content: "\f1f2";
}

.mdi-checkbox-blank::before {
  content: "\f1f3";
}

.mdi-checkbox-blank-circle::before {
  content: "\f1f4";
}

.mdi-checkbox-blank-circle-outline::before {
  content: "\f1f5";
}

.mdi-checkbox-blank-outline::before {
  content: "\f1f6";
}

.mdi-checkbox-marked::before {
  content: "\f1f7";
}

.mdi-checkbox-marked-circle::before {
  content: "\f1f8";
}

.mdi-checkbox-marked-circle-outline::before {
  content: "\f1f9";
}

.mdi-checkbox-marked-outline::before {
  content: "\f1fa";
}

.mdi-checkbox-multiple-blank::before {
  content: "\f1fb";
}

.mdi-checkbox-multiple-blank-outline::before {
  content: "\f1fc";
}

.mdi-checkbox-multiple-marked::before {
  content: "\f1fd";
}

.mdi-checkbox-multiple-marked-outline::before {
  content: "\f1fe";
}

.mdi-checkerboard::before {
  content: "\f1ff";
}

.mdi-chevron-double-down::before {
  content: "\f200";
}

.mdi-chevron-double-left::before {
  content: "\f201";
}

.mdi-chevron-double-right::before {
  content: "\f202";
}

.mdi-chevron-double-up::before {
  content: "\f203";
}

.mdi-chevron-down::before {
  content: "\f204";
}

.mdi-chevron-left::before {
  content: "\f205";
}

.mdi-chevron-right::before {
  content: "\f206";
}

.mdi-chevron-up::before {
  content: "\f207";
}

.mdi-church::before {
  content: "\f208";
}

.mdi-cisco-webex::before {
  content: "\f209";
}

.mdi-city::before {
  content: "\f20a";
}

.mdi-clipboard::before {
  content: "\f20b";
}

.mdi-clipboard-account::before {
  content: "\f20c";
}

.mdi-clipboard-alert::before {
  content: "\f20d";
}

.mdi-clipboard-arrow-down::before {
  content: "\f20e";
}

.mdi-clipboard-arrow-left::before {
  content: "\f20f";
}

.mdi-clipboard-check::before {
  content: "\f210";
}

.mdi-clipboard-outline::before {
  content: "\f211";
}

.mdi-clipboard-text::before {
  content: "\f212";
}

.mdi-clippy::before {
  content: "\f213";
}

.mdi-clock::before {
  content: "\f214";
}

.mdi-clock-fast::before {
  content: "\f215";
}

.mdi-close::before {
  content: "\f216";
}

.mdi-close-box::before {
  content: "\f217";
}

.mdi-close-box-outline::before {
  content: "\f218";
}

.mdi-close-circle::before {
  content: "\f219";
}

.mdi-close-circle-outline::before {
  content: "\f21a";
}

.mdi-close-network::before {
  content: "\f21b";
}

.mdi-closed-caption::before {
  content: "\f21c";
}

.mdi-cloud::before {
  content: "\f21d";
}

.mdi-cloud-check::before {
  content: "\f21e";
}

.mdi-cloud-circle::before {
  content: "\f21f";
}

.mdi-cloud-download::before {
  content: "\f220";
}

.mdi-cloud-outline::before {
  content: "\f221";
}

.mdi-cloud-outline-off::before {
  content: "\f222";
}

.mdi-cloud-upload::before {
  content: "\f223";
}

.mdi-code-array::before {
  content: "\f224";
}

.mdi-code-string::before {
  content: "\f225";
}

.mdi-codepen::before {
  content: "\f226";
}

.mdi-coffee::before {
  content: "\f227";
}

.mdi-coffee-to-go::before {
  content: "\f228";
}

.mdi-coin::before {
  content: "\f229";
}

.mdi-color-helper::before {
  content: "\f22a";
}

.mdi-comment::before {
  content: "\f22b";
}

.mdi-comment-account::before {
  content: "\f22c";
}

.mdi-comment-account-outline::before {
  content: "\f22d";
}

.mdi-comment-alert::before {
  content: "\f22e";
}

.mdi-comment-alert-outline::before {
  content: "\f22f";
}

.mdi-comment-check::before {
  content: "\f230";
}

.mdi-comment-check-outline::before {
  content: "\f231";
}

.mdi-comment-multiple-outline::before {
  content: "\f232";
}

.mdi-comment-outline::before {
  content: "\f233";
}

.mdi-comment-plus-outline::before {
  content: "\f234";
}

.mdi-comment-processing::before {
  content: "\f235";
}

.mdi-comment-processing-outline::before {
  content: "\f236";
}

.mdi-comment-remove-outline::before {
  content: "\f237";
}

.mdi-comment-text::before {
  content: "\f238";
}

.mdi-comment-text-outline::before {
  content: "\f239";
}

.mdi-compare::before {
  content: "\f23a";
}

.mdi-compass::before {
  content: "\f23b";
}

.mdi-compass-outline::before {
  content: "\f23c";
}

.mdi-console::before {
  content: "\f23d";
}

.mdi-content-copy::before {
  content: "\f23e";
}

.mdi-content-cut::before {
  content: "\f23f";
}

.mdi-content-paste::before {
  content: "\f240";
}

.mdi-content-save::before {
  content: "\f241";
}

.mdi-content-save-all::before {
  content: "\f242";
}

.mdi-contrast::before {
  content: "\f243";
}

.mdi-contrast-box::before {
  content: "\f244";
}

.mdi-contrast-circle::before {
  content: "\f245";
}

.mdi-cow::before {
  content: "\f246";
}

.mdi-credit-card::before {
  content: "\f247";
}

.mdi-credit-card-multiple::before {
  content: "\f248";
}

.mdi-crop::before {
  content: "\f249";
}

.mdi-crop-free::before {
  content: "\f24a";
}

.mdi-crop-landscape::before {
  content: "\f24b";
}

.mdi-crop-portrait::before {
  content: "\f24c";
}

.mdi-crop-square::before {
  content: "\f24d";
}

.mdi-crosshairs::before {
  content: "\f24e";
}

.mdi-crosshairs-gps::before {
  content: "\f24f";
}

.mdi-crown::before {
  content: "\f250";
}

.mdi-cube::before {
  content: "\f251";
}

.mdi-cube-outline::before {
  content: "\f252";
}

.mdi-cube-unfolded::before {
  content: "\f253";
}

.mdi-cup::before {
  content: "\f254";
}

.mdi-cup-water::before {
  content: "\f255";
}

.mdi-currency-btc::before {
  content: "\f256";
}

.mdi-currency-eur::before {
  content: "\f257";
}

.mdi-currency-gbp::before {
  content: "\f258";
}

.mdi-currency-inr::before {
  content: "\f259";
}

.mdi-currency-rub::before {
  content: "\f25a";
}

.mdi-currency-try::before {
  content: "\f25b";
}

.mdi-currency-usd::before {
  content: "\f25c";
}

.mdi-cursor-default::before {
  content: "\f25d";
}

.mdi-cursor-default-outline::before {
  content: "\f25e";
}

.mdi-cursor-move::before {
  content: "\f25f";
}

.mdi-cursor-pointer::before {
  content: "\f260";
}

.mdi-database::before {
  content: "\f261";
}

.mdi-database-minus::before {
  content: "\f262";
}

.mdi-database-outline::before {
  content: "\f263";
}

.mdi-database-plus::before {
  content: "\f264";
}

.mdi-debug-step-into::before {
  content: "\f265";
}

.mdi-debug-step-out::before {
  content: "\f266";
}

.mdi-debug-step-over::before {
  content: "\f267";
}

.mdi-delete::before {
  content: "\f268";
}

.mdi-delete-variant::before {
  content: "\f269";
}

.mdi-deskphone::before {
  content: "\f26a";
}

.mdi-desktop-mac::before {
  content: "\f26b";
}

.mdi-desktop-tower::before {
  content: "\f26c";
}

.mdi-details::before {
  content: "\f26d";
}

.mdi-deviantart::before {
  content: "\f26e";
}

.mdi-dice::before {
  content: "\f26f";
}

.mdi-dice-1::before {
  content: "\f270";
}

.mdi-dice-2::before {
  content: "\f271";
}

.mdi-dice-3::before {
  content: "\f272";
}

.mdi-dice-4::before {
  content: "\f273";
}

.mdi-dice-5::before {
  content: "\f274";
}

.mdi-dice-6::before {
  content: "\f275";
}

.mdi-directions::before {
  content: "\f276";
}

.mdi-disk-alert::before {
  content: "\f277";
}

.mdi-disqus::before {
  content: "\f278";
}

.mdi-disqus-outline::before {
  content: "\f279";
}

.mdi-division::before {
  content: "\f27a";
}

.mdi-division-box::before {
  content: "\f27b";
}

.mdi-dns::before {
  content: "\f27c";
}

.mdi-domain::before {
  content: "\f27d";
}

.mdi-dots-horizontal::before {
  content: "\f27e";
}

.mdi-dots-vertical::before {
  content: "\f27f";
}

.mdi-download::before {
  content: "\f280";
}

.mdi-drag::before {
  content: "\f281";
}

.mdi-drag-horizontal::before {
  content: "\f282";
}

.mdi-drag-vertical::before {
  content: "\f283";
}

.mdi-drawing::before {
  content: "\f284";
}

.mdi-drawing-box::before {
  content: "\f285";
}

.mdi-dribbble::before {
  content: "\f286";
}

.mdi-dribbble-box::before {
  content: "\f287";
}

.mdi-drone::before {
  content: "\f288";
}

.mdi-dropbox::before {
  content: "\f289";
}

.mdi-duck::before {
  content: "\f28a";
}

.mdi-dumbbell::before {
  content: "\f28b";
}

.mdi-earth::before {
  content: "\f28c";
}

.mdi-earth-off::before {
  content: "\f28d";
}

.mdi-edge::before {
  content: "\f28e";
}

.mdi-elevation-decline::before {
  content: "\f28f";
}

.mdi-elevation-rise::before {
  content: "\f290";
}

.mdi-elevator::before {
  content: "\f291";
}

.mdi-email::before {
  content: "\f292";
}

.mdi-email-open::before {
  content: "\f293";
}

.mdi-email-outline::before {
  content: "\f294";
}

.mdi-emoticon::before {
  content: "\f295";
}

.mdi-emoticon-cool::before {
  content: "\f296";
}

.mdi-emoticon-devil::before {
  content: "\f297";
}

.mdi-emoticon-happy::before {
  content: "\f298";
}

.mdi-emoticon-neutral::before {
  content: "\f299";
}

.mdi-emoticon-poop::before {
  content: "\f29a";
}

.mdi-emoticon-sad::before {
  content: "\f29b";
}

.mdi-emoticon-tongue::before {
  content: "\f29c";
}

.mdi-equal::before {
  content: "\f29d";
}

.mdi-equal-box::before {
  content: "\f29e";
}

.mdi-eraser::before {
  content: "\f29f";
}

.mdi-escalator::before {
  content: "\f2a0";
}

.mdi-etsy::before {
  content: "\f2a1";
}

.mdi-evernote::before {
  content: "\f2a2";
}

.mdi-exclamation::before {
  content: "\f2a3";
}

.mdi-exit-to-app::before {
  content: "\f2a4";
}

.mdi-export::before {
  content: "\f2a5";
}

.mdi-eye::before {
  content: "\f2a6";
}

.mdi-eye-off::before {
  content: "\f2a7";
}

.mdi-eyedropper::before {
  content: "\f2a8";
}

.mdi-eyedropper-variant::before {
  content: "\f2a9";
}

.mdi-facebook::before {
  content: "\f2aa";
}

.mdi-facebook-box::before {
  content: "\f2ab";
}

.mdi-facebook-messenger::before {
  content: "\f2ac";
}

.mdi-factory::before {
  content: "\f2ad";
}

.mdi-fan::before {
  content: "\f2ae";
}

.mdi-fast-forward::before {
  content: "\f2af";
}

.mdi-ferry::before {
  content: "\f2b0";
}

.mdi-file::before {
  content: "\f2b1";
}

.mdi-file-cloud::before {
  content: "\f2b2";
}

.mdi-file-delimited::before {
  content: "\f2b3";
}

.mdi-file-document::before {
  content: "\f2b4";
}

.mdi-file-document-box::before {
  content: "\f2b5";
}

.mdi-file-excel::before {
  content: "\f2b6";
}

.mdi-file-excel-box::before {
  content: "\f2b7";
}

.mdi-file-find::before {
  content: "\f2b8";
}

.mdi-file-image::before {
  content: "\f2b9";
}

.mdi-file-image-box::before {
  content: "\f2ba";
}

.mdi-file-music::before {
  content: "\f2bb";
}

.mdi-file-outline::before {
  content: "\f2bc";
}

.mdi-file-pdf::before {
  content: "\f2bd";
}

.mdi-file-pdf-box::before {
  content: "\f2be";
}

.mdi-file-powerpoint::before {
  content: "\f2bf";
}

.mdi-file-powerpoint-box::before {
  content: "\f2c0";
}

.mdi-file-presentation-box::before {
  content: "\f2c1";
}

.mdi-file-video::before {
  content: "\f2c2";
}

.mdi-file-word::before {
  content: "\f2c3";
}

.mdi-file-word-box::before {
  content: "\f2c4";
}

.mdi-file-xml::before {
  content: "\f2c5";
}

.mdi-film::before {
  content: "\f2c6";
}

.mdi-filmstrip::before {
  content: "\f2c7";
}

.mdi-filmstrip-off::before {
  content: "\f2c8";
}

.mdi-filter::before {
  content: "\f2c9";
}

.mdi-filter-outline::before {
  content: "\f2ca";
}

.mdi-filter-remove::before {
  content: "\f2cb";
}

.mdi-filter-remove-outline::before {
  content: "\f2cc";
}

.mdi-filter-variant::before {
  content: "\f2cd";
}

.mdi-fire::before {
  content: "\f2ce";
}

.mdi-firefox::before {
  content: "\f2cf";
}

.mdi-fish::before {
  content: "\f2d0";
}

.mdi-flag::before {
  content: "\f2d1";
}

.mdi-flag-checkered::before {
  content: "\f2d2";
}

.mdi-flag-outline::before {
  content: "\f2d3";
}

.mdi-flag-outline-variant::before {
  content: "\f2d4";
}

.mdi-flag-triangle::before {
  content: "\f2d5";
}

.mdi-flag-variant::before {
  content: "\f2d6";
}

.mdi-flash::before {
  content: "\f2d7";
}

.mdi-flash-auto::before {
  content: "\f2d8";
}

.mdi-flash-off::before {
  content: "\f2d9";
}

.mdi-flashlight::before {
  content: "\f2da";
}

.mdi-flashlight-off::before {
  content: "\f2db";
}

.mdi-flattr::before {
  content: "\f2dc";
}

.mdi-flip-to-back::before {
  content: "\f2dd";
}

.mdi-flip-to-front::before {
  content: "\f2de";
}

.mdi-floppy::before {
  content: "\f2df";
}

.mdi-flower::before {
  content: "\f2e0";
}

.mdi-folder::before {
  content: "\f2e1";
}

.mdi-folder-account::before {
  content: "\f2e2";
}

.mdi-folder-download::before {
  content: "\f2e3";
}

.mdi-folder-google-drive::before {
  content: "\f2e4";
}

.mdi-folder-image::before {
  content: "\f2e5";
}

.mdi-folder-lock::before {
  content: "\f2e6";
}

.mdi-folder-lock-open::before {
  content: "\f2e7";
}

.mdi-folder-move::before {
  content: "\f2e8";
}

.mdi-folder-multiple::before {
  content: "\f2e9";
}

.mdi-folder-multiple-image::before {
  content: "\f2ea";
}

.mdi-folder-multiple-outline::before {
  content: "\f2eb";
}

.mdi-folder-outline::before {
  content: "\f2ec";
}

.mdi-folder-plus::before {
  content: "\f2ed";
}

.mdi-folder-remove::before {
  content: "\f2ee";
}

.mdi-folder-upload::before {
  content: "\f2ef";
}

.mdi-food::before {
  content: "\f2f0";
}

.mdi-food-apple::before {
  content: "\f2f1";
}

.mdi-food-variant::before {
  content: "\f2f2";
}

.mdi-football::before {
  content: "\f2f3";
}

.mdi-football-helmet::before {
  content: "\f2f4";
}

.mdi-format-align-center::before {
  content: "\f2f5";
}

.mdi-format-align-justify::before {
  content: "\f2f6";
}

.mdi-format-align-left::before {
  content: "\f2f7";
}

.mdi-format-align-right::before {
  content: "\f2f8";
}

.mdi-format-bold::before {
  content: "\f2f9";
}

.mdi-format-clear::before {
  content: "\f2fa";
}

.mdi-format-color-fill::before {
  content: "\f2fb";
}

.mdi-format-header-1::before {
  content: "\f2fc";
}

.mdi-format-header-2::before {
  content: "\f2fd";
}

.mdi-format-header-3::before {
  content: "\f2fe";
}

.mdi-format-header-4::before {
  content: "\f2ff";
}

.mdi-format-header-5::before {
  content: "\f300";
}

.mdi-format-header-6::before {
  content: "\f301";
}

.mdi-format-header-pound::before {
  content: "\f302";
}

.mdi-format-indent-decrease::before {
  content: "\f303";
}

.mdi-format-indent-increase::before {
  content: "\f304";
}

.mdi-format-italic::before {
  content: "\f305";
}

.mdi-format-line-spacing::before {
  content: "\f306";
}

.mdi-format-list-bulleted::before {
  content: "\f307";
}

.mdi-format-list-numbers::before {
  content: "\f308";
}

.mdi-format-paint::before {
  content: "\f309";
}

.mdi-format-paragraph::before {
  content: "\f30a";
}

.mdi-format-quote::before {
  content: "\f30b";
}

.mdi-format-size::before {
  content: "\f30c";
}

.mdi-format-strikethrough::before {
  content: "\f30d";
}

.mdi-format-subscript::before {
  content: "\f30e";
}

.mdi-format-superscript::before {
  content: "\f30f";
}

.mdi-format-text::before {
  content: "\f310";
}

.mdi-format-textdirection-l-to-r::before {
  content: "\f311";
}

.mdi-format-textdirection-r-to-l::before {
  content: "\f312";
}

.mdi-format-underline::before {
  content: "\f313";
}

.mdi-forum::before {
  content: "\f314";
}

.mdi-forward::before {
  content: "\f315";
}

.mdi-foursquare::before {
  content: "\f316";
}

.mdi-fridge::before {
  content: "\f317";
}

.mdi-fullscreen::before {
  content: "\f318";
}

.mdi-fullscreen-exit::before {
  content: "\f319";
}

.mdi-function::before {
  content: "\f31a";
}

.mdi-gamepad::before {
  content: "\f31b";
}

.mdi-gamepad-variant::before {
  content: "\f31c";
}

.mdi-gas-station::before {
  content: "\f31d";
}

.mdi-gavel::before {
  content: "\f31e";
}

.mdi-gender-female::before {
  content: "\f31f";
}

.mdi-gender-male::before {
  content: "\f320";
}

.mdi-gender-male-female::before {
  content: "\f321";
}

.mdi-gender-transgender::before {
  content: "\f322";
}

.mdi-gift::before {
  content: "\f323";
}

.mdi-github-box::before {
  content: "\f324";
}

.mdi-github-circle::before {
  content: "\f325";
}

.mdi-glass-flute::before {
  content: "\f326";
}

.mdi-glass-mug::before {
  content: "\f327";
}

.mdi-glass-stange::before {
  content: "\f328";
}

.mdi-glass-tulip::before {
  content: "\f329";
}

.mdi-gmail::before {
  content: "\f32a";
}

.mdi-google::before {
  content: "\f32b";
}

.mdi-google-chrome::before {
  content: "\f32c";
}

.mdi-google-circles::before {
  content: "\f32d";
}

.mdi-google-circles-communities::before {
  content: "\f32e";
}

.mdi-google-circles-extended::before {
  content: "\f32f";
}

.mdi-google-circles-group::before {
  content: "\f330";
}

.mdi-google-controller::before {
  content: "\f331";
}

.mdi-google-controller-off::before {
  content: "\f332";
}

.mdi-google-drive::before {
  content: "\f333";
}

.mdi-google-earth::before {
  content: "\f334";
}

.mdi-google-glass::before {
  content: "\f335";
}

.mdi-google-maps::before {
  content: "\f336";
}

.mdi-google-pages::before {
  content: "\f337";
}

.mdi-google-play::before {
  content: "\f338";
}

.mdi-google-plus::before {
  content: "\f339";
}

.mdi-google-plus-box::before {
  content: "\f33a";
}

.mdi-grid::before {
  content: "\f33b";
}

.mdi-grid-off::before {
  content: "\f33c";
}

.mdi-guitar-pick::before {
  content: "\f33d";
}

.mdi-guitar-pick-outline::before {
  content: "\f33e";
}

.mdi-hand-pointing-right::before {
  content: "\f33f";
}

.mdi-hanger::before {
  content: "\f340";
}

.mdi-hangouts::before {
  content: "\f341";
}

.mdi-harddisk::before {
  content: "\f342";
}

.mdi-headphones::before {
  content: "\f343";
}

.mdi-headphones-box::before {
  content: "\f344";
}

.mdi-headphones-settings::before {
  content: "\f345";
}

.mdi-headset::before {
  content: "\f346";
}

.mdi-headset-dock::before {
  content: "\f347";
}

.mdi-headset-off::before {
  content: "\f348";
}

.mdi-heart::before {
  content: "\f349";
}

.mdi-heart-box::before {
  content: "\f34a";
}

.mdi-heart-box-outline::before {
  content: "\f34b";
}

.mdi-heart-broken::before {
  content: "\f34c";
}

.mdi-heart-outline::before {
  content: "\f34d";
}

.mdi-help::before {
  content: "\f34e";
}

.mdi-help-circle::before {
  content: "\f34f";
}

.mdi-hexagon::before {
  content: "\f350";
}

.mdi-hexagon-outline::before {
  content: "\f351";
}

.mdi-history::before {
  content: "\f352";
}

.mdi-hololens::before {
  content: "\f353";
}

.mdi-home::before {
  content: "\f354";
}

.mdi-home-modern::before {
  content: "\f355";
}

.mdi-home-variant::before {
  content: "\f356";
}

.mdi-hops::before {
  content: "\f357";
}

.mdi-hospital::before {
  content: "\f358";
}

.mdi-hospital-building::before {
  content: "\f359";
}

.mdi-hospital-marker::before {
  content: "\f35a";
}

.mdi-hotel::before {
  content: "\f35b";
}

.mdi-houzz::before {
  content: "\f35c";
}

.mdi-houzz-box::before {
  content: "\f35d";
}

.mdi-human::before {
  content: "\f35e";
}

.mdi-human-child::before {
  content: "\f35f";
}

.mdi-human-male-female::before {
  content: "\f360";
}

.mdi-image-album::before {
  content: "\f361";
}

.mdi-image-area::before {
  content: "\f362";
}

.mdi-image-area-close::before {
  content: "\f363";
}

.mdi-image-broken::before {
  content: "\f364";
}

.mdi-image-filter::before {
  content: "\f365";
}

.mdi-image-filter-black-white::before {
  content: "\f366";
}

.mdi-image-filter-center-focus::before {
  content: "\f367";
}

.mdi-image-filter-drama::before {
  content: "\f368";
}

.mdi-image-filter-frames::before {
  content: "\f369";
}

.mdi-image-filter-hdr::before {
  content: "\f36a";
}

.mdi-image-filter-none::before {
  content: "\f36b";
}

.mdi-image-filter-tilt-shift::before {
  content: "\f36c";
}

.mdi-image-filter-vintage::before {
  content: "\f36d";
}

.mdi-import::before {
  content: "\f36e";
}

.mdi-inbox::before {
  content: "\f36f";
}

.mdi-information::before {
  content: "\f370";
}

.mdi-information-outline::before {
  content: "\f371";
}

.mdi-instagram::before {
  content: "\f372";
}

.mdi-instapaper::before {
  content: "\f373";
}

.mdi-internet-explorer::before {
  content: "\f374";
}

.mdi-invert-colors::before {
  content: "\f375";
}

.mdi-jira::before {
  content: "\f376";
}

.mdi-keg::before {
  content: "\f377";
}

.mdi-key::before {
  content: "\f378";
}

.mdi-key-change::before {
  content: "\f379";
}

.mdi-key-minus::before {
  content: "\f37a";
}

.mdi-key-plus::before {
  content: "\f37b";
}

.mdi-key-remove::before {
  content: "\f37c";
}

.mdi-key-variant::before {
  content: "\f37d";
}

.mdi-keyboard::before {
  content: "\f37e";
}

.mdi-keyboard-backspace::before {
  content: "\f37f";
}

.mdi-keyboard-caps::before {
  content: "\f380";
}

.mdi-keyboard-close::before {
  content: "\f381";
}

.mdi-keyboard-off::before {
  content: "\f382";
}

.mdi-keyboard-return::before {
  content: "\f383";
}

.mdi-keyboard-tab::before {
  content: "\f384";
}

.mdi-keyboard-variant::before {
  content: "\f385";
}

.mdi-label::before {
  content: "\f386";
}

.mdi-label-outline::before {
  content: "\f387";
}

.mdi-language-csharp::before {
  content: "\f388";
}

.mdi-language-css3::before {
  content: "\f389";
}

.mdi-language-html5::before {
  content: "\f38a";
}

.mdi-language-javascript::before {
  content: "\f38b";
}

.mdi-language-python::before {
  content: "\f38c";
}

.mdi-language-python-text::before {
  content: "\f38d";
}

.mdi-laptop::before {
  content: "\f38e";
}

.mdi-laptop-chromebook::before {
  content: "\f38f";
}

.mdi-laptop-mac::before {
  content: "\f390";
}

.mdi-laptop-windows::before {
  content: "\f391";
}

.mdi-lastfm::before {
  content: "\f392";
}

.mdi-launch::before {
  content: "\f393";
}

.mdi-layers::before {
  content: "\f394";
}

.mdi-layers-off::before {
  content: "\f395";
}

.mdi-leaf::before {
  content: "\f396";
}

.mdi-library::before {
  content: "\f397";
}

.mdi-library-books::before {
  content: "\f398";
}

.mdi-library-music::before {
  content: "\f399";
}

.mdi-library-plus::before {
  content: "\f39a";
}

.mdi-lightbulb::before {
  content: "\f39b";
}

.mdi-lightbulb-outline::before {
  content: "\f39c";
}

.mdi-link::before {
  content: "\f39d";
}

.mdi-link-variant::before {
  content: "\f39e";
}

.mdi-linkedin::before {
  content: "\f39f";
}

.mdi-linkedin-box::before {
  content: "\f3a0";
}

.mdi-linux::before {
  content: "\f3a1";
}

.mdi-lock::before {
  content: "\f3a2";
}

.mdi-lock-open::before {
  content: "\f3a3";
}

.mdi-lock-open-outline::before {
  content: "\f3a4";
}

.mdi-lock-outline::before {
  content: "\f3a5";
}

.mdi-login::before {
  content: "\f3a6";
}

.mdi-logout::before {
  content: "\f3a7";
}

.mdi-looks::before {
  content: "\f3a8";
}

.mdi-loupe::before {
  content: "\f3a9";
}

.mdi-lumx::before {
  content: "\f3aa";
}

.mdi-magnify::before {
  content: "\f3ab";
}

.mdi-magnify-minus::before {
  content: "\f3ac";
}

.mdi-magnify-plus::before {
  content: "\f3ad";
}

.mdi-map::before {
  content: "\f3ae";
}

.mdi-map-marker::before {
  content: "\f3af";
}

.mdi-map-marker-circle::before {
  content: "\f3b0";
}

.mdi-map-marker-multiple::before {
  content: "\f3b1";
}

.mdi-map-marker-off::before {
  content: "\f3b2";
}

.mdi-map-marker-radius::before {
  content: "\f3b3";
}

.mdi-margin::before {
  content: "\f3b4";
}

.mdi-markdown::before {
  content: "\f3b5";
}

.mdi-marker-check::before {
  content: "\f3b6";
}

.mdi-martini::before {
  content: "\f3b7";
}

.mdi-material-ui::before {
  content: "\f3b8";
}

.mdi-math-compass::before {
  content: "\f3b9";
}

.mdi-maxcdn::before {
  content: "\f3ba";
}

.mdi-memory::before {
  content: "\f3bb";
}

.mdi-menu::before {
  content: "\f3bc";
}

.mdi-menu-down::before {
  content: "\f3bd";
}

.mdi-menu-left::before {
  content: "\f3be";
}

.mdi-menu-right::before {
  content: "\f3bf";
}

.mdi-menu-up::before {
  content: "\f3c0";
}

.mdi-message::before {
  content: "\f3c1";
}

.mdi-message-alert::before {
  content: "\f3c2";
}

.mdi-message-draw::before {
  content: "\f3c3";
}

.mdi-message-image::before {
  content: "\f3c4";
}

.mdi-message-processing::before {
  content: "\f3c5";
}

.mdi-message-reply::before {
  content: "\f3c6";
}

.mdi-message-text::before {
  content: "\f3c7";
}

.mdi-message-text-outline::before {
  content: "\f3c8";
}

.mdi-message-video::before {
  content: "\f3c9";
}

.mdi-microphone::before {
  content: "\f3ca";
}

.mdi-microphone-off::before {
  content: "\f3cb";
}

.mdi-microphone-outline::before {
  content: "\f3cc";
}

.mdi-microphone-settings::before {
  content: "\f3cd";
}

.mdi-microphone-variant::before {
  content: "\f3ce";
}

.mdi-microphone-variant-off::before {
  content: "\f3cf";
}

.mdi-minus::before {
  content: "\f3d0";
}

.mdi-minus-box::before {
  content: "\f3d1";
}

.mdi-minus-circle::before {
  content: "\f3d2";
}

.mdi-minus-circle-outline::before {
  content: "\f3d3";
}

.mdi-minus-network::before {
  content: "\f3d4";
}

.mdi-monitor::before {
  content: "\f3d5";
}

.mdi-monitor-multiple::before {
  content: "\f3d6";
}

.mdi-more::before {
  content: "\f3d7";
}

.mdi-motorbike::before {
  content: "\f3d8";
}

.mdi-mouse::before {
  content: "\f3d9";
}

.mdi-mouse-off::before {
  content: "\f3da";
}

.mdi-mouse-variant::before {
  content: "\f3db";
}

.mdi-mouse-variant-off::before {
  content: "\f3dc";
}

.mdi-movie::before {
  content: "\f3dd";
}

.mdi-multiplication::before {
  content: "\f3de";
}

.mdi-multiplication-box::before {
  content: "\f3df";
}

.mdi-music-box::before {
  content: "\f3e0";
}

.mdi-music-box-outline::before {
  content: "\f3e1";
}

.mdi-music-circle::before {
  content: "\f3e2";
}

.mdi-music-note::before {
  content: "\f3e3";
}

.mdi-music-note-eighth::before {
  content: "\f3e4";
}

.mdi-music-note-half::before {
  content: "\f3e5";
}

.mdi-music-note-off::before {
  content: "\f3e6";
}

.mdi-music-note-quarter::before {
  content: "\f3e7";
}

.mdi-music-note-sixteenth::before {
  content: "\f3e8";
}

.mdi-music-note-whole::before {
  content: "\f3e9";
}

.mdi-nature::before {
  content: "\f3ea";
}

.mdi-nature-people::before {
  content: "\f3eb";
}

.mdi-navigation::before {
  content: "\f3ec";
}

.mdi-needle::before {
  content: "\f3ed";
}

.mdi-nest-protect::before {
  content: "\f3ee";
}

.mdi-nest-thermostat::before {
  content: "\f3ef";
}

.mdi-newspaper::before {
  content: "\f3f0";
}

.mdi-nfc::before {
  content: "\f3f1";
}

.mdi-nfc-tap::before {
  content: "\f3f2";
}

.mdi-nfc-variant::before {
  content: "\f3f3";
}

.mdi-numeric::before {
  content: "\f3f4";
}

.mdi-numeric-0-box::before {
  content: "\f3f5";
}

.mdi-numeric-0-box-multiple-outline::before {
  content: "\f3f6";
}

.mdi-numeric-0-box-outline::before {
  content: "\f3f7";
}

.mdi-numeric-1-box::before {
  content: "\f3f8";
}

.mdi-numeric-1-box-multiple-outline::before {
  content: "\f3f9";
}

.mdi-numeric-1-box-outline::before {
  content: "\f3fa";
}

.mdi-numeric-2-box::before {
  content: "\f3fb";
}

.mdi-numeric-2-box-multiple-outline::before {
  content: "\f3fc";
}

.mdi-numeric-2-box-outline::before {
  content: "\f3fd";
}

.mdi-numeric-3-box::before {
  content: "\f3fe";
}

.mdi-numeric-3-box-multiple-outline::before {
  content: "\f3ff";
}

.mdi-numeric-3-box-outline::before {
  content: "\f400";
}

.mdi-numeric-4-box::before {
  content: "\f401";
}

.mdi-numeric-4-box-multiple-outline::before {
  content: "\f402";
}

.mdi-numeric-4-box-outline::before {
  content: "\f403";
}

.mdi-numeric-5-box::before {
  content: "\f404";
}

.mdi-numeric-5-box-multiple-outline::before {
  content: "\f405";
}

.mdi-numeric-5-box-outline::before {
  content: "\f406";
}

.mdi-numeric-6-box::before {
  content: "\f407";
}

.mdi-numeric-6-box-multiple-outline::before {
  content: "\f408";
}

.mdi-numeric-6-box-outline::before {
  content: "\f409";
}

.mdi-numeric-7-box::before {
  content: "\f40a";
}

.mdi-numeric-7-box-multiple-outline::before {
  content: "\f40b";
}

.mdi-numeric-7-box-outline::before {
  content: "\f40c";
}

.mdi-numeric-8-box::before {
  content: "\f40d";
}

.mdi-numeric-8-box-multiple-outline::before {
  content: "\f40e";
}

.mdi-numeric-8-box-outline::before {
  content: "\f40f";
}

.mdi-numeric-9-box::before {
  content: "\f410";
}

.mdi-numeric-9-box-multiple-outline::before {
  content: "\f411";
}

.mdi-numeric-9-box-outline::before {
  content: "\f412";
}

.mdi-numeric-9-plus-box::before {
  content: "\f413";
}

.mdi-numeric-9-plus-box-multiple-outline::before {
  content: "\f414";
}

.mdi-numeric-9-plus-box-outline::before {
  content: "\f415";
}

.mdi-nutriton::before {
  content: "\f416";
}

.mdi-office::before {
  content: "\f417";
}

.mdi-oil::before {
  content: "\f418";
}

.mdi-omega::before {
  content: "\f419";
}

.mdi-onedrive::before {
  content: "\f41a";
}

.mdi-open-in-app::before {
  content: "\f41b";
}

.mdi-open-in-new::before {
  content: "\f41c";
}

.mdi-ornament::before {
  content: "\f41d";
}

.mdi-ornament-variant::before {
  content: "\f41e";
}

.mdi-outbox::before {
  content: "\f41f";
}

.mdi-package::before {
  content: "\f420";
}

.mdi-package-down::before {
  content: "\f421";
}

.mdi-package-up::before {
  content: "\f422";
}

.mdi-package-variant::before {
  content: "\f423";
}

.mdi-package-variant-closed::before {
  content: "\f424";
}

.mdi-palette::before {
  content: "\f425";
}

.mdi-palette-advanced::before {
  content: "\f426";
}

.mdi-panda::before {
  content: "\f427";
}

.mdi-pandora::before {
  content: "\f428";
}

.mdi-panorama::before {
  content: "\f429";
}

.mdi-panorama-fisheye::before {
  content: "\f42a";
}

.mdi-panorama-horizontal::before {
  content: "\f42b";
}

.mdi-panorama-vertical::before {
  content: "\f42c";
}

.mdi-panorama-wide-angle::before {
  content: "\f42d";
}

.mdi-paper-cut-vertical::before {
  content: "\f42e";
}

.mdi-paperclip::before {
  content: "\f42f";
}

.mdi-parking::before {
  content: "\f430";
}

.mdi-pause::before {
  content: "\f431";
}

.mdi-pause-circle::before {
  content: "\f432";
}

.mdi-pause-circle-outline::before {
  content: "\f433";
}

.mdi-pause-octagon::before {
  content: "\f434";
}

.mdi-pause-octagon-outline::before {
  content: "\f435";
}

.mdi-pen::before {
  content: "\f436";
}

.mdi-pencil::before {
  content: "\f437";
}

.mdi-pencil-box::before {
  content: "\f438";
}

.mdi-pencil-box-outline::before {
  content: "\f439";
}

.mdi-pharmacy::before {
  content: "\f43a";
}

.mdi-phone::before {
  content: "\f43b";
}

.mdi-phone-bluetooth::before {
  content: "\f43c";
}

.mdi-phone-forward::before {
  content: "\f43d";
}

.mdi-phone-hangup::before {
  content: "\f43e";
}

.mdi-phone-in-talk::before {
  content: "\f43f";
}

.mdi-phone-locked::before {
  content: "\f440";
}

.mdi-phone-missed::before {
  content: "\f441";
}

.mdi-phone-paused::before {
  content: "\f442";
}

.mdi-phone-settings::before {
  content: "\f443";
}

.mdi-pig::before {
  content: "\f444";
}

.mdi-pill::before {
  content: "\f445";
}

.mdi-pin::before {
  content: "\f446";
}

.mdi-pin-off::before {
  content: "\f447";
}

.mdi-pine-tree::before {
  content: "\f448";
}

.mdi-pine-tree-box::before {
  content: "\f449";
}

.mdi-pinterest::before {
  content: "\f44a";
}

.mdi-pinterest-box::before {
  content: "\f44b";
}

.mdi-pizza::before {
  content: "\f44c";
}

.mdi-play::before {
  content: "\f44d";
}

.mdi-play-box-outline::before {
  content: "\f44e";
}

.mdi-play-circle::before {
  content: "\f44f";
}

.mdi-play-circle-outline::before {
  content: "\f450";
}

.mdi-playlist-minus::before {
  content: "\f451";
}

.mdi-playlist-plus::before {
  content: "\f452";
}

.mdi-playstation::before {
  content: "\f453";
}

.mdi-plus::before {
  content: "\f454";
}

.mdi-plus-box::before {
  content: "\f455";
}

.mdi-plus-circle::before {
  content: "\f456";
}

.mdi-plus-circle-outline::before {
  content: "\f457";
}

.mdi-plus-network::before {
  content: "\f458";
}

.mdi-plus-one::before {
  content: "\f459";
}

.mdi-pocket::before {
  content: "\f45a";
}

.mdi-poll::before {
  content: "\f45b";
}

.mdi-poll-box::before {
  content: "\f45c";
}

.mdi-polymer::before {
  content: "\f45d";
}

.mdi-popcorn::before {
  content: "\f45e";
}

.mdi-pound::before {
  content: "\f45f";
}

.mdi-pound-box::before {
  content: "\f460";
}

.mdi-power::before {
  content: "\f461";
}

.mdi-power-settings::before {
  content: "\f462";
}

.mdi-presentation::before {
  content: "\f463";
}

.mdi-presentation-play::before {
  content: "\f464";
}

.mdi-printer::before {
  content: "\f465";
}

.mdi-printer-3d::before {
  content: "\f466";
}

.mdi-pulse::before {
  content: "\f467";
}

.mdi-puzzle::before {
  content: "\f468";
}

.mdi-qrcode::before {
  content: "\f469";
}

.mdi-quadcopter::before {
  content: "\f46a";
}

.mdi-quality-high::before {
  content: "\f46b";
}

.mdi-quicktime::before {
  content: "\f46c";
}

.mdi-radiator::before {
  content: "\f46d";
}

.mdi-radio::before {
  content: "\f46e";
}

.mdi-radio-tower::before {
  content: "\f46f";
}

.mdi-radioactive::before {
  content: "\f470";
}

.mdi-radiobox-blank::before {
  content: "\f471";
}

.mdi-radiobox-marked::before {
  content: "\f472";
}

.mdi-raspberrypi::before {
  content: "\f473";
}

.mdi-rdio::before {
  content: "\f474";
}

.mdi-read::before {
  content: "\f475";
}

.mdi-readability::before {
  content: "\f476";
}

.mdi-receipt::before {
  content: "\f477";
}

.mdi-recycle::before {
  content: "\f478";
}

.mdi-redo::before {
  content: "\f479";
}

.mdi-redo-variant::before {
  content: "\f47a";
}

.mdi-refresh::before {
  content: "\f47b";
}

.mdi-relative-scale::before {
  content: "\f47c";
}

.mdi-reload::before {
  content: "\f47d";
}

.mdi-remote::before {
  content: "\f47e";
}

.mdi-rename-box::before {
  content: "\f47f";
}

.mdi-repeat::before {
  content: "\f480";
}

.mdi-repeat-off::before {
  content: "\f481";
}

.mdi-repeat-once::before {
  content: "\f482";
}

.mdi-replay::before {
  content: "\f483";
}

.mdi-reply::before {
  content: "\f484";
}

.mdi-reply-all::before {
  content: "\f485";
}

.mdi-reproduction::before {
  content: "\f486";
}

.mdi-resize-bottom-right::before {
  content: "\f487";
}

.mdi-responsive::before {
  content: "\f488";
}

.mdi-rewind::before {
  content: "\f489";
}

.mdi-ribbon::before {
  content: "\f48a";
}

.mdi-rocket::before {
  content: "\f48b";
}

.mdi-rotate-3d::before {
  content: "\f48c";
}

.mdi-rotate-left::before {
  content: "\f48d";
}

.mdi-rotate-left-variant::before {
  content: "\f48e";
}

.mdi-rotate-right::before {
  content: "\f48f";
}

.mdi-rotate-right-variant::before {
  content: "\f490";
}

.mdi-routes::before {
  content: "\f491";
}

.mdi-rss::before {
  content: "\f492";
}

.mdi-rss-box::before {
  content: "\f493";
}

.mdi-ruler::before {
  content: "\f494";
}

.mdi-run::before {
  content: "\f495";
}

.mdi-satellite::before {
  content: "\f496";
}

.mdi-satellite-variant::before {
  content: "\f497";
}

.mdi-scale::before {
  content: "\f498";
}

.mdi-scale-bathroom::before {
  content: "\f499";
}

.mdi-school::before {
  content: "\f49a";
}

.mdi-screen-rotation::before {
  content: "\f49b";
}

.mdi-screen-rotation-lock::before {
  content: "\f49c";
}

.mdi-script::before {
  content: "\f49d";
}

.mdi-sd::before {
  content: "\f49e";
}

.mdi-security::before {
  content: "\f49f";
}

.mdi-security-network::before {
  content: "\f4a0";
}

.mdi-select::before {
  content: "\f4a1";
}

.mdi-select-all::before {
  content: "\f4a2";
}

.mdi-select-inverse::before {
  content: "\f4a3";
}

.mdi-select-off::before {
  content: "\f4a4";
}

.mdi-send::before {
  content: "\f4a5";
}

.mdi-server::before {
  content: "\f4a6";
}

.mdi-server-minus::before {
  content: "\f4a7";
}

.mdi-server-network::before {
  content: "\f4a8";
}

.mdi-server-network-off::before {
  content: "\f4a9";
}

.mdi-server-off::before {
  content: "\f4aa";
}

.mdi-server-plus::before {
  content: "\f4ab";
}

.mdi-server-remove::before {
  content: "\f4ac";
}

.mdi-server-security::before {
  content: "\f4ad";
}

.mdi-settings::before {
  content: "\f4ae";
}

.mdi-settings-box::before {
  content: "\f4af";
}

.mdi-shape-plus::before {
  content: "\f4b0";
}

.mdi-share::before {
  content: "\f4b1";
}

.mdi-share-variant::before {
  content: "\f4b2";
}

.mdi-shield::before {
  content: "\f4b3";
}

.mdi-shield-outline::before {
  content: "\f4b4";
}

.mdi-shopping::before {
  content: "\f4b5";
}

.mdi-shopping-music::before {
  content: "\f4b6";
}

.mdi-shuffle::before {
  content: "\f4b7";
}

.mdi-sigma::before {
  content: "\f4b8";
}

.mdi-sign-caution::before {
  content: "\f4b9";
}

.mdi-silverware::before {
  content: "\f4ba";
}

.mdi-silverware-fork::before {
  content: "\f4bb";
}

.mdi-silverware-spoon::before {
  content: "\f4bc";
}

.mdi-silverware-variant::before {
  content: "\f4bd";
}

.mdi-sim-alert::before {
  content: "\f4be";
}

.mdi-skip-next::before {
  content: "\f4bf";
}

.mdi-skip-previous::before {
  content: "\f4c0";
}

.mdi-snapchat::before {
  content: "\f4c1";
}

.mdi-snowman::before {
  content: "\f4c2";
}

.mdi-sort::before {
  content: "\f4c3";
}

.mdi-sort-alphabetical::before {
  content: "\f4c4";
}

.mdi-sort-ascending::before {
  content: "\f4c5";
}

.mdi-sort-descending::before {
  content: "\f4c6";
}

.mdi-sort-numeric::before {
  content: "\f4c7";
}

.mdi-sort-variant::before {
  content: "\f4c8";
}

.mdi-soundcloud::before {
  content: "\f4c9";
}

.mdi-source-fork::before {
  content: "\f4ca";
}

.mdi-source-pull::before {
  content: "\f4cb";
}

.mdi-speaker::before {
  content: "\f4cc";
}

.mdi-speaker-off::before {
  content: "\f4cd";
}

.mdi-speedometer::before {
  content: "\f4ce";
}

.mdi-spellcheck::before {
  content: "\f4cf";
}

.mdi-spotify::before {
  content: "\f4d0";
}

.mdi-spotlight::before {
  content: "\f4d1";
}

.mdi-spotlight-beam::before {
  content: "\f4d2";
}

.mdi-stackoverflow::before {
  content: "\f4d3";
}

.mdi-star::before {
  content: "\f4d4";
}

.mdi-star-circle::before {
  content: "\f4d5";
}

.mdi-star-half::before {
  content: "\f4d6";
}

.mdi-star-outline::before {
  content: "\f4d7";
}

.mdi-stocking::before {
  content: "\f4d8";
}

.mdi-stop::before {
  content: "\f4d9";
}

.mdi-store::before {
  content: "\f4da";
}

.mdi-store-24-hour::before {
  content: "\f4db";
}

.mdi-stove::before {
  content: "\f4dc";
}

.mdi-subway::before {
  content: "\f4dd";
}

.mdi-swap-horizontal::before {
  content: "\f4de";
}

.mdi-swap-vertical::before {
  content: "\f4df";
}

.mdi-swim::before {
  content: "\f4e0";
}

.mdi-sword::before {
  content: "\f4e1";
}

.mdi-sync::before {
  content: "\f4e2";
}

.mdi-sync-alert::before {
  content: "\f4e3";
}

.mdi-sync-off::before {
  content: "\f4e4";
}

.mdi-tab::before {
  content: "\f4e5";
}

.mdi-tab-unselected::before {
  content: "\f4e6";
}

.mdi-table::before {
  content: "\f4e7";
}

.mdi-table-column-plus-after::before {
  content: "\f4e8";
}

.mdi-table-column-plus-before::before {
  content: "\f4e9";
}

.mdi-table-column-remove::before {
  content: "\f4ea";
}

.mdi-table-column-width::before {
  content: "\f4eb";
}

.mdi-table-edit::before {
  content: "\f4ec";
}

.mdi-table-large::before {
  content: "\f4ed";
}

.mdi-table-row-height::before {
  content: "\f4ee";
}

.mdi-table-row-plus-after::before {
  content: "\f4ef";
}

.mdi-table-row-plus-before::before {
  content: "\f4f0";
}

.mdi-table-row-remove::before {
  content: "\f4f1";
}

.mdi-tablet::before {
  content: "\f4f2";
}

.mdi-tablet-android::before {
  content: "\f4f3";
}

.mdi-tablet-ipad::before {
  content: "\f4f4";
}

.mdi-tag::before {
  content: "\f4f5";
}

.mdi-tag-faces::before {
  content: "\f4f6";
}

.mdi-tag-multiple::before {
  content: "\f4f7";
}

.mdi-tag-outline::before {
  content: "\f4f8";
}

.mdi-tag-text-outline::before {
  content: "\f4f9";
}

.mdi-taxi::before {
  content: "\f4fa";
}

.mdi-television::before {
  content: "\f4fb";
}

.mdi-television-guide::before {
  content: "\f4fc";
}

.mdi-temperature-celsius::before {
  content: "\f4fd";
}

.mdi-temperature-fahrenheit::before {
  content: "\f4fe";
}

.mdi-temperature-kelvin::before {
  content: "\f4ff";
}

.mdi-tent::before {
  content: "\f500";
}

.mdi-terrain::before {
  content: "\f501";
}

.mdi-text-to-speech::before {
  content: "\f502";
}

.mdi-text-to-speech-off::before {
  content: "\f503";
}

.mdi-texture::before {
  content: "\f504";
}

.mdi-theater::before {
  content: "\f505";
}

.mdi-theme-light-dark::before {
  content: "\f506";
}

.mdi-thermometer::before {
  content: "\f507";
}

.mdi-thermometer-lines::before {
  content: "\f508";
}

.mdi-thumb-down::before {
  content: "\f509";
}

.mdi-thumb-down-outline::before {
  content: "\f50a";
}

.mdi-thumb-up::before {
  content: "\f50b";
}

.mdi-thumb-up-outline::before {
  content: "\f50c";
}

.mdi-thumbs-up-down::before {
  content: "\f50d";
}

.mdi-ticket::before {
  content: "\f50e";
}

.mdi-ticket-account::before {
  content: "\f50f";
}

.mdi-tie::before {
  content: "\f510";
}

.mdi-timelapse::before {
  content: "\f511";
}

.mdi-timer::before {
  content: "\f512";
}

.mdi-timer-10::before {
  content: "\f513";
}

.mdi-timer-3::before {
  content: "\f514";
}

.mdi-timer-off::before {
  content: "\f515";
}

.mdi-timer-sand::before {
  content: "\f516";
}

.mdi-timetable::before {
  content: "\f517";
}

.mdi-toggle-switch::before {
  content: "\f518";
}

.mdi-toggle-switch-off::before {
  content: "\f519";
}

.mdi-tooltip::before {
  content: "\f51a";
}

.mdi-tooltip-edit::before {
  content: "\f51b";
}

.mdi-tooltip-image::before {
  content: "\f51c";
}

.mdi-tooltip-outline::before {
  content: "\f51d";
}

.mdi-tooltip-outline-plus::before {
  content: "\f51e";
}

.mdi-tooltip-text::before {
  content: "\f51f";
}

.mdi-tor::before {
  content: "\f520";
}

.mdi-traffic-light::before {
  content: "\f521";
}

.mdi-train::before {
  content: "\f522";
}

.mdi-tram::before {
  content: "\f523";
}

.mdi-transcribe::before {
  content: "\f524";
}

.mdi-transcribe-close::before {
  content: "\f525";
}

.mdi-transfer::before {
  content: "\f526";
}

.mdi-tree::before {
  content: "\f527";
}

.mdi-trello::before {
  content: "\f528";
}

.mdi-trending-down::before {
  content: "\f529";
}

.mdi-trending-neutral::before {
  content: "\f52a";
}

.mdi-trending-up::before {
  content: "\f52b";
}

.mdi-trophy::before {
  content: "\f52c";
}

.mdi-trophy-award::before {
  content: "\f52d";
}

.mdi-trophy-variant::before {
  content: "\f52e";
}

.mdi-truck::before {
  content: "\f52f";
}

.mdi-tshirt-crew::before {
  content: "\f530";
}

.mdi-tshirt-v::before {
  content: "\f531";
}

.mdi-tumblr::before {
  content: "\f532";
}

.mdi-tumblr-reblog::before {
  content: "\f533";
}

.mdi-twitch::before {
  content: "\f534";
}

.mdi-twitter::before {
  content: "\f535";
}

.mdi-twitter-box::before {
  content: "\f536";
}

.mdi-twitter-retweet::before {
  content: "\f537";
}

.mdi-ubuntu::before {
  content: "\f538";
}

.mdi-undo::before {
  content: "\f539";
}

.mdi-undo-variant::before {
  content: "\f53a";
}

.mdi-unfold-less::before {
  content: "\f53b";
}

.mdi-unfold-more::before {
  content: "\f53c";
}

.mdi-untappd::before {
  content: "\f53d";
}

.mdi-upload::before {
  content: "\f53e";
}

.mdi-usb::before {
  content: "\f53f";
}

.mdi-vector-curve::before {
  content: "\f540";
}

.mdi-vector-point::before {
  content: "\f541";
}

.mdi-vector-square::before {
  content: "\f542";
}

.mdi-verified::before {
  content: "\f543";
}

.mdi-vibrate::before {
  content: "\f544";
}

.mdi-video::before {
  content: "\f545";
}

.mdi-video-off::before {
  content: "\f546";
}

.mdi-video-switch::before {
  content: "\f547";
}

.mdi-view-agenda::before {
  content: "\f548";
}

.mdi-view-array::before {
  content: "\f549";
}

.mdi-view-carousel::before {
  content: "\f54a";
}

.mdi-view-column::before {
  content: "\f54b";
}

.mdi-view-dashboard::before {
  content: "\f54c";
}

.mdi-view-day::before {
  content: "\f54d";
}

.mdi-view-headline::before {
  content: "\f54e";
}

.mdi-view-list::before {
  content: "\f54f";
}

.mdi-view-module::before {
  content: "\f550";
}

.mdi-view-quilt::before {
  content: "\f551";
}

.mdi-view-stream::before {
  content: "\f552";
}

.mdi-view-week::before {
  content: "\f553";
}

.mdi-vimeo::before {
  content: "\f554";
}

.mdi-vk::before {
  content: "\f555";
}

.mdi-voicemail::before {
  content: "\f556";
}

.mdi-volume-high::before {
  content: "\f557";
}

.mdi-volume-low::before {
  content: "\f558";
}

.mdi-volume-medium::before {
  content: "\f559";
}

.mdi-volume-off::before {
  content: "\f55a";
}

.mdi-walk::before {
  content: "\f55b";
}

.mdi-wallet::before {
  content: "\f55c";
}

.mdi-wallet-giftcard::before {
  content: "\f55d";
}

.mdi-wallet-membership::before {
  content: "\f55e";
}

.mdi-wallet-travel::before {
  content: "\f55f";
}

.mdi-watch::before {
  content: "\f560";
}

.mdi-watch-export::before {
  content: "\f561";
}

.mdi-watch-import::before {
  content: "\f562";
}

.mdi-water::before {
  content: "\f563";
}

.mdi-water-off::before {
  content: "\f564";
}

.mdi-water-pump::before {
  content: "\f565";
}

.mdi-weather-cloudy::before {
  content: "\f566";
}

.mdi-weather-hail::before {
  content: "\f567";
}

.mdi-weather-lightning::before {
  content: "\f568";
}

.mdi-weather-night::before {
  content: "\f569";
}

.mdi-weather-partlycloudy::before {
  content: "\f56a";
}

.mdi-weather-pouring::before {
  content: "\f56b";
}

.mdi-weather-rainy::before {
  content: "\f56c";
}

.mdi-weather-snowy::before {
  content: "\f56d";
}

.mdi-weather-sunny::before {
  content: "\f56e";
}

.mdi-weather-sunset::before {
  content: "\f56f";
}

.mdi-weather-sunset-down::before {
  content: "\f570";
}

.mdi-weather-sunset-up::before {
  content: "\f571";
}

.mdi-weather-windy::before {
  content: "\f572";
}

.mdi-weather-windy-variant::before {
  content: "\f573";
}

.mdi-web::before {
  content: "\f574";
}

.mdi-webcam::before {
  content: "\f575";
}

.mdi-weight::before {
  content: "\f576";
}

.mdi-weight-kilogram::before {
  content: "\f577";
}

.mdi-whatsapp::before {
  content: "\f578";
}

.mdi-wheelchair-accessibility::before {
  content: "\f579";
}

.mdi-white-balance-auto::before {
  content: "\f57a";
}

.mdi-white-balance-incandescent::before {
  content: "\f57b";
}

.mdi-white-balance-irradescent::before {
  content: "\f57c";
}

.mdi-white-balance-sunny::before {
  content: "\f57d";
}

.mdi-wifi::before {
  content: "\f57e";
}

.mdi-wii::before {
  content: "\f57f";
}

.mdi-wikipedia::before {
  content: "\f580";
}

.mdi-window-close::before {
  content: "\f581";
}

.mdi-window-closed::before {
  content: "\f582";
}

.mdi-window-maximize::before {
  content: "\f583";
}

.mdi-window-minimize::before {
  content: "\f584";
}

.mdi-window-open::before {
  content: "\f585";
}

.mdi-window-restore::before {
  content: "\f586";
}

.mdi-windows::before {
  content: "\f587";
}

.mdi-wordpress::before {
  content: "\f588";
}

.mdi-worker::before {
  content: "\f589";
}

.mdi-wunderlist::before {
  content: "\f58a";
}

.mdi-xbox::before {
  content: "\f58b";
}

.mdi-xbox-controller::before {
  content: "\f58c";
}

.mdi-xbox-controller-off::before {
  content: "\f58d";
}

.mdi-xda::before {
  content: "\f58e";
}

.mdi-xml::before {
  content: "\f58f";
}

.mdi-yeast::before {
  content: "\f590";
}

.mdi-youtube-play::before {
  content: "\f591";
}

.mdi-zip-box::before {
  content: "\f592";
}

/*# sourceMappingURL=materialdesignicons.css.map */

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVc.ttf) format('truetype');
}




/*-----------------------------------------

Table of Contents:

  Basic Page Layout
  Generic CSS Classes
  General Sections Style
  Typography
  Section Angles (Up and Down Directions)
     - Angles up outside section
     - Angles down outside section
     - Angles up inside section
     - Angles down inside section
  Header Logo Settings
  Header Top Bar Menu General Settings
  Header Top Bar Mobile Menu (Small Screens)
  Header Menu Large Screens            
  Header Main Text - Introduction
  Header Image Carousel Slider
  Parallax Style Header (Topbar Menu and Logo)
  Shop Products
  Full Icon Set (Material Icons & Font Awesome)
  Queries - What Why How Section
  Footer
  Pricing Plans
  Elegant Design
  Our Team
  Buttons
  Blogs
  Choose Features (Why Choose Us Section)
  Capabilities
  Art of work
  Services
  InViewPort
  Gallery (MixitUp and Isotope)
  Contact
  Made for you
  Twitter
  Clients
  Pagination
  Bootstrap Well
  Animation Effects
  Sidebar widgets
  Settings Panel
  Typography
  Grid Columns
  Bootstrap 3 Media Queries             
      - Mobile First Method
      - Non-Mobile First Method


------------------------------------------*/


/*----------------------------------------
  Basic Page Layout
------------------------------------------*/

:root{
    --primary-color: #ffc107;
    /*--primary-color: #0cb8b6;*/
    /*--primary-color: #2098df;*/
    /*--primary-color: #0F89D1;*/
    /*--primary-color: #63c5ff;*/
}

html {
    font-size: 100%;
    height: 100%;
    background-color: #FFFFFF;
    overflow-x: hidden;
    max-width: 100%;
}


body {
    background-color: #FFFFFF;
    color: #757575;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 0px !important;
    margin: 0px !important;
    line-height: 28px;
    font-style: normal;
    font-weight: normal;
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100%;
}



.agotado {
    color: #FFFFFF;
    position: absolute;
    top: 17px;
    background-color: #e84343;
    padding: 3px 15px 3px 15px;
    width: 130px;
    text-align: center;
    z-index: 99;
}


/*----------------------------------------
  Generic CSS Classes
------------------------------------------*/

.bg-lightgray {
    background: #f5f5f5;
}

.bg-white {
    background: #ffffff;
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-black {
    background-color: #212121;
}

.left-align {
    text-align: left;
}

.text-white {
    color: #ffffff;
}

.text-primary {
    color: var(--primary-color);
}

.btn.filter,
.btn.filter.active,
.btn.btn-primary.text-on-primary,
.text-on-primary {
    color: #212121;
}

.btn,
a,
.transition,
.animated {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transition-timing-function: cubic-bezier(.4, 0, .5, 1);
    -moz-transition-timing-function: cubic-bezier(.4, 0, .5, 1);
    transition-timing-function: cubic-bezier(.4, 0, .5, 1);
}

.animated.delay1 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}

.animated.delay2 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.animated.delay3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

.animated.delay4 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.animated.delay5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.animated.delay6 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.animated.delay7 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}

.animated.delay8 {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.animated.delay9 {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-75 {
    margin-bottom: 75px;
}

.margin-bottom-100 {
    margin-bottom: 100px;
}


/*----------------------------------------
  General Sections Style
------------------------------------------*/

section {
    padding: 0px 0;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

section .heading {
    text-align: center;
    text-transform: uppercase;
}

section.bg-image .heading,
section.white-text .heading{
    color: #ffffff;
}

section .heading.left-align {
    text-align: left;
}

section .headul {
    margin: 50px auto 42px auto;
}

section.bg-image .headul:before,
section.bg-image .headul:after{
    background-color: var(--primary-color);
}

section.white-text .headul:before,
section.white-text .headul:after{
    background-color: #ffffff;
}

section .headul:before {
    content: " ";
    width: 220px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto;
    display: block;
}

section .headul:after {
    margin: 0 auto;
    content: " ";
    width: 60px;
    height: 6px;
    background-color: var(--primary-color);
    display: block;
}

/* section.bg-primary .headul:before,
section.bg-primary .headul:after{
    background-color: #212121;
} */

section .headul.white:before,
section .headul.white:after {
    background-color: #ffffff;
}

section .headul.left-align:before,
section .headul.left-align:after {
    margin: 0 0 0 0;
}

section .headul:after {
    margin: 0 auto;
    content: " ";
    width: 60px;
    height: 6px;
    background-color: var(--primary-color);
    display: block;
}

section .subheading {
    text-align: center;
    font-size: 18px;
    line-height: 35px;
    padding: 0px 50px 100px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

section.section-heading .subheading {
    padding: 0px 50px 0px 50px;
}

section.bg-image .subheading{
    color: #ffffff;
}

section.bg-primary .subheading {
    font-size: 24px;
    line-height: 40px;
    font-weight: 400;
    color: #ffffff;
}

section .subheading.left-align {
    text-align: left;
    padding-left: 0px;
}

section.max-width-100 {
    width: 100%;
    max-width: 100%;
}

section .bg-overlay {
    background-color: rgba(33, 33, 33, .8);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

section .bg-overlay.opacity-85 {
    background-color: rgba(33, 33, 33, .85);
}

section.parallax .container {
    position: relative;
    z-index: 20;
}

section.full-width .container {
    max-width: 100%;
    width: 100%;
}

section .container {
    position: relative;
    z-index: 20;
    padding: 125px 15px;
    /*       border-right: 1px solid #ff00ff;
       border-left: 1px solid #ff00ff;*/
}


section.bg-image {
    position: relative;
    overflow: hidden;
    background-image: url("../themes/jara/assets/img/banner-3.jpg");
    background-repeat: no-repeat;
    /*    background-attachment: fixed;*/
    background-size: cover;
    /*    background-position: center center;*/
}


section.parallax .heading {
    color: #ffffff;
}

section.parallax .subheading {
    color: rgba(255, 255, 255, 0.8);
}

section.padding-top-0 .container {
    padding-top: 0px;
}

section.padding-top-25 .container {
    padding-top: 25px;
}

section.padding-top-50 .container {
    padding-top: 50px;
}

section.padding-top-75 .container {
    padding-top: 75px;
}

section.padding-top-100 .container {
    padding-top: 100px;
}

section.padding-top-125 .container {
    padding-top: 125px;
}

section.padding-top-150 .container {
    padding-top: 150px;
}

section.padding-top-175 .container {
    padding-top: 175px;
}

section.padding-bottom-0 .container {
    padding-bottom: 0px;
}

section.padding-bottom-25 .container {
    padding-bottom: 25px;
}

section.padding-bottom-50 .container {
    padding-bottom: 50px;
}

section.padding-bottom-75 .container {
    padding-bottom: 75px;
}

section.padding-bottom-100 .container {
    padding-bottom: 100px;
}

section.padding-bottom-125 .container {
    padding-bottom: 125px;
}

section.padding-bottom-150 .container {
    padding-bottom: 150px;
}

section.padding-bottom-175 .container {
    padding-bottom: 175px;
}

section.padding-bottom-200 .container {
    padding-bottom: 200px;
}

@media screen and (max-width: 767px) {
    section .subheading {
        padding: 0px 15px 100px 15px;
    }
}


/*---------------------------------
    Typography
-----------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0 15px 0;
    font-weight: 700;
    color: #212121;
}

.h1,
h1 {
    font-size: 60px;
    line-height: 95px;
}

.h2,
h2 {
    font-size: 48px;
}

.h3,
h3 {
    font-size: 30px;
}

.h4,
h4 {
    font-size: 24px;
}

.h5,
h5 {
    font-size: 18px;
}

.h6,
h6 {
    font-size: 14px;
}

a {
    color: var(--primary-color);
}

a:hover,
a:focus {
    color: #212121;
}

p {
    margin-bottom: 15px;
}

section.bg-primary p {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 300;
}

@media (max-width: 1200px) {

    .h1,
    h1 {
        font-size: 55px;
        line-height: 85px;
    }

    .h2,
    h2 {
        font-size: 40px;
        line-height: 55px;
    }

    .h3,
    h3 {
        font-size: 24px;
        line-height: 40px;
    }

    .h4,
    h4 {
        font-size: 21px;
        line-height: 35px;
    }

    .h5,
    h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .h6,
    h6 {
        font-size: 14px;
        line-height: 24px;
    } 
    section .headul{
        margin: 30px auto 45px auto;
    }

    section .headul:before{
        width: 180px;
    }

    section .headul:after{
        width: 50px;
    }

}

@media (max-width: 992px) {

    .h1,
    h1 {
        font-size: 50px;
        line-height: 75px;
    }

    .h2,
    h2 {
        font-size: 32px;
        line-height: 50px;
    }

    .h3,
    h3 {
        font-size: 24px;
        line-height: 40px;
    }

    .h4,
    h4 {
        font-size: 21px;
        line-height: 35px;
    }

    .h5,
    h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .h6,
    h6 {
        font-size: 14px;
        line-height: 24px;
    } 
    section .headul{
        margin: 30px auto 45px auto;
    }

    section .headul:before{
        width: 180px;
    }

    section .headul:after{
        width: 50px;
    }


}

@media only screen and (max-width: 768px) {
    .h1,
    h1 {
        font-size: 40px;
        line-height: 65px;
    }

    .h2,
    h2 {
        font-size: 32px;
        line-height: 50px;
    }

    .h3,
    h3 {
        font-size: 24px;
        line-height: 40px;
    }

    .h4,
    h4 {
        font-size: 21px;
        line-height: 35px;
    }

    .h5,
    h5 {
        font-size: 18px;
        line-height: 28px;
    }

    .h6,
    h6 {
        font-size: 14px;
        line-height: 24px;
    }    

    section .container{
        padding: 100px 15px;
    }


    section .headul{
        margin: 30px auto 25px auto;
    }

    section .headul:before{
        width: 140px;
    }

    section .headul:after{
        width: 40px;
    }

    section .subheading{
        font-size: 16px;
        line-height: 28px;
    }

    section.bg-primary p{
        font-size: 16px;
        line-height: 28px;
    }

}



/*---------------------------------
    Section Angles (Up and Down Directions)
-----------------------------------*/


/*-------------- angles up outside section ---------------*/

.angled_up_outside {
    overflow: hidden;
    min-height: 200px;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.angled_up_outside .slope.upleft {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    min-height: 100px;
    position: absolute;
    top: -85px;
    left: 0px;
    width: 150%;
    margin-left: -50%;
}

.angled_up_outside .slope.upright {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
    min-height: 100px;
    top: -49px;
    position: absolute;
    right: 0px;
    width: 150%;
    margin-right: -50%;
}

.angled_up_outside.primary {
    background-color: var(--primary-color);
}

.angled_up_outside.white .slope.upright,
.angled_up_outside.white .slope.upleft {
    background-color: #ffffff;
}


/*-------------- angles down outside section ---------------*/

.angled_down_outside {
    overflow: hidden;
    min-height: 200px;
    margin-top: -75px;
    position: relative;
    background-color: var(--primary-color);
    z-index: 10;
    width: 100%;
}

.angled_down_outside .slope.downleft {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
    min-height: 100px;
    position: absolute;
    bottom: -49px;
    left: 0px;
    width: 150%;
    margin-left: -50%;
}

.angled_down_outside .slope.downright {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    min-height: 100px;
    bottom: -85px;
    position: absolute;
    right: 0px;
    width: 150%;
    margin-right: -50%;
}

.angled_down_outside.primary,
.angled_down_outside.primary.lightgray {
    background-color: var(--primary-color);
}


.angled_down_outside.lightgray,
.angled_down_outside.lightgray.white {
    background-color: #f5f5f5;
}

.angled_down_outside.lightgray {
    background-color: #f5f5f5;
}

.angled_down_outside.white .slope.downright,
.angled_down_outside.white .slope.downleft {
    background-color: #ffffff;
}

.angled_down_outside.lightgray.white .slope.downright,
.angled_down_outside.lightgray.white .slope.downleft {
    background-color: #ffffff;
}

.angled_down_outside.lightgray .slope.downright,
.angled_down_outside.lightgray .slope.downleft {
    background-color: #f5f5f5;
}

.angled_down_outside.black .slope.downright,
.angled_down_outside.black .slope.downleft {
    background-color: #212121;
}


/*-------------- angles up inside section ---------------*/

.angled_up_inside {
    height: 200px;
    margin-top: -110px;
    position: relative;
    margin-bottom: 0px;
    z-index: 10;
}

.angled_up_inside .slope.upleft {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    min-height: 100px;
    position: absolute;
    top: 126px;
    left: 0px;
    width: 150%;
    margin-left: -50%;
}

.angled_up_inside .slope.upright {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
    min-height: 100px;
    position: absolute;
    top: 162px;
    right: 0px;
    width: 150%;
    margin-right: -50%;
}

.angled_up_inside.primary,
.angled_up_inside.primary .slope.upright,
.angled_up_inside.primary .slope.upleft {
    background-color: var(--primary-color);
}

.angled_up_inside.white,
.angled_up_inside.white .slope.upright,
.angled_up_inside.white .slope.upleft {
    background-color: #ffffff;
}

.angled_up_inside.black,
.angled_up_inside.black .slope.upright,
.angled_up_inside.black .slope.upleft {
    background-color: #212121;
}

.angled_up_inside.lightgray,
.angled_up_inside.lightgray .slope.upright,
.angled_up_inside.lightgray .slope.upleft {
    background-color: #f5f5f5;
}


/*-------------- angles down inside section ---------------*/

.angled_down_inside {
    height: 0px;
    margin-top: 0px;
    position: relative;
    margin-bottom: 0px;
    z-index: 10;
}

.angled_down_inside .slope.upleft {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
    min-height: 100px;
    position: absolute;
    top: -70px;
    left: 0px;
    width: 150%;
    margin-left: -50%;
}

.angled_down_inside .slope.upright {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
    min-height: 100px;
    position: absolute;
    top: -34px;
    right: 0px;
    width: 150%;
    margin-right: -50%;
}

.angled_down_inside.primary,
.angled_down_inside.primary .slope.upright,
.angled_down_inside.primary .slope.upleft {
    background-color: var(--primary-color);
}

.angled_down_inside.white,
.angled_down_inside.white .slope.upright,
.angled_down_inside.white .slope.upleft {
    background-color: #ffffff;
}

.angled_down_inside.lightgray,
.angled_down_inside.lightgray .slope.upright,
.angled_down_inside.lightgray .slope.upleft {
    background-color: #f5f5f5;
}

.angled_down_inside.black,
.angled_down_inside.black .slope.upright,
.angled_down_inside.black .slope.upleft {
    background-color: #212121;
}


@media only screen and (min-width: 1450px) {
    .angled_down_inside .slope.upleft {
        min-height: 115px;
    }

    .angled_up_inside .slope.upright{
        top: 158px;
    }


}

/*---------------------------------
    Header Logo Settings
-----------------------------------*/

section.header {
    position: relative;
}

section.header .container {
    padding: 50px 0 0 0px;
    position: relative;
    z-index: 35;
}

section.header .container .logo {
    min-height: 50px;
    min-width: 150px;
}

section.header .container .logo span {
    font-weight: bold;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 35px;
}

section.header .container .logo span:after {
    content: " ";
    background-color: var(--primary-color);
    width: 30px;
    height: 4px;
    margin-top: 10px;
    display: block;
    margin-left: 0px;
}

@media only screen and (max-width: 768px) {
    section.header .container .logo {
        z-index: 5;
        min-width: 150px;
        padding-top: 15px;
        padding-left: 15px;
    }
    section.header .container .logo span {
        font-size: 18px;
        line-height: 10px;
        margin-top: 10px;
    }
    section.header .container .logo span:after {
        width: 20px;
        height: 3px;
        margin-top: 0px;
        display: block;
        margin-left: 0px;
    }
}


/*---------------------------------
    Header Top Bar Menu General Settings
-----------------------------------*/

section.header .topbar {
    width: 100%;
    height: 50px;
    top: 50px;
    left: 0px;
    position: absolute;
    z-index: 40;
    display: block;
}

section.header .topbar .menu .primary {
    width: 60%;
    text-align: right;
    height: 50px;
    float: left;
}

section.header .topbar .menu .black {
    width: 40%;
    text-align: left;
    height: 50px;
    float: left;
}

section.header .topbar .menu ul {
    width: auto;
    margin: 0;
    padding: 0;
    background-color: transparent;
    list-style-type: none;
}

section.header .topbar .menu ul ul {
    box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
    -o-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
    -ms-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
    -moz-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
    -webkit-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
}

section.header .topbar .menu ul li {
    float: left;
}

section.header .topbar .menu .black ul {
    float: left;
}


/*---------------------------------
    Header Top Bar Mobile Menu (Small Screens)
-----------------------------------*/

section.header .container .menu-mobile i.menu-toggle {
    float: right;
    width: 50px;
    height: 50px;
    background: transparent;
    color: #212121;
    display: block;
    font-size: 22px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    display: none;
}

section.header .container .menu-mobile.open i.menu-toggle,
section.header .container .menu-mobile i.menu-toggle:hover {
    background: #212121;
    color: var(--primary-color);
}

section.header .container .menu-mobile ul.menu,
section.header .container .menu-mobile.open ul.menu {
    display: none;
}


/*------------ Responsive Header Menu -----------*/

@media only screen and (max-width: 1200px) {
    section.header .container {
        padding: 50px 0 0 0px;
    }
    .topbar .cssmenu > ul > li > a {
        font-size: 13px;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 992px) {
    section.header .header-logo-wrap {
        z-index: 500 !important;
    }
    section.header .container .menu-mobile.open ul.menu {
        display: block;
        box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
        -o-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
        -ms-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
        -moz-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
        -webkit-box-shadow: 0 2px 2px rgba(33, 33, 33, 0.3);
    }
    section.header .topbar {
        display: none;
    }
    section.header .container .menu-mobile i.menu-toggle {
        display: block;
    }
    section.header .container .menu-mobile.open ul.menu {
        display: block;
        top: 50px;
    }
    section.header .container .menu-mobile {
        position: absolute;
        left: 0px;
    }
    .menu-mobile.cssmenu ul li a {
        background-color: rgba(33, 33, 33, 1);
        text-align: left;
        color: var(--primary-color);
        border-left: 3px solid transparent;
    }
    .menu-mobile.cssmenu ul li a:hover {
        color: var(--primary-color);
        border-left: 3px solid var(--primary-color);
        background-color: rgba(45, 45, 45, 1);
    }
    .menu-mobile.cssmenu ul li.has-sub a i {
        font-size: 16px;
        float: right;
        top: 19px;
        right: 30px;
        position: absolute;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    .menu-mobile.cssmenu ul li.has-sub a i.open {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .menu-mobile.cssmenu ul ul li a {
        padding: 0 30px;
    }
    .menu-mobile.cssmenu ul ul li.has-sub a i {
        top: 10px;
        font-size: 18px;
    }
    section.header .container .menu-mobile.cssmenu {
        width: 70%;
        left: auto;
        right: 0px;
    }
    section.header .container {
        padding: 50px 0 0 0px;
    }
    .menu-mobile.cssmenu > ul > li {
        background-color: #212121;
    }
    .menu-mobile.cssmenu ul ul,
    .menu-mobile.cssmenu ul ul ul {
        display: block;
        padding-left: 30px;
        display: none;
    }
    .menu-mobile.cssmenu ul.open,
    .menu-mobile.cssmenu ul ul.open,
    .menu-mobile.cssmenu ul ul ul.open {
        display: block;
    }
    .menu-mobile.cssmenu ul ul li:hover > ul {
        left: auto;
    }
    .menu-mobile.cssmenu > ul > li:hover > a,
    .menu-mobile.cssmenu > ul > li.active > a {
        color: var(--primary-color);
    }
    section.header .container .menu-mobile.cssmenu > ul > li > a,
    section.header .container .menu-mobile.cssmenu > ul > ul > li > a {
        font-size: 15px;
        padding: 0 30px;
    }
}

@media only screen and (max-width: 768px) {

    body section.header .header-logo-wrap{
        height: auto;
    }

    section.header .container .menu-mobile.cssmenu.open {
        background-color: transparent;
    }
    section.header .container .menu-mobile.cssmenu {
        width: 100%;
        left: 0px;
        right: 0px;
        background-color: transparent;
        z-index: 2;
        padding-right: 0px;
    }
    section.header .container .menu-mobile i.menu-toggle {
        margin-top: 0px;
        margin-right: 0px;
    }
    section.header .container .menu-mobile.cssmenu ul {
        padding-top: 0px;
    }
    section.header .container .menu-mobile.cssmenu ul ul {
        padding-top: 0px;
    }
    section.header .container .menu-mobile.cssmenu > ul > li > a,
    section.header .container .menu-mobile.cssmenu > ul > ul > li > a {
        font-size: 15px;
        padding: 0 15px 0 15px;
    }
    section.header .container {
        padding: 0px 0 0 0px;
    }
}


/*---------------------------------
        Header Menu Large Screens            
-----------------------------------*/

.cssmenu,
.cssmenu ul,
.cssmenu ul li,
.cssmenu ul li a,
.cssmenu #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
}

.cssmenu:after,
.cssmenu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.cssmenu #menu-button {
    display: none;
}

.cssmenu {
    width: auto;
    display: inline-block;
}

.cssmenu > ul > li {
    float: left;
}

.cssmenu.align-center > ul {
    font-size: 0;
    text-align: center;
}

.cssmenu.align-center > ul > li {
    display: inline-block;
    float: none;
}

.cssmenu.align-center ul ul {
    text-align: left;
}

.cssmenu.align-right > ul > li {
    float: right;
}

.cssmenu.align-right ul ul {
    text-align: right;
}

.cssmenu > ul > li > a {
    padding: 0 15px;
    line-height: 50px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    color: #212121;
    text-align: center;
    background-color: var(--primary-color);
}

.menu .black .cssmenu > ul > li > a {
    color: var(--primary-color);
    background-color: #212121;
}

.cssmenu > ul > li:hover > a,
.cssmenu > ul > li.active > a {
    color: #212121;
}

.cssmenu ul ul {
    position: absolute;
    left: -9999px;
}

.cssmenu li:hover > ul {
    left: auto;
}

.cssmenu ul ul li:hover > ul {
    left: 171px;
}

.cssmenu.align-right li:hover > ul {
    right: 0;
}

.cssmenu ul ul ul {
    margin-left: 100%;
    top: 0;
}

.cssmenu.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}

.cssmenu ul ul li {
    height: 40px;
}

.cssmenu ul li:hover > ul > li {
    height: 40px;
}

.cssmenu ul ul li a {
    /*width: 170px;*/
    width: 400px;
    font-size: 15px;
    color: var(--primary-color);
    padding: 0 25px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    text-align: left;
    background-color: #212121;
}

.cssmenu ul ul li:hover > a,
.cssmenu ul ul li a:hover {
    color: var(--primary-color);
}

.cssmenu.align-right ul ul li.has-sub > a:after {
    right: auto;
    left: 10px;
    border-bottom: 0;
    border-right: 0;
    border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}

.cssmenu ul ul li.has-sub:hover > a:after {
    border-color: var(--primary-color);
}

.cssmenu ul ul li.has-sub a i {
    float: right;
    position: relative;
    top: 14px;
    font-size: 14px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media all and (max-width: 992px) {
    .cssmenu {
        width: 100%;
    }
    .cssmenu ul {
        width: 100%;
        display: none;
    }
    .cssmenu.align-center > ul,
    .cssmenu.align-right ul ul {
        text-align: left;
    }
    .cssmenu ul li,
    .cssmenu ul ul li,
    .cssmenu ul li:hover > ul > li {
        width: 100%;
        height: auto;
    }
    .cssmenu ul li a,
    .cssmenu ul ul li a {
        width: 100%;
    }
    .cssmenu > ul > li,
    .cssmenu.align-center > ul > li,
    .cssmenu.align-right > ul > li {
        float: none;
        display: block;
    }
    .cssmenu ul ul ul li a {
        padding-left: 40px;
    }
    .cssmenu ul ul,
    .cssmenu ul ul ul {
        position: relative;
        left: 0;
        right: auto;
        width: 100%;
        margin: 0;
    }
    .cssmenu > ul > li.has-sub > a:after,
    .cssmenu ul ul li.has-sub > a:after {
        display: none;
    }
    #menu-line {
        display: none;
    }
    .cssmenu .submenu-button {
        position: absolute;
        z-index: 10;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid rgba(120, 120, 120, 0.15);
        height: 52px;
        width: 52px;
        cursor: pointer;
    }
    .cssmenu .submenu-button:after {
        content: '';
        position: absolute;
        top: 21px;
        left: 26px;
        display: block;
        width: 1px;
        height: 11px;
        background: #000000;
        z-index: 99;
    }
    .cssmenu .submenu-button:before {
        content: '';
        position: absolute;
        left: 21px;
        top: 26px;
        display: block;
        width: 11px;
        height: 1px;
        background: #000000;
        z-index: 99;
    }
    .cssmenu .submenu-button.submenu-opened:after {
        display: none;
    }
}


/*---------------------------------
    Header Main Text - Introduction
-----------------------------------*/

section.header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    /*    background-image: url("../img/banner-1.jpg");*/
    background-size: cover;
    background-position: center center;
    z-index: 2;
    top: 0px;
    left: 0px;
}

section.header .overlay .black {
    width: 60%;
    height: 100%;
    background-color: #212121;
    opacity: 0.5;
    left: 0;
    top: 0px;
    position: absolute;
}

section.header .overlay .primary {
    width: 40%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.8;
    left: 60%;
    top: 0px;
    position: absolute;
}

section.header .maintext {
    position: relative;
    z-index: 30;
    padding-top: 25%;
    width: 100%;
    display: inline-block;
}

section.header .maintext .primary-text {
    width: 60%;
    color: var(--primary-color);
    float: left;
}

section.header .maintext .black-text {
    width: 40%;
    color: var(--primary-color);
    float: left;
}

section.header .maintext .primary-text div {
    width: auto;
    float: right;
}

section.header .maintext .primary-text h4,
section.header .maintext .primary-text h1 {
    text-align: left;
    color: var(--primary-color);
    white-space: nowrap;
    display: block;
    text-transform: uppercase;
}

section.header .maintext .primary-text h1,
section.header .maintext .black-text h1 {
    font-size: 100px;
    line-height: 78px;
    margin: 0;
}

section.header .maintext .primary-text h4 {
    font-size: 36px;
    line-height: 26px;
    margin: 0 0 30px 0;
    text-align: left;
}

section.header .maintext .primary-text div {
    padding-right: 10px;
    padding-left: 30px;
    border-left: 10px solid var(--primary-color);
}

section.header .maintext .black-text div {
    padding-left: 10px;
}

section.header .maintext .black-text h1 {
    text-align: left;
    color: #212121;
    white-space: nowrap;
    display: block;
    text-transform: uppercase;
    margin-top: 56px;
}

section.header .header-slide {
    position: relative;
}

section.header .header-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}


/*----------- Inner Page Header (Small) */

section.header.header-small .header-slide {
    max-height: 600px;
    overflow: hidden;
}

section.header.header-small .maintext {
    padding-top: 10%;
}

section.header.header-small .maintext .primary-text h1,
section.header.header-small .maintext .black-text h1 {
    font-size: 80px;
    line-height: 62px;
}

section.header.header-small .maintext .primary-text h4 {
    font-size: 36px;
    line-height: 26px;
}

section.header.header-small .header-img {
    margin-top: -100px;
}


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {


    section.header.header-small .header-img {
        margin-top: -60px;
    }

    section.header .maintext .primary-text h1,
    section.header .maintext .black-text h1 {
        font-size: 80px;
        line-height: 65px;
    }
    section.header .maintext .primary-text h4 {
        font-size: 30px;
        line-height: 20px;
    }

    section.header .maintext .black-text h1{
        margin-top: 50px;
    }
    
    section.header.header-small .maintext .primary-text h1,
    section.header.header-small .maintext .black-text h1 {
        font-size: 70px;
        line-height: 55px;
    }

    section.header.header-small .maintext .primary-text h4 {
        font-size: 30px;
        line-height: 20px;
    }

}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    
    section.header .header-img{
        width: 120%;
        margin-left: 0%;
    }

    section.header .owl-item .header-img{
        margin-left: 0%;
    }

    section.header .maintext {
        padding-top: 25%;
    }
    section.header.header-small .maintext {
        padding-top: 25%;
    }
    section.header .maintext .primary-text h1,
    section.header .maintext .black-text h1 {
        font-size: 65px;
        line-height: 50px;
    }
    section.header .maintext .primary-text h4 {
        font-size: 30px;
        line-height: 20px;
    }

    section.header .maintext .black-text h1{
        margin-top: 50px;
    }

    section.header.header-small .maintext .primary-text h1,
    section.header.header-small .maintext .black-text h1 {
        font-size: 70px;
        line-height: 54px;
    }
    section.header.header-small .maintext .primary-text h4 {
        font-size: 30px;
        line-height: 20px;
    }
    section.header.header-small .maintext .black-text h1 {
        margin-top: 44px;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {
    section.header .maintext .primary-text h1,
    section.header .maintext .black-text h1 {
        font-size: 60px;
        line-height: 48px;
    }
    section.header .maintext .primary-text h4 {
        font-size: 24px;
        line-height: 20px;
        margin: 0 0 20px 0;
        text-align: left;
    }

    section.header .maintext .black-text h1{
        margin-top: 40px;        
    }

    section.header.header-small .maintext .primary-text h1,
    section.header.header-small .maintext .black-text h1 {
        font-size: 60px;
        line-height: 48px;
    }
    section.header.header-small .maintext .primary-text h4 {
        font-size: 24px;
        line-height: 20px;
    }
    section.header.header-small .maintext .black-text h1 {
        margin-top: 40px;
    }
    section.header.header-parallax .maintext,
    section.header.header-small .maintext {
        padding-top: 30%;
    }

    section.header .header-img{
        width: 150%;
        margin-left: -15%;
    }

    section.header .owl-item .header-img{
        margin-left: 0%;
    }

    section.header .maintext{
        padding-top: 40%;
    }

    section.header .maintext .primary-text div{
        border-left: 5px solid var(--primary-color);
    }

    section.header .overlay .black{
        width: 50%;
    }

    section.header .overlay .primary{
        width: 50%;
        left: 50%;
    }

    section.header .maintext .primary-text{
        width: 50%;        
        padding-left: 15px;
    }

    section.header .maintext .black-text{
        width: 50%;
        padding-right: 15px;
    }

    section.header .maintext .primary-text div{
        padding-left: 20px;
    }

    section.header .container .menu-mobile i.menu-toggle{
        font-size: 18px;
        line-height: 50px;
    }



}


@media only screen and (max-width: 580px) {

    section.header .maintext .primary-text h4{
        font-size: 18px;
    }

    section.header .maintext .primary-text h1, section.header .maintext .black-text h1{
        font-size: 48px;        
        line-height: 36px;
    }

    section.header .header-img{
        width: 170%;
        margin-left: -25%;
    }

    section.header .owl-item .header-img{
        margin-left: 0%;
    }


    section.header.header-small .maintext .primary-text h1,
    section.header.header-small .maintext .black-text h1 {
        font-size: 48px;
        line-height: 36px;
    }
    section.header.header-small .maintext .primary-text h4 {
        font-size: 18px;
        line-height: 20px;
    }

}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {

    section.header .header-img{
        width: 200%;
        margin-left: -40%;
    }    

    section.header .owl-item .header-img{
        margin-left: 0%;
    }

    section.header .maintext{
        padding-top: 50%;
    }

    section.header .maintext .primary-text h1, section.header .maintext .black-text h1{
        font-size: 32px;
        line-height: 24px;
    }

    section.header .maintext .primary-text div{
        padding-right: 7px;
    }

    section.header .maintext .black-text div{
        padding-left: 7px;
    }

    section.header.header-small .maintext .primary-text h1,
    section.header.header-small .maintext .black-text h1 {
        font-size: 32px;
        line-height: 24px;
    }
    section.header.header-small .maintext .primary-text h4 {
        font-size: 18px;
        line-height: 20px;
    }


}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {

    section.header .maintext{
        padding-top: 40%;
    }

    section.header .maintext .primary-text h1, section.header .maintext .black-text h1{
        font-size: 30px;
        line-height: 20px;
    }

    section.header .maintext .primary-text div{
        border-left: 3px solid var(--primary-color);
        padding-left: 10px;
    }

    section.header.header-small .maintext .primary-text h1,
    section.header.header-small .maintext .black-text h1 {
        font-size: 30px;
        line-height: 20px;
    }

}


@media only screen and (max-width: 250px) {

    section.header .header-img{
        width: 250%;
        margin-left: -40%;
    }    

    section.header .owl-item .header-img{
        margin-left: 0%;
    }
    section.header.header-parallax .maintext, section.header.header-small .maintext{
        padding-top: 40%;
    }
    section.header .maintext{
        padding-top: 40%;
    }

    section.header .maintext .primary-text h1, section.header .maintext .black-text h1{
        font-size: 14px;
        line-height: 10px;
    }

    section.header .maintext .primary-text div{
        border-left: 2px solid var(--primary-color);
        padding-left: 10px;
    }

    section.header.header-small .maintext .primary-text h1,
    section.header.header-small .maintext .black-text h1 {
        font-size: 20px;
        line-height: 15px;
    }

}

/*---------------------------------
    Header Image Carousel Slider
-----------------------------------*/

section.header .header-logo-wrap {
    position: absolute;
    width: 100%;
    height: 100px;
    z-index: 5;
    top: 0px;
    left: 0px;
}

section.header-slider .overlay {
    background-image: none;
}

section.header .owl-theme .owl-controls {
    position: absolute;
    top: 40%;
    width: 100%;
    height: 100px;
    z-index: 1;
}

section.header .owl-theme .owl-controls .owl-buttons {
    position: absolute;
    width: 100%;
    height: 100px;
    z-index: 50;
    top: -50px;
}

section.header .owl-theme .owl-controls .owl-buttons .owl-prev {
    float: left;
}

section.header .owl-theme .owl-controls .owl-buttons .owl-next {
    float: right;
}

section.header .owl-theme .owl-controls .owl-buttons .owl-prev,
section.header .owl-theme .owl-controls .owl-buttons .owl-next {
    border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    background-color: rgba(33, 33, 33, .1);
    margin: 0px;
    height: 75px;
    width: 75px;
    text-align: center;
}

section.header .owl-theme .owl-controls .owl-buttons i {
    line-height: 65px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 32px;
}

section.header .owl-theme .owl-controls .owl-buttons .owl-prev:hover,
section.header .owl-theme .owl-controls .owl-buttons .owl-next:hover {
    background-color: rgba(33, 33, 33, .6);
}

section.header .owl-theme .owl-controls .owl-buttons .owl-prev:hover i,
section.header .owl-theme .owl-controls .owl-buttons .owl-next:hover i {
    color: rgba(255, 255, 255, 0.6);
}


/*---------------------------------
    Parallax Style Header (Topbar Menu and Logo)
-----------------------------------*/

section.header-parallax.fixed-top .topbar {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 50px;
}

section.header-parallax.fixed-top .topbar .menu .primary {
    /*background-color: var(--primary-color);*/
    background-color: #FFFFFF;
    height: 50px;
    padding-top: 0px;
}

section.header-parallax.fixed-top .topbar .menu .black {
    background-color: #212121;
    height: 50px;
    padding-top: 0px;
}

section.header-parallax.fixed-top .container .logo {
    position: fixed;
    top: 12px;
    z-index: 800;
    padding-top: 0px;
    margin-top: -4px;
}

section.header-parallax.fixed-top .header-logo-wrap {
    z-index: 50;
    height: 0px;
}

section.header-parallax.fixed-top .container .logo span {
    color: #212121;
    font-size: 18px;
    line-height: 10px;
    padding-top: 0px;
}

section.header-parallax.fixed-top .container {
    height: 0px;
    padding: 0 0 0 0;
}

section.header-parallax.fixed-top .container .logo span:after {
    background-color: #212121;
    margin-top: 0px;
    width: 20px;
    height: 3px;
}


/* Small Devices, Tablets */

@media only screen and (max-width: 992px) {
    section.header.header-parallax.fixed-top .header-logo-wrap {
        position: fixed;
        background-color: var(--primary-color);
        height: 50px;
    }
}


/*---------------------------------
    Shop Products
-----------------------------------*/

.product .pic {
    position: relative;
}

.product .pic img {
    width: 100%;
    position: relative;
}

.product .pic .cart-layer {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    background-color: rgba(33, 33, 33, 0.8);
    top: 0px;
    left: 0px;
    opacity: 0;
}

.product .pic .cart-layer:hover {
    opacity: 1;
}

.product .pic .cart-layer a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product .pic .cart-layer a i,
.product .pic .cart-layer a i:hover {
    font-size: 42px;
    color: var(--primary-color);
}

.product .pic .best-seller {
    z-index: 3;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 120px;
    background-color: var(--primary-color);
    height: 50px;
    line-height: 50px;
    padding-left: 15px;
    font-weight: bold;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.product .pic .best-seller span {
    position: relative;
    z-index: 4;
}

.product .pic .best-seller:before {
    display: block;
    content: " ";
    width: 30px;
    height: 50px;
    background-color: var(--primary-color);
    position: absolute;
    right: -15px;
    -moz-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    z-index: 2;
    top: 0px;
}

.product .info {
    background-color: var(--primary-color);
    display: inline-block;
    width: 100%;
    position: relative;
}

.product .info .price {
    position: absolute;
    top: -25px;
    right: 0;
    background-color: #212121;
    height: 50px;
    padding: 0px 15px 0 15px;
    width: 130px;
    text-align: right;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.product .info .price:before {
    display: block;
    content: " ";
    width: 30px;
    height: 50px;
    background-color: #212121;
    position: absolute;
    left: -15px;
    -moz-transform: skewX(30deg);
    -o-transform: skewX(30deg);
    transform: skewX(30deg);
    -ms-transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    z-index: 1;
    top: 0px;
    z-index: 1;
}

.product .info .price h4 {
    color: #ffffff;
    padding: 15px;
    line-height: 50px;
    margin: 0px;
    padding: 0px;
    position: relative;
    z-index: 2;
}

.product .info h4 {
    margin: 25px 0 10px 15px;
    text-transform: uppercase;
}

.product .info h4 a:hover, .product .info h4 a:active, .product .info h4 a:focus,
.product .info h4 a{
    text-decoration: none;
    color: #212121;
}

.product .info .rating:hover i {
    color: #424242;
    opacity: 1;
}

.product .info .rating {
    padding-left: 15px;
    padding-bottom: 15px;
    cursor: pointer;
    display: inline-block;
}

.product .info .rating i {
    color: #212121;
    opacity: 0.7;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}

.product .info .rating i.filled {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .product {
        margin-bottom: 50px;
    }
    .product:last-child {
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .product {
        margin-bottom: 50px;
    }
    .product:last-child {
        margin-bottom: 0px;
    }
}

@media (min-width: 992px) {
    .products .product {
        margin-bottom: 100px;
    }

    .products .product:nth-of-type(4),
    .products .product:nth-of-type(5),
    .products .product:nth-of-type(6) {
        margin-bottom: 0px;
    }

}





/*----------------  Product Full Page ----------------*/


.product-full .meta span{
    margin-right: 20px;
    display: inline-block;
    font-size: 14px;
}

.product-full .media{
    margin: 50px 0;
}

.product-full p.meta{
    margin-bottom: 25px;
}

.product-full p{
    margin-bottom: 50px;
}

.product-full p.margin-bottom-25{
    margin-bottom: 25px;
}

.product-full .comments .well{
    margin-top: 50px;
    margin-bottom: 0px;
}

.product-full .info h4,
.product-full .comments h4,
.product-full .comment-form h4{
    text-transform: uppercase;
}

.product-full .info h4{
    margin-top: 50px;
}

.product-full .price .label{
    font-size: 18px;
    color: #212121;
}

.product-full .price .discount{
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 18px;
}

.product-full .price .percent{
    margin-left: 5px;
    font-size: 15px;
    font-style: italic;

}


.product-full .comments h5{
    font-weight: normal;
    font-size: 16px;
}
.product-full .comments p{
    margin-bottom: 10px;
}

.product-full .comments .well.level-2{
    margin-left: 50px;
    margin-top: 25px;
}

.product-full .comments .well.level-3{
    margin-left: 100px;
    margin-top: 25px;
}

.product-full .comment-form h4{
    margin-top: 50px;
    margin-bottom: 50px;
}


.product-full .info .title {
    line-height: 36px;
    text-transform: uppercase;
    height: auto;
    width: auto;
}

.product-full .info .title a, 
.product-full .info .title a:hover, 
.product-full .info .title a:focus, 
.product-full .info .title a:active{
    text-decoration: none;
    color: #212121;
}


/*---------------------------------
    Full Icon Set (Material Icons & Font Awesome)
-----------------------------------*/
.fontawesome div, .fontawesome div *,
.material_icons div, .material_icons div *
{
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transition-timing-function: cubic-bezier(.4, 0, .5, 1);
    -moz-transition-timing-function: cubic-bezier(.4, 0, .5, 1);
    transition-timing-function: cubic-bezier(.4, 0, .5, 1);
}

.fontawesome div,
.material_icons div{
    text-align: center;
    padding: 15px;
    margin-bottom: 10px;
}

.fontawesome div i,
.material_icons div i{
    display: block;
    margin: 0 auto;
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.fontawesome div:hover,
.material_icons div:hover{
    background-color: #f5f5f5;
    cursor: pointer;
}

.fontawesome div:hover i,
.material_icons div:hover i{
    color: #212121;
}

.fontawesome h4{
    text-transform: uppercase;
    text-align: center;
    display: block;
    clear:both;
    width: 100%;
    height: auto;
    margin-top: 75px;
    margin-bottom: 50px;
}


/*---------------------------------
    Queries - What Why How Section
-----------------------------------*/

section.whatwhyhow {
    background-image: url("../themes/jara/assets/img/banner-1.jpg");
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

section.whatwhyhow .container {
    padding: 150px 0;
}

.query_box .box-wrapper {
    background-color: rgba(33, 33, 33, 0.8);
    display: inline-block;
    width: 100%;
    position: relative;
    padding-bottom: 50px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.query_box .box-wrapper h2 {
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: var(--primary-color);
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.query_box .box-wrapper h3 {
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    line-height: 100px;
    margin-bottom: 10px;
}

.query_box .box-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 25px;
    padding: 0 30px;
}

.query_box .box-wrapper .btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    margin-left: -70px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}


.query_box {
        margin-bottom: 0px;
    }


@media screen and (max-width: 992px) {
    .query_box {
        margin-bottom: 50px;
    }
    .query_box:last-child {
        margin-bottom: 0px;
    }
}



@media screen and (max-width: 768px) {
    .query_box .box-wrapper h2 {
        height: 70px;
        line-height: 70px;
        text-align: center;
        background-color: var(--primary-color);
        margin: 0 0 25px 0;
        text-transform: uppercase;
        font-size: 30px;
    }

    .query_box .box-wrapper h3{
        line-height: 70px;
    }
}








/*---------------------------------
    Footer
-----------------------------------*/

section.footer .container h4 {
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0px;
    line-height: 40px;
}

section.footer .container .headul {
    margin: 7px 0px 40px 0;
}

section.footer .container .headul:before {
    width: 60px;
    height: 1px;
}

section.footer .container .headul:after {
    width: 20px;
    height: 3px;
}

section.footer .container .logo {
    min-height: 50px;
    min-width: 150px;
    margin-bottom: 40px;
}

section.footer .container .logo span {
    font-weight: bold;
    font-size: 30px;
    text-align: left;
    text-transform: uppercase;
    color: var(--primary-color);
    line-height: 35px;
}

section.footer .container .logo span:after {
    content: " ";
    background-color: var(--primary-color);
    width: 30px;
    height: 4px;
    margin-top: 10px;
    display: block;
    margin-left: 0px;
}

section.footer .text-widget p {
    color: #cccccc;
    opacity: 1;
}

section.footer .twitter-widget .tweet {
    color: #cccccc;
    opacity: 1;
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}

section.footer .twitter-widget .tweet i {
    float: left;
    font-size: 15px;
    line-height: 35px;
}

section.footer .twitter-widget .tweet .message {
    padding-left: 35px;
}

section.footer .flickr-widget .images div {
    margin-bottom: 20px;
    padding: 0 10px;
}

section.footer .flickr-widget .images {
    margin: 0 -10px 0 -10px;
}


/*----------- copyright bar ------------*/

section.footer .copyright {
    margin-top: 25px;
    background-color: rgba(0, 0, 0, .4);
    vertical-align: top;
    display: inline-block;
    width: 100%;
}

section.footer .copyright .container {
    padding: 0px;
    vertical-align: top;
}

section.footer .copyright .message {
    color: #cccccc;
    padding-top: 20px;
    font-size: 16px;
    color: #999999;
}

section.footer .copyright .social {
    text-align: right;
}

section.footer .copyright .social a {
    display: inline-block;
    margin: 10px 0 10px 20px;
    width: auto;
    height: 40px;
}

section.footer .copyright .social a i {
    line-height: 40px;
    color: #999999;
    font-size: 15px;
}

@media only screen and (max-width: 992px) {
    section.footer .flickr-widget .images div {
        padding-left: 15px;
        padding-right: 15px;
    }
    section.footer .twitter-widget .tweet {
        margin-bottom: 10px;
    }
    section.footer .twitter-widget {
        margin-top: 30px;
    }
    section.footer .flickr-widget {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 768px) {
    section.footer .copyright .message {
        text-align: center;
        font-size: 14px;
    }
    section.footer .copyright .social {
        text-align: center;
    }
    section.footer .copyright .social a {
        margin: 5px;
    }
    section.footer .copyright .social a i{
        font-size: 13px;
    }
    section.footer .flickr-widget .images div {
        padding-left: 15px;
        padding-right: 15px;
    }
    section.footer .flickr-widget .images{
        margin: 0 -15px 0 -15px;
    }

}


/*---------------------------------
    Pricing Plans
-----------------------------------*/

section .pricing-plans {
    padding: 50px 15px 0 15px;
}

section#pricing{
    position: relative;
    margin-bottom: 100px; 
}

section#pricing.inner-pricing{
    margin-bottom: 0px;
}

section#pricing .angled_down_outside{
    width: 100%;
    position: absolute;
    top: 100%;
    margin-top: -100px;
}

.price-plan {
    padding: 0px;
    text-align: center;
    position: relative;
}

.price-plan h4 {
    text-transform: uppercase;
    padding: 25px 0 0 0;
}

.price-plan h2 {
    text-transform: uppercase;
    padding: 0px 0 0 0;
}

.price-plan p {
    color: #212121;
    padding: 0px 0 25px 0;
    margin-bottom: 0px;
}

.price-plan .stripes .stripe {
    background-color: #fafafa;
    text-align: center;
    line-height: 50px;
    height: 50px;
}

.price-plan .stripes .stripe:nth-child(odd) {
    background-color: #ffffff;
}

.price-plan .button-wrap {
    padding: 12px 0;
    position: relative;
    background-color: #fafafa;
}

.price-plan.recommend {
    margin-top: 0px;
    -webkit-box-shadow: 0 0 10px rgba(100, 100, 100, 0.3);
    -moz-box-shadow: 0 0 10px rgba(100, 100, 100, 0.3);
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.3);
    position: relative;
    z-index: 99;
    top: -30px;
}

.price-plan.recommend h4 {
    text-transform: uppercase;
    padding: 30px 0 10px 0;
    font-size: 36px;
}

.price-plan.recommend h2 {
    text-transform: uppercase;
    padding: 0px 0 0 0;
    font-size: 60px;
    line-height: 60px;
    padding: 0px 0;
    margin-bottom: 30px;
}

.price-plan p {
    color: #212121;
    padding: 0px 0 25px 0;
    margin-bottom: 0px;
}

@media only screen and (max-width: 768px) {

    .price-plan h4{
        font-size: 18px;
        margin-bottom: 0px;
    }

    .price-plan h2{
        font-size: 36px;
        margin-bottom: 10px;
    }

    
    .price-plan.recommend h4{
        font-size: 24px;
        margin-bottom: 0px;
    }

    .price-plan.recommend h2{
        font-size: 48px;
        margin-bottom: 10px;
    }
}


/*------- New angle --------*/

.price-plan .new {
    position: absolute;
    top: -30px;
    right: -50px;
    display: block;
    height: 70px;
    width: 140px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.price-plan .new-text {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 8px 8px 0 0;
    font-size: 14px;
}

.price-plan {
    overflow: hidden;
}

@media only screen and (max-width: 992px) {
    .price-plan {
        margin-bottom: 50px;
    }
    .price-plan:nth-of-type(3) {
        margin-bottom: 0px;
    }
    .price-plan.recommend {
        margin-top: 0px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        top: 0px;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {}


/*---------------------------------
    Elegant Design
-----------------------------------*/

.screen-area {
    position: relative;
}

.elegant-screen {
    position: relative;
}

.screen-area .screen-1 {
    position: absolute;
    margin: 15% 0 0 30%;
    z-index: 2;
}

.screen-area .screen-2 {
    position: absolute;
    z-index: 1;
}

@media only screen and (max-width: 1200px) {
    .screen-area .screen-1 {
        margin: 20% 0 0 25%;
    }
}

@media only screen and (max-width: 992px) {
    .screen-area {
        margin-top: 50px;
    }
    .elegant-screen {
        margin-bottom: 450px;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {}


/*---------------------------------
    Our Team
-----------------------------------*/

.member .pic {
    position: relative;
}

.member .pic img {
    width: 100%;
    position: relative;
}

.member .pic .social {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 140px;
    background-color: var(--primary-color);
    height: 50px;
}

.member .pic .social:before {
    display: block;
    content: " ";
    width: 30px;
    height: 50px;
    background-color: var(--primary-color);
    position: absolute;
    left: -15px;
    -moz-transform: skewX(30deg);
    -o-transform: skewX(30deg);
    transform: skewX(30deg);
    -ms-transform: skewX(30deg);
    -webkit-transform: skewX(30deg);
    z-index: 1;
    top: 0px;
}

.member .pic .social a {
    display: block;
    width: 30px;
    height: 30px;
    margin: 10px 15px 10px 0px;
    float: right;
    position: relative;
    z-index: 2;
    text-align: center;
}

.member .pic .social a i {
    font-size: 16px;
    line-height: 26px;
}

.member .info {
    text-align: center;
}

.member .info h3 {
    margin: 25px 0 25px 0;
    text-transform: uppercase;
}

.member .info p {
    margin-bottom: 0px;
}

.member .info h3:after {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 22px auto 0 auto;
}

@media screen and (max-width: 767px) {
    .member {
        margin-bottom: 50px;
    }
    .member:last-child {
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .member {
        margin-bottom: 50px;
    }
    .member:last-child {
        margin-bottom: 0px;
    }
}

@media (min-width: 992px) {
    .member {
        margin-bottom: 0px;
    }
}


/*---------------------------------
    Buttons
-----------------------------------*/

.btn {
    padding: 6px 15px;
    border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    font-weight: bold;
    min-width: 140px;
    height: 40px;
    border: none;
    line-height: 28px;
    text-transform: uppercase;
    margin: 10px 0;
}

.btn.btn-primary {
    background-color: var(--primary-color);
    color: #212121;
}

.btn.btn-primary:active,
.btn.btn-primary:focus {
    outline: none;
    color: #212121;
    background-color: var(--primary-color);
}

.btn-primary.disabled:hover,
.btn-primary.disabled:active,
.btn-primary.disabled:focus {
    background-color: var(--primary-color);
    border-color: transparent;
}


/*---------------------------------
    Blogs
-----------------------------------*/

.blog .info .title {
    line-height: 36px;
    text-transform: uppercase;
    height: auto;
    width: auto;
}

.blog .info .title a, .blog .info .title a:hover, .blog .info .title a:focus, .blog .info .title a:active{
    text-decoration: none;
    color: #212121;
}

.blog {
    margin-bottom: 100px;
}

.blog.blog_left .pic {
    padding-right: 30px;
}

.blog.blog_right .pic {
    padding-left: 30px;
}

.blog_centered .pic img{
    width: 100%;
}

.blog_centered .pic{
    margin-bottom: 20px;
}

.blog .info {
    padding-top: 10px;
}

.blog.blog_left .info {
    padding-left: 15px;
}

.blog.blog_right .info {
    padding-right: 15px;
}

.blog .info .date {
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: bold;
    display: block;
}

.blog:last-child {
    margin-bottom: 0px;
}

.blog .info p {
    height: auto;
    width: auto;
    overflow: auto;
}

@media screen and (max-width: 767px) {
    .blog.blog_left .info,
    .blog.blog_right .info {
        padding-left: 0px;
        padding-top: 25px;
    }
    .blog.blog_right .pic {
        padding-left: 15px;
    }

    .blog .info .date{
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .blog.blog_left .info,
    .blog.blog_right .info {
        padding-left: 0px;
        padding-top: 25px;
    }
    .blog.blog_right .pic {
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .blog.blog_left .info,
    .blog.blog_right .info {
        padding-top: 10px;
    }
    .blog .info .title {
        height: 36px;
        width: 95%;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
    .blog .info p {
        height: 112px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
}

@media (min-width: 1170px) {
    .blog .info .title {
        height: auto;
        width: auto;
        white-space: normal;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
    .blog .info p {
        height: auto;
        width: auto;
        overflow: auto;
    }
}


.blog-full .meta span{
    margin-right: 20px;
    display: inline-block;
    font-size: 14px;
}

.blog-full .media{
    margin: 50px 0;
}

.blog-full p.meta{
    margin-bottom: 25px;
}

.blog-full p{
    margin-bottom: 50px;
}

.blog-full .comments .well{
    margin-top: 50px;
    margin-bottom: 0px;
}

.blog-full .comments h4,
.blog-full .comment-form h4{
    text-transform: uppercase;
}

.blog-full .comments h5{
    font-weight: normal;
    font-size: 16px;
}
.blog-full .comments p{
    margin-bottom: 10px;
}

.comments .well .img-area{
    padding-left: 0px;
    padding-right: 5px;
}

.blog-full .comments .well.level-2{
    margin-left: 50px;
    margin-top: 25px;
}

.blog-full .comments .well.level-3{
    margin-left: 100px;
    margin-top: 25px;
}

.blog-full .comment-form h4{
    margin-top: 50px;
    margin-bottom: 50px;
}

.comment-form input, .comment-form textarea{
    border-color: #dddddd;
    color: #757575;
    opacity: 1;
}


/*---------------------------------
    Choose Features (Why Choose Us Section)
-----------------------------------*/

.feature {
    margin-bottom: 100px;
}

.feature .icon {
    width: 60px;
}

.feature .icon i {
    font-size: 48px;
    line-height: 55px;
    color: var(--primary-color);
    vertical-align: top;
    width: 80px;
    float: left;
}

.feature .info {
    vertical-align: top;
    padding-left: 80px;
}

.feature .info .title {
    text-transform: uppercase;
}

.section-features.bg-primary .features .feature .icon i,
.section-features.bg-primary .features .feature .info .title,
.section-features.bg-primary .heading {
    color: #ffffff;
}

section.section-features.bg-primary .headul:after,
section.section-features.bg-primary .headul:before {
    background-color: #ffffff;
}

@media screen and (max-width: 767px) {

   .features .feature{
        margin-bottom: 60px;
    }

    .features .feature:nth-of-type(6) {
        margin-bottom: 0px;
    }
    .features .feature:nth-of-type(4),
    .features .feature:nth-of-type(5) {
        margin-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .features .feature:nth-of-type(4) {
        margin-bottom: 100px;
    }
    .features .feature:nth-of-type(5),
    .features .feature:nth-of-type(6) {
        margin-bottom: 0px;
    }
}

@media (min-width: 992px) {
    .features .feature:nth-of-type(4),
    .features .feature:nth-of-type(5),
    .features .feature:nth-of-type(6) {
        margin-bottom: 0px;
    }
}

@media (min-width: 1170px) {
    .features .feature {
        margin-bottom: 100px;
    }
    .features .feature:nth-of-type(4),
    .features .feature:nth-of-type(5),
    .features .feature:nth-of-type(6) {
        margin-bottom: 0px;
    }
}


/*---------------------------------
    Capabilities
-----------------------------------*/

section.capabilities {
    position: relative;
    overflow: hidden;
    background-image: url("../themes/jara/assets/img/banner-3.jpg");
    background-repeat: no-repeat;
        background-attachment: fixed;
    background-size: cover;
        background-position: center center;
}

@media (max-width: 992px) {
    section.capabilities{
        background-attachment: fixed;
        background-position: center left;
    }
}

@media (max-width: 768px) {
    section.capabilities{
        background-attachment: fixed;
        background-position: center left;
    }
}


.pie {
    position: relative;
    z-index: 2;
}

.pie .bg {
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    border: 90px solid rgba(33, 33, 33, .6);
}

.pie .bg img {
    opacity: 0;
}

.pie img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.pie-wrapper {
    position: relative;
    display: inline-block;
}

.pie-wrapper h1 {
    text-align: center;
    vertical-align: middle;
    position: absolute;
    color: #ffffff;
    z-index: 3;
    margin: 0px;
    top: 50%;
    width: 100%;
    margin-top: -33px;
}

.pie-info {
    width: 100%;
    margin-top: -90px;
}

.pie-info .bg {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: rgba(33, 33, 33, .6);
    text-align: center;
    color: #ffffff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.pie-info .bg:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.pie-info .bg .content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 125px 45px 45px 45px;
    overflow: hidden;
}

.pie-info .bg .content .info-wrap {
    overflow: hidden;
    display: inline-block;
}

.pie-info .bg .content h3 {
    text-transform: uppercase;
    color: #ffffff;
}

.pie-info .bg .content h3:after {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 25px auto 20px auto;
    content: " ";
}

.pie-info .bg .content p {
    color: rgba(255, 255, 255, 0.8);
}

.capability {
    margin-bottom: 0px;
}

@media (max-width: 992px) {
    .capability {
        margin-bottom: 100px;
    }
    .capability:last-child {
        margin-bottom: 0px;
    }
    .pie .bg {
        border-width: 120px;
    }
    .pie-info{
        margin-top: -120px;
    }
    .pie-info .bg .content{
        padding: 150px 45px 45px 45px;
    }
}


@media (max-width: 768px) {
    .pie-info .bg .content {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 150px 45px 30px 45px;
        overflow: hidden;
    }
    .pie-info .bg .content p {
        height: auto;
        margin-bottom: 0px;
        overflow: auto;
    }
    .pie .bg {
        border-width: 130px;
    }
    .pie-info {
        width: 100%;
        margin-top: -130px;
    }
}

@media (max-width: 600px) {
    .pie-info .bg .content p {
        display: none;
    }
    .pie .bg {
        border-width: 100px;
    }
    .pie-info{
        margin-top: -100px;
    }
}

@media (max-width: 500px) {
    .pie .bg {
        border-width: 80px;
    }
    .pie-info{
        margin-top: -80px;
    }
    .pie-info .bg .content{
        padding: 120px 45px 30px 45px;
    }
    .pie-info .bg .content h3:after{
        margin: 15px auto 15px auto;
    }
}

@media (max-width: 420px) {
    .pie .bg {
        border-width: 50px;
    }
    .pie-info{
        margin-top: -50px;
    }
    .pie-info .bg .content{
        padding: 90px 0px 30px 0px;
    }
    .pie-info .bg .content h3:after{
        margin: 15px auto 15px auto;
    }
}


@media (max-width: 320px) {
    .pie .bg {
        border-width: 50px;
    }
    .pie-info{
        margin-top: -50px;
    }
    .pie-info .bg .content{
        padding: 70px 0px 30px 0px;
    }
    .pie-info .bg .content h3{
        font-size: 18px;
    }
    .pie-info .bg .content h3:after{
        margin: 5px auto 15px auto;
    }


}

@media (max-width: 600px) {
    .capability {
        margin-bottom: 50px;
    }
    .capability:last-child {
        margin-bottom: 0px;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {
    .pie-info .bg .content {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 125px 45px 30px 45px;
        overflow: hidden;
    }
    .pie-info .bg .content p {
        height: 56px;
        margin-bottom: 0px;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: none;
    }
    .pie .bg {
        border-width: 70px;
    }
    .pie-info {
        width: 100%;
        margin-top: -70px;
    }
}


/*---------------------------------
    Art of work
-----------------------------------*/

section.artofwork .tablet-area {
    position: absolute;
    margin-left: 30%;
    min-height: 550px;
    top: -175px;
}

.ipad-artofwork {
    position: absolute;
    z-index: 1;
    top: 70px;
    max-width: 100%;
}

section.artofwork .text-area {
    position: relative;
    z-index: 2;
}

section.artofwork .text-area .feature {
    margin-bottom: 50px;
}

section.artofwork .text-area .feature:last-child {
    margin-bottom: 0px;
}

section.artofwork .text-area .feature .icon i,
section.artofwork .text-area .feature .info h3 {
    color: #ffffff;
}

section.artofwork {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

section.artofwork .heading {
    white-space: nowrap;
}

@media only screen and (max-width: 1200px) {
    section.artofwork .tablet-area {
        position: absolute;
        margin-left: 30%;
        min-height: 550px;
        top: -50px;
    }
}

@media only screen and (max-width: 992px) {
    section.artofwork .tablet-area {
        position: absolute;
        margin-left: 30%;
        min-height: 550px;
        top: -25px;
    }
}


/*---------------------------------
    Services
-----------------------------------*/

.service-tablets {
    position: absolute;
    margin-left: 30%;
    min-height: 550px;
}

.service-tablets .tablet-black {
    position: absolute;
    z-index: 1;
}

.service-tablets .tablet-white {
    position: absolute;
    z-index: 2;
    top: 50%;
}

section.services{
    padding-bottom: 125px;
    position: relative;
}

body.horizontal section.services{
    padding-bottom: 0px;
}

section.services .angled_down_outside{
    position: absolute;
    bottom: 0px;
    position: absolute;
    width: 100%;
}


@media only screen and (max-width: 1200px) {
    section.services .subheading {
        padding-bottom: 50px;
    }
    section.services {
        position: relative;
       /* padding-bottom: 0px;*/
    }

    section.services .container{
        padding-bottom: 500px;
    }

    body.horizontal section.services{
        padding-bottom: 100px;
    }

    .service-tablets {
        position: absolute;
        top: 550px;
        margin-left: 8.33333%;
    }
    .service-tablets .tablet-black {
        top: 0%;
    }
    .service-tablets .tablet-white {
        top: 40%;
    }
}

@media only screen and (max-width: 992px) {
    .service-tablets {
        top: 550px;
        margin-left: 0%;
    }
    section.services {
       padding-bottom: 150px;
    }

    section.services .container{
        padding-bottom: 450px;
    }

    body.horizontal section.services{
        padding-bottom: 100px;
    }

}

@media only screen and (max-width: 768px) {
    section.services {
       padding-bottom: 150px;
    }

    section.services .container{
        padding-bottom: 450px;
    }

    .service-tablets .tablet-white {
        top: 35%;
    }

}

@media only screen and (max-width: 580px) {

    section.services .container{
        padding-bottom: 300px;
    }

    .service-tablets .tablet-white {
        top: 25%;
    }

}

@media only screen and (max-width: 500px) {

    section.services .container{
        padding-bottom: 275px;
    }

    .service-tablets .tablet-white {
        top: 25%;
    }

}


@media only screen and (max-width: 420px) {

    section.services .container{
        padding-bottom: 175px;
    }

    .service-tablets .tablet-white {
        top: 20%;
    }

}


@media only screen and (max-width: 340px) {

    .service-tablets {
            top: 600px;
        }

    section.services .container{
        padding-bottom: 125px;
    }

    .service-tablets .tablet-white {
        top: 15%;
    }

}


@media only screen and (max-width: 300px) {

    .service-tablets {
            top: 700px;
        }
}

/*---------------------------------
    InViewPort
-----------------------------------*/

.inviewport,
.hiddenthis {
    opacity: 0;
}

.visiblethis {
    opacity: 1;
}


/*---------------------------------
    Gallery
-----------------------------------*/

.info .fancybox i{
    font-size: 18px;
    top: -2px;
    position: relative;
}

.filter-mixitup .filter-item {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
    text-align: right;
    background: #f5f5f5;
    display: none;
    vertical-align: top;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.filter-isotope .filter-item,
.filter-mixitup .gap,
.filter-mixitup .filter-item {
    padding: 0px;
    overflow: hidden;
}

.filter-isotope .filter-item img,
.filter-mixitup .filter-item img {
    position: relative;
    z-index: 1;
}

.filter-isotope .filter-item .info,
.filter-mixitup .filter-item .info {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 33, 33, .8);
    z-index: 2;
    display: block;
    opacity: 0;
    top: 0px;
    left: 0px;
}

.filter-isotope .filter-item:hover .info,
.filter-mixitup .filter-item:hover .info {
    opacity: 1;
}

.filter-isotope .filter-item:hover img,
.filter-mixitup .filter-item:hover img {
    -webkit-transform: rotate(10deg) scale(1.5);
    -moz-transform: rotate(10deg) scale(1.5);
    -ms-transform: rotate(10deg) scale(1.5);
    -o-transform: rotate(10deg) scale(1.5);
    transform: rotate(10deg) scale(1.5);
}

.filter-isotope .filter-item .info .btn,
.filter-mixitup .filter-item .info .btn {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    margin: -20px 0 0 -20px;
    position: absolute;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    min-width: 40px;
    background-color: var(--primary-color);
}

.btn.filter {
    background-color: transparent;
}

.btn.filter:hover,
.btn.active.filter {
    background-color: var(--primary-color);
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.filter-categories {
    padding: 0px 15px;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.filter-items {
    padding: 0 15px;
}

.filter-items.full-width {
    padding: 0px 0px;
}




/*---------------------------------
    Isotope Gallery - Masonary Style
-----------------------------------*/


.isotope,
.isotope .isotope-item {
    /* change duration value to whatever you like */
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transition-timing-function: cubic-bezier(.4, 0, .5, 1);
    -moz-transition-timing-function: cubic-bezier(.4, 0, .5, 1);
    transition-timing-function: cubic-bezier(.4, 0, .5, 1);
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    -ms-transition-property: height, width;
    -o-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property:    -moz-transform, opacity;
    -ms-transition-property:     -ms-transform, opacity;
    -o-transition-property:      -o-transform, opacity;
    transition-property:         transform, opacity;
}


/*
.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.isotope,
.isotope .isotope-item {

    -webkit-transition-duration: 5.8s;
    -moz-transition-duration: 5.8s;
    transition-duration: 5.8s;
}
.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}
*/


/*---------------------------------
    Contact
-----------------------------------*/

section.contact {
    position: relative;
    overflow: hidden;
    background-image: url("../themes/jara/assets/img/banner-4.jpg");
    background-repeat: no-repeat;
    /*    background-attachment: fixed;*/
    background-size: cover;
    /*    background-position: center center;*/
}

section.contact .container {
    padding: 150px 0;
}

section.contact.padding-125 .container {
    padding: 125px 0;
}

#response_email {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    width: 100%;
}

form textarea#c_message {
    margin-bottom: 30px;
}

form input.green,
form textarea.green {
    background-image: url('../themes/jara/assets/img/valid-icon.svg');
    background-position: 97% 15px;
    background-repeat: no-repeat;
}

form input,
form textarea {
    background-position: 97% 15px;
}

form input {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 50px;
    padding: 10px;
    margin-bottom: 50px;
}

form textarea {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 150px;
    padding: 10px;
    margin-bottom: 50px;
}

form .btn-primary.btn-block {
    height: 50px;
    line-height: 30px;
    font-size: 18px;
}

input:active,
input:focus,
textarea:active,
textarea:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

.contact-person {
    margin-bottom: 75px;
    display: inline-block;
    width: 100%;
}

.contacts .contact-person:nth-of-type(2) {
    margin-bottom: 0px;
}

.contact-person .pic,
.contact-person .info {
    float: left;
}

.contact-person .pic img {
    float: right;
}

.contact-person .info {
    color: rgba(255, 255, 255, 0.8);
}

.contact-person .info h4 {
    color: #ffffff;
}

.contact-person .info .post {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-person .info div {
    white-space: nowrap;
}

.contact-person .info .social {
    margin-top: 10px;
}

.contact-person .info .social a i {
    color: var(--primary-color);
    font-size: 15px;
    margin-right: 10px;
}

@media only screen and (max-width: 992px) {
    .contact-person {
        margin-top: 75px;
        margin-bottom: 0px;
    }
    .contact-person .pic {
        padding-left: 0px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-person {
        margin-top: 50px;
        margin-bottom: 0px;
    }
    .contact-person .pic {
        padding-left: 0px;
        padding-right: 10px;
    }

    .contact-person .info h4{
        margin-bottom: 5px;
    }
    .contact-person .info .post{
        margin-bottom: 5px;
    }

    .contact-person .info div{
        font-size: 14px;
    }
}

/*---------------------------------
    made for you
-----------------------------------*/

.madeforyou .slider-area #image-slider {
    padding-top: 100px;
}

.section-madefor.bg-primary .heading {
    color: #ffffff;
}

section.section-madefor.bg-primary .headul:after,
section.section-madefor.bg-primary .headul:before {
    background-color: #ffffff;
}

.owl-item li {
    list-style-type: none;
}

.owl-pagination {
    height: 50px;
    text-align: left;
}

.owl-theme .owl-controls .owl-page span {
    display: block;
    width: 30px;
    height: 7px;
    margin: 15px 15px 0 0;
    opacity: 1;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    background: #dddddd;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background-color: var(--primary-color);
    opacity: 1;
}

.owl-carousel .owl-wrapper-outer {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.section-madefor.bg-primary .owl-theme .owl-controls .owl-page span {
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.section-madefor.bg-primary .owl-theme .owl-controls .owl-page.active span,
.section-madefor.bg-primary .owl-theme .owl-controls.clickable .owl-page:hover span {
    background-color: #ffffff;
    opacity: 1;
}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    .madeforyou .slider-area #image-slider {
        padding-top: 50px;
        padding-left: 0px;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {}


/*---------------------------------
    Twitter
-----------------------------------*/

section.twitter {
    background-image: url("../themes/jara/assets/img/banner-3.jpg");
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

section.twitter .main-icon {
    text-align: center;
    padding-bottom: 100px;
}

section.twitter .main-icon i {
    font-size: 36px;
    color: var(--primary-color);
    height: 100px;
    width: 100px;
    line-height: 88px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

section.twitter li .tweet {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    font-weight: normal;
    color: #ffffff;
    padding-bottom: 50px;
}

section.twitter li .tweet_by {
    text-align: center;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
}

section.twitter li .tweet_time {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 90%;
    padding-bottom: 100px;
}

section.twitter .owl-item,
section.twitter li {
    list-style-type: none;
    display: inline-block;
    width: 100%;
}

.owl-theme .owl-controls .owl-buttons div {
    color: var(--primary-color);
    background-color: transparent;
    opacity: 1;
    margin: 0px 10px;
    padding: 0px;
    height: 40px;
}

.owl-theme .owl-controls .owl-buttons div i {
    font-size: 36px;
    color: var(--primary-color);
}

.owl-theme .owl-controls {
    height: 50px;
    margin: 0px;
}

#twitter-carousel{
    padding:0px;
}


@media only screen and (max-width: 768px) {
    section.twitter .main-icon{
        padding-bottom: 75px;
    }

    section.twitter .main-icon i{
        font-size: 28px;
        height: 80px;
        width: 80px;
        line-height: 68px;
    }

    section.twitter li .tweet{
        font-size: 24px;
        line-height: 40px;
        padding-bottom: 25px;
    }

    section.twitter li .tweet_time{
        padding-bottom: 50px;
    }

}

/*---------------------------------
    Clients
-----------------------------------*/

.client {
    min-height: 100px;
    text-align: center;
    position: relative;
}

.client img {
    max-width: 150px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

section.clients{
    position: relative;
    margin-bottom: 125px;
}

section.clients .angled_down_outside{
    width: 100%;
    position: absolute;
    top: 100%;
}

body.horizontal section.clients{
    margin-bottom: 0px;
}

/*----------------------------------
            Pagination             
----------------------------------*/

.blog_centered.blog_pagination,
.product_pagination{
    text-align: center;
}

.product_pagination .pagination,
.blog_pagination .pagination{
    margin: 100px 0 0 0;
}

.pagination > li > a, .pagination > li > span{
    color: #212121;
}

.pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span{
    border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}


.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus,
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
    color: #212121;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}




/*----------------------------------
            Bootstrap Well            
----------------------------------*/

.well{
    border: 0px solid transparent;
    background-color: #f5f5f5;
    box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

/*----------------------------------
            Animation Effects             
----------------------------------*/

.effect-box h4{
    color: #212121;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.effect-box p{
    margin-bottom: 0px;
    color: #757575;
}

.effect-box .anim-wrap{
    background-color: #f5f5f5;
    display: inline-block;
    padding: 25px;
    width: 100%;
}

.effect-box{
    margin-bottom:30px;
}




/*----------------------------------
            Sidebar widgets             
----------------------------------*/

.sidebar-widget{
    padding: 30px;
    background-color: #f5f5f5;
    margin-bottom: 50px;
    width: 100%;
    display: inline-block;   
}

.sidebar-widget h4{
    text-transform: uppercase;
}

.sidebar-widget .headul{
    margin: 7px 0px 20px 0;
}

.sidebar-widget .headul:before{
    margin-left: 0px;
    width: 60px;
    height: 1px;
}

.sidebar-widget .headul:after{
    margin-left: 0px;
        width: 20px;
    height: 3px;
}


/*--------- Category and Archive Widget ------------*/

.sidebar-widget ul{
    list-style-type: none;
    padding-left: 0px;
    margin: 0px;
    display: inline-block;
    width: 100%;
}

.sidebar-widget ul li{
    margin: 0 0 10px 0;
}

.sidebar-widget ul li:last-child{
    margin-bottom: 0px;
}

.sidebar-widget ul li a{
    color: #212121;
}

.sidebar-widget ul li a{
    padding-left: 0px;
}

.sidebar-widget ul li i{
    margin: 0 10px 0px 0;
    font-size: 12px;
    line-height: 22px;
    color: var(--primary-color);
}


/*--------- Posts Widget ------------*/

.posts-widget .pic{
    padding: 0px;
}

.posts-widget .info{
    padding-right: 0px;
}

.posts-widget ul{
    margin-top: 10px;
}

.posts-widget ul li{
    margin-bottom: 20px;
    display: inline-block;
}

.posts-widget .info h4{
    font-size: 16px;
    line-height: 26px;
        height: 52px;
        width: 95%;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        margin-bottom: 10px;
}

.posts-widget .info p{
    margin-bottom: 0px;
}

.posts-widget .info .more{
    font-size: 14px;
}



/*--------- Search Widget ------------*/

.sidebar-widget.search-widget{
    padding: 0px;
    background-color: #f5f5f5;
}

.sidebar-widget.search-widget form{
    width: 100%;
    display: inline-block;
    margin: 0px;
    padding: 0px;
    position: relative;
}
.sidebar-widget.search-widget i{
    position: absolute;
    top: 15px;
    left: 30px;
    z-index: 2;
    font-size: 15px;
    line-height: 18px;
}


.sidebar-widget.search-widget input{
    width: 100%;
    padding: 15px 15px 15px 60px;
    z-index: 1;
    margin:0px;
    color: #212121;
}

.sidebar-widget.search-widget input[type="submit"]{
    visibility: hidden;
    overflow: hidden;
    max-width: 0px;
    max-height: 0px;
    height: 0px;
    width: 0px;
    padding: 0px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 0;
}




/*----------------------------------
            Settings Panel             
----------------------------------*/


.settings-panel,
.settings-panel .toggle{
        box-shadow: 2px 2px 2px rgba(33, 33, 33, 0.3);
    -o-box-shadow: 2px 2px 2px rgba(33, 33, 33, 0.3);
    -ms-box-shadow: 2px 2px 2px rgba(33, 33, 33, 0.3);
    -moz-box-shadow: 2px 2px 2px rgba(33, 33, 33, 0.3);
    -webkit-box-shadow: 2px 2px 2px rgba(33, 33, 33, 0.3);

}

.settings-panel.collapsed{
    margin-left: -180px;
}

.settings-panel{
    padding: 15px 30px 15px 30px;
    position: fixed;
    width: 180px;
    height: auto;
    background: #212121;
    color: #cccccc;
    top: 30%;
    left: 0px;
    z-index: 99;
    display: inline-block;
}

.settings-panel .toggle{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0px;
    right: -50px;
    line-height: 47px;
    color: #cccccc;
    display: block;
    background-color: #212121;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
}

.settings-panel h5{
    font-weight: normal;
    font-size: 14px;
    margin: 0 0 20px 0;
    color: #ccc;
}

.settings-panel .style h5{
    margin: 0 0 10px 0;
}

.settings-panel .style,
.settings-panel .colors{
    display: inline-block;
}

.settings-panel .colors div{
    height: 30px;
    width: 30px;
    margin: 0 10px 10px 0px;
    cursor: pointer;
    background-color: var(--primary-color);
    float: left;
}

.settings-panel .style{
    margin-top: 15px;
    color: #999999;
}

.settings-panel .style div i{
    font-size: 12px;
}

.settings-panel .style div.active,
.settings-panel .style div.active i{
    color: var(--primary-color);
}

.settings-panel .style div:hover,
.settings-panel .style div:hover i{
    color: var(--primary-color);
    cursor: pointer;
}

.settings-panel .colors div i{
    opacity: 0;
    font-size: 12px;
    color: #212121;
    text-align: center;
    width: 30px;
}

.settings-panel .colors div:hover i,
.settings-panel .colors div.active i{
    opacity: 1;
}


/*----------------------------------
            Typography             
----------------------------------*/
.typo-heading{
    text-transform: uppercase;
}

.typo-heading .heading{
    text-align: left;
    margin-bottom: 20px;
}

.typo-text,
.typo-para{
    margin-top: 50px;
 }


/*----------------------------------
        Grid Columns
----------------------------------*/

.ui-columns .panel-body{
    background-color: #f5f5f5;
    padding: 15px;
    display: inline-block;
    width: 100%;
    height: auto;
    color: #757575;
    margin-bottom: 30px;
}

.ui-columns-white .panel-body{
    background-color: #ffffff;
    padding: 15px;
    display: inline-block;
    width: 100%;
    height: auto;
    color: #757575;
    margin-bottom: 30px;
}

/*----------------------------------
            Bootstrap 3 Media Queries             
----------------------------------*/


/*----------------  Mobile First Method  ---------------*/


/* Custom, iPhone Retina */

@media only screen and (min-width: 320px) {}


/* Extra Small Devices, Phones */

@media only screen and (min-width: 480px) {}


/* Small Devices, Tablets */

@media only screen and (min-width: 768px) {}


/* Medium Devices, Desktops */

@media only screen and (min-width: 992px) {}


/* Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {}


/*==========  Non-Mobile First Method  ==========*/


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {}

/* 
    Created on : 8 jun. 2022, 18:01:13
    Author     : David
*/
.mdlist {
    display: block;
    margin: 10px 10px 10px 10px;
    font-size: 82px;
    line-height: 36px;
    margin-bottom: 10px;
    color: var(--primary-color);
    float: left;
}

#cookies-bar {
    position: fixed;
    left: auto;
    bottom: 20px;
    right: 20px;
    max-width: 560px;
    color: black;
    background-color: rgba(235, 235, 235, 0.98);
    z-index: 1000;
    text-align: left;
    padding: 40px;
    border-radius: 5px;
    font-size: 15px;
    box-shadow: 0 0 10px grey;
}


section .bg-overlay {
    background-color: rgba(33, 33, 33, .5) !important;
}

.btn-blog{
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.features .feature {
    margin-bottom: 0px !important;
}

.feature .icon {
    width: 100%;
}

.bg-black ul{
    list-style-type: none;
}

.bg-black a:hover{
    color: var(--primary-color);
}

.feature .icon i {
    font-size: 48px;
    line-height: 55px;
    color: var(--primary-color);
    vertical-align: top;
    width: 80px;
    text-align: center;
    float: none;
    margin-bottom: 20px
}

.feature .info {
    vertical-align: top;
    padding-left: 0px;
}

section.header.header-small .maintext {
    /*padding-top: 10%;*/
}

section.header-parallax .container .logo {
    width: 350px;
    position: absolute;
    left: -65px;
    top: 25px;
}

section.header-parallax.fixed-top .container .logo {
    width: 170px;
    left: auto;
}

section.header-parallax.fixed-top .container .logo {
    /*position: fixed;*/
    top: 4px !important;
/*    z-index: 800;
    padding-top: 0px;
    margin-top: -4px;*/
}

.cssmenu ul ul li a {
    width:185px !important;
    font-size: 12px !important;
}

section .headul.right {
    margin: 50px auto 42px 78%; 
}

section .headul.left {
    margin: 50px 78% 42px auto; 
}

img.rotate-izq{
    transform: rotate(-20deg);
    width: 90%;
    margin-bottom: 100px;
}

img.rotate-dch{
    transform: rotate(20deg);
    width: 90%;
    margin-bottom: 100px;
}

form input, form select {
    margin-bottom: 15px;
}

input[type="radio"], input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.bg-overlay.circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-overlay.circle h3{
    color:#FFFFFF;
}

.pie-wrapper h3 {
    text-align: center;
    vertical-align: middle;
    position: absolute;
    color: #ffffff;
    z-index: 3;
    margin: 0px;
    top: 50%;
    width: 100%;
    margin-top: -33px;
}

.product .info h4 {
    overflow: hidden;
    height: 55px;
}


.pic {
  position: relative;
  width: 100%; /* The size you want */
}
.pic:after {
  content: "";
  display: block;
  padding-bottom: 100%; /* The padding depends on the width, not on the height, so with a padding-bottom of 100% you will get a square */
}

.pic img {
  position: absolute !important; /* Take your picture out of the flow */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; /* Make the picture taking the size of it's parent */
  width: 100%; /* This if for the object-fit */
  height: 100%; /* This if for the object-fit */
  object-fit: cover; /* Equivalent of the background-size: cover; of a background-image */
  object-position: center;
}

.bg-stretch,
.post-over {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.bg-stretch {
	overflow: hidden;
}

.bg-stretch img {
	position: absolute;
}


.main-gallery .mask {
	width: 100%;
	overflow: hidden;
	position: relative;
}


.post-carousel .mask {
	width: 100%;
	overflow: hidden;
	position: relative;
}


.carousel .mask {
	position: relative;
	overflow: hidden;
	margin: 0 0 0 -29px;
}

.main-gallery .slideset {
	width: 99999px;
	float: left;
}

.post-carousel .slideset {
	width: 100% !important;
	white-space: nowrap;
	float: left;
	font-size: 0;
	letter-spacing: -4px;
}

.carousel .slideset {
	width: 100% !important;
	float: left;
	white-space: nowrap;
	letter-spacing: -4px;
}

.main-gallery .slide {
	width: 100%;
	float: left;
	height: 600px;
}

.main-gallery .slide.active {
	z-index: 1;
}

.post-carousel .slide {
	width: 25% !important;
	font-size: 16px;
	letter-spacing: 0;
	display: inline-block;
	vertical-align: top;
	white-space: normal;
	height: 480px;
	position: relative;
	overflow: hidden;
}

.two-cols .main-gallery .slide {
	height: 450px;
}

.twocolumns .main-gallery .slide {
	height: 370px;
}

.carousel .slide {
	width: 371px !important;
	display: inline-block;
	vertical-align: top;
	letter-spacing: 0;
	white-space: normal;
	margin: 0 0 0 29px;
}

#nav .post-over:hover .add-nav:after {
	top: -65px;
}

.nav-posts .post-over h3 {
	margin: -2px 0 13px;
}

.post-carousel .post-over h2,
.post-carousel .post-over h1 {
	font-size: 24px;
	line-height: 28px;
}

.post-over {
	background: rgba(34, 34, 34, .6);
	font: 14px/16px Montserrat, Arial, Helvetica, sans-serif;
	color: #fff;
}

.post-over .box {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
}

.post-over .block {
	display: table-cell;
	vertical-align: middle;
}

.post-over h3,
.post-over h2,
.post-over h1 {
	color: #fff;
	margin: -19px 0 14px;
	width: 100%;
}

.post-over h3 a,
.post-over h2 a,
.post-over h1 a {
	color: #fff;
}

.post-over h3 a:focus,
.post-over h3 a:hover,
.post-over h2 a:focus,
.post-over h2 a:hover,
.post-over h1 a:focus,
.post-over h1 a:hover {
	color: #ffcc39;
	outline: none;
	text-decoration: none;
}

.post-over h2 {
	font-size: 28px;
	line-height: 32px;
	margin: -5px 0 14px;
}

.post-over h3 {
	font-size: 18px;
	line-height: 22px;
	margin: -5px 0 18px;
}

.post-over p {
	margin: 0;
}

.post-over:hover .add-nav:after {
	top: -75px;
}

.post-over:hover .add-nav:before {
	top: 55px;
}

.post-over.quotes:hover .add-nav:after {
	top: -85px !important;
}

.two-cols .post-over:hover .add-nav:before {
	top: 60px;
}

.three-cols .post-over:hover .add-nav:after {
	top: -65px;
}

.location-post .post-over:hover .add-nav:after {
	top: -70px;
}

.fullwidth-post.add .post-over {
	background: none;
}

.location-block .location-col .post-over h2 {
	font-size: 18px;
	line-height: 22px;
}

.main-banner .post-over h1 {
	margin: 0;
}

.main-banner.post .post-over h1 {
	margin: -5px 0 14px;
}

.add-nav {
	margin: 0;
	padding: 15px 0 0;
	color: #fff;
	text-transform: uppercase;
	font: 14px/18px Montserrat, Arial, Helvetica, sans-serif;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	position: relative;
	z-index: 1;
}

.add-nav:before {
	position: absolute;
	content: "";
	top: 0;
	z-index: -1;
	bottom: auto;
	left: -28px;
	right: -28px;
	background: #fff;
}

.add-nav:after {
	position: absolute;
	content: "";
	top: 0;
	z-index: -1;
	bottom: auto;
	left: -28px;
	right: -28px;
	background: #fff;
}

.add-nav:after,
.add-nav:before {
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	height: 1px;
}

.add-nav li {
	padding: 0;
	margin: 0 13px;
	position: relative;
}

.add-nav li:before {
	position: absolute;
	content: "";
	top: 1px;
	bottom: auto;
	left: -19px;
	right: auto;
}

.add-nav li:before {
	font-family: "FontAwesome";
	content: "\f00d";
	font-size: 10px;
}

.add-nav li:first-child:before {
	display: none;
}

.add-nav li a {
	color: #fff;
}

.add-nav li a:focus,
.add-nav li a:hover {
	text-decoration: none;
	color: #ffcc39;
	outline: none;
}

.twocolumns {
	padding-top: 30px;
	padding-bottom: 30px;
}

.twocolumns .main-gallery .slide {
	height: 370px;
}

.twocolumns .banner-gallery {
	height: 370px;
}
.main-gallery {
    position: relative;
    overflow: hidden;
}
.three-cols .banner-gallery {
    height: 360px;
}
.banner-gallery {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.logo img, .nav-posts .banner-gallery img, .post-images .img-box img, .post-images .img-box2 img {
    width: 100%;
    display: block;
    height: auto;
}

@media only screen and (max-width: 767px) {
	section.header-parallax .container .logo {
		width: 170px;	
		position: relative;
		top: 0;
		left: 0;
	}
	
	.carousel .mask {
		margin: 0 0 20px;
	}

	.main-gallery .slide {
		height: 500px;
	}

	.two-cols .main-gallery .slide {
		height: 380px;
	}

	.nav-posts .post-over h3 {
		font-size: 13px;
	}

	.post-over h3,
	.post-over h2,
	.post-over h1 {
		font-size: 16px;
		line-height: 20px;
	}

	.post-over h2 {
		font-size: 16px;
		line-height: 20px;
	}

	.twocolumns {
		padding-bottom: 0;
	}

	.twocolumns .two-cols {
		margin-bottom: 30px;
	}

	.twocolumns .two-cols .add-nav {
		font-size: 8px;
		line-height: 11px;
	}

}

@media only screen and (max-width: 1210px) {
	.main-gallery .slide {
		height: 500px;
	}

	.post-carousel .add-nav {
		font-size: 10px;
	}

	.post-over h3,
	.post-over h2,
	.post-over h1 {
		font-size: 30px;
		line-height: 34px;
	}

	.post-over h2 {
		font-size: 22px;
		line-height: 24px;
	}

	.two-cols .main-gallery .slide {
		height: 380px;
	}
}

@media only screen and (max-width: 1209px) {
	.post-carousel .slide {
		width: 33.33% !important;
	}

	.carousel .slide {
		width: 455px !important;
	}
}



@media only screen and (max-width: 991px) {
	.main-gallery .slide {
		height: 400px;
	}

	.post-carousel .slide {
		width: 50% !important;
	}

	.two-cols .main-gallery .slide {
		height: 320px;
	}

	.twocolumns .main-gallery .slide {
		height: 300px;
	}

	.carousel .slide {
		width: 345px !important;
	}

	.post-carousel .slide {
		width: 100% !important;
	}

	.post-carousel .post-over h2,
	.post-carousel .post-over h1 {
		font-size: 18px;
		line-height: 22px;
	}

	.twocolumns .banner-gallery {
		height: 300px;
	}

	.twocolumns .two-cols .add-nav {
		font-size: 10px;
		line-height: 13px;
	}

	.twocolumns .two-cols .add-nav:before,
	.twocolumns .two-cols .add-nav:after {
		left: 0;
		right: 0;
	}

	.twocolumns .two-cols .add-nav li:before {
		font-size: 8px;
		left: -17px;
		top: 1px;
	}
}

/* #FULL SCREEN MENU NEW ***********************************************/
.fs-header {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(2, 23, 37, 0.95);
  height: 50px;
  width: 100%;
  z-index: 3;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} 
.fs-primary-nav-trigger {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
}
.fs-primary-nav-trigger .fs-menu-icon {
  /* this span is the central line of the menu icon */
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-100%) translateY(-50%);
  -ms-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
  width: 24px;
  height: 2px;
  background-color: #4b4e53;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  /* these are the upper and lower lines in the menu icon */
}
.black-header .fs-primary-nav-trigger .fs-menu-icon {
  background-color: #fff;
}
.fs-primary-nav-trigger .fs-menu-icon::before, .fs-primary-nav-trigger .fs-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #4b4e53;
  right: 0;
  -webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
  -webkit-transition: top .3s, background-color 0s, -webkit-transform .3s;
  transition: top .3s, background-color 0s, -webkit-transform .3s;
  -o-transition: transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s;
  transition: transform .3s, top .3s, background-color 0s, -webkit-transform .3s;
}
.black-header .fs-primary-nav-trigger .fs-menu-icon::before, .black-header .fs-primary-nav-trigger .fs-menu-icon:after {
  background-color: #fff;
}
.fs-primary-nav-trigger .fs-menu-icon::before {
  top: -7px;
}
.fs-primary-nav-trigger .fs-menu-icon::after {
  top: 7px;
}
.fs-primary-nav-trigger .fs-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.black-header .fs-primary-nav-trigger .fs-menu-icon.is-clicked {
  background-color: rgba(255, 255, 255, 0);
}
.fs-primary-nav-trigger .fs-menu-icon.is-clicked::before, .fs-primary-nav-trigger .fs-menu-icon.is-clicked::after {
  background-color: #4b4e53;
}
.black-header .fs-primary-nav-trigger .fs-menu-icon.is-clicked::before, .black-header .fs-primary-nav-trigger .fs-menu-icon.is-clicked::after {
  background-color: #fff;
}
.fs-primary-nav-trigger .fs-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.fs-primary-nav-trigger .fs-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
@media only screen and (min-width: 768px) {
  .fs-primary-nav-trigger {
    /*width: 100px;
    padding-left: 1em;
    background-color: transparent;
    height: 30px;
    line-height: 30px;
    right: 15px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);*/
  }
  .fs-primary-nav-trigger .fs-menu-icon {
    left: auto;
    right: 1em;
    -webkit-transform: translateX(0) translateY(-50%);
    -ms-transform: translateX(0) translateY(-50%);
    transform: translateX(0) translateY(-50%);
  }
}

.fs-primary-nav {
  /* by default it's hidden - on top of the viewport */
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(241 241 241 / 97%);
  z-index: 501;
  text-align: center;
  padding: 50px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* overflow: auto; */
  overflow-x:hidden;
  overflow-y: auto;
  /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
     transition-duration: 0.4s;
}
.fs-primary-nav.fs-nav-black {
  background: rgba(41, 41, 41, 0.96);
}
.fs-primary-nav>ul{
  width:100%;
}
.fs-primary-nav li {
  font-size: 28px;
  font-weight: 300;
  letter-spacing:2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: .2em 0;
}
.fs-primary-nav a {
  display: inline-block;
  padding:.4em 1em;
}
.fs-primary-nav .fs-label {
  color: #848484 !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  font-size: 0.875rem !important;
  margin: 2.4em 0 .8em !important;
}
.fs-primary-nav.fs-nav-black .fs-label {
  color: #848484 !important;
}
.fs-primary-nav.is-visible {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (max-width: 480px) {
  .fs-primary-nav>ul {
    margin-top:20px;
  }
  .fs-primary-nav li {
    font-size: 16px;
    letter-spacing:1px;
    font-weight:400;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .fs-primary-nav {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 1170px) {
  .fs-primary-nav li {
    font-size: 32px;
     margin: .4em 0;
  }
  .fs-primary-nav .fs-label {
    font-size: 16px !important;
    font-size: 1rem !important;
  }
}
.fs-main-content {
  position: relative;
  z-index: 1;
}
.header-side-menu.affix-fix.affix .header-wrapper{
  background:transparent !important;
  -webkit-box-shadow:none !important;
          box-shadow:none !important;
}
.affix-fix .logo-2 {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
}

section.primary{
	color: var(--primary-color);
}

@media only screen and (max-width: 768px){
.h4, h4 {
    font-size: 21px;
    line-height: 26px;
}


