/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}
#swipebox-overlay img {
  border: none !important;
}
#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}
#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(../components/bower/swipebox/src/img/loader.gif) no-repeat center center;
}
#swipebox-bottom-bar,
#swipebox-top-bar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}
#swipebox-bottom-bar {
  bottom: -50px;
}
#swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
}
#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}
#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}
#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(../components/bower/swipebox/src/img/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}
#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}
#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}
#swipebox-next {
  background-position: -78px 13px;
  float: right;
}
#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}
.swipebox-no-close-button #swipebox-close {
  display: none;
}
#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}
.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
  animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
  animation: leftSpring 0.3s;
}
.swipebox-touch #swipebox-container:before,
.swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
  box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
  box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}
@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes rightSpring {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }
  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}
#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}
#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}
body {
  font-size: 16px;
}
body,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
table {
  margin: auto;
}
@media print {
  @page {
    size: 330mm 427mm;
    margin: 14mm;
  }
  a[href]:after {
    content: none !important;
  }
  html,
  body {
    width: 100%;
  }
  html .container,
  body .container {
    width: 1200px;
  }
  .col-print-full,
  .col-print-half,
  .col-print-third {
    display: block;
    float: left;
  }
  .col-print-full {
    width: 100% !important;
  }
  .col-print-half {
    width: 50% !important;
  }
  .col-print-third {
    width: 33.33333333% !important;
  }
  .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.66666666666666%;
  }
  .col-sm-10 {
    width: 83.33333333333334%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666666666666%;
  }
  .col-sm-7 {
    width: 58.333333333333336%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666666666667%;
  }
  .col-sm-4 {
    width: 33.33333333333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.666666666666664%;
  }
  .col-sm-1 {
    width: 8.333333333333332%;
  }
}
.col-xs-five,
.col-sm-five,
.col-md-five,
.col-lg-five,
.col-xs-ten,
.col-sm-ten,
.col-md-ten,
.col-lg-ten {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .xs-pull-left {
    float: left !important;
  }
  .xs-pull-right {
    float: right !important;
  }
  .col-xs-five {
    width: 20% !important;
  }
  .col-xs-ten {
    width: 10% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-pull-left {
    float: left !important;
  }
  .sm-pull-right {
    float: right !important;
  }
  .col-sm-five {
    width: 20% !important;
  }
  .col-sm-ten {
    width: 10% !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .md-pull-left {
    float: left !important;
  }
  .md-pull-right {
    float: right !important;
  }
  .col-md-five {
    width: 20% !important;
  }
  .col-md-ten {
    width: 10% !important;
  }
}
@media (min-width: 1200px) {
  .lg-pull-left {
    float: left !important;
  }
  .lg-pull-right {
    float: right !important;
  }
  .col-lg-five {
    width: 20% !important;
  }
  .col-lg-ten {
    width: 10% !important;
  }
}
html.js .jshidden {
  display: none;
}
#tracy-debug {
  z-index: 9999;
}
#ajax-spinner {
  margin: 15px 0 0 15px;
  padding: 13px;
  background: white url("../artcms/images/spinner.gif") no-repeat 50% 50%;
  font-size: 0;
  z-index: 123456;
  display: none;
}
@media print {
  #ajax-spinner {
    display: none;
  }
}
a[href^="error:"] {
  background: red;
  color: white;
}
form .error {
  color: #D00;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}
.flexible {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.flexible > * {
  width: 100%;
  height: 100%;
}
.dragme {
  cursor: move !important;
}
.image-left {
  display: block;
  margin: 15px auto;
  text-align: center;
  max-width: 100%;
  height: auto !important;
}
@media (min-width: 768px) {
  .image-left {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
.image-right {
  display: block;
  margin: 15px auto;
  text-align: center;
  max-width: 100%;
  height: auto !important;
}
@media (min-width: 768px) {
  .image-right {
    float: left;
    margin: 25px 25px 25px 0;
  }
}
@media (min-width: 768px) {
  .image-right {
    float: right;
    margin: 25px 0 25px 25px;
  }
}
.max-width,
.max-width * {
  max-width: 100%;
}
.hide {
  display: none;
}
.disabled {
  color: #999;
}
.modal-backdrop.fade.in {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
/*

http://cssload.net

<div class="ajaxloader">
	<div class="ajaxloader_1"></div>
	<div class="ajaxloader_2"></div>
	<div class="ajaxloader_3"></div>
	<div class="ajaxloader_4"></div>
	<div class="ajaxloader_5"></div>
	<div class="ajaxloader_6"></div>
	<div class="ajaxloader_7"></div>
	<div class="ajaxloader_8"></div>
</div>
*/
.ajaxloading {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.ajaxloader {
  position: absolute;
  z-index: 450;
  width: 24px;
  height: 24px;
}
.ajaxloader > div {
  position: absolute;
  background-color: #80010b;
  width: 5px;
  height: 5px;
  -moz-border-radius: 4px;
  -moz-animation-name: bounce_circularG;
  -moz-animation-duration: 0.88s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-border-radius: 4px;
  -webkit-animation-name: bounce_circularG;
  -webkit-animation-duration: 0.88s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
  -ms-border-radius: 4px;
  -ms-animation-name: bounce_circularG;
  -ms-animation-duration: 0.88s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: linear;
  -o-border-radius: 4px;
  -o-animation-name: bounce_circularG;
  -o-animation-duration: 0.88s;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: linear;
  border-radius: 4px;
  animation-name: bounce_circularG;
  animation-duration: 0.88s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}
.ajaxloader .ajaxloader_1 {
  left: 0;
  top: 9px;
  -moz-animation-delay: 0.33s;
  -webkit-animation-delay: 0.33s;
  -ms-animation-delay: 0.33s;
  -o-animation-delay: 0.33s;
  animation-delay: 0.33s;
}
.ajaxloader .ajaxloader_2 {
  left: 3px;
  top: 3px;
  -moz-animation-delay: 0.44s;
  -webkit-animation-delay: 0.44s;
  -ms-animation-delay: 0.44s;
  -o-animation-delay: 0.44s;
  animation-delay: 0.44s;
}
.ajaxloader .ajaxloader_3 {
  top: 0;
  left: 9px;
  -moz-animation-delay: 0.55s;
  -webkit-animation-delay: 0.55s;
  -ms-animation-delay: 0.55s;
  -o-animation-delay: 0.55s;
  animation-delay: 0.55s;
}
.ajaxloader .ajaxloader_4 {
  right: 3px;
  top: 3px;
  -moz-animation-delay: 0.66s;
  -webkit-animation-delay: 0.66s;
  -ms-animation-delay: 0.66s;
  -o-animation-delay: 0.66s;
  animation-delay: 0.66s;
}
.ajaxloader .ajaxloader_5 {
  right: 0;
  top: 9px;
  -moz-animation-delay: 0.77s;
  -webkit-animation-delay: 0.77s;
  -ms-animation-delay: 0.77s;
  -o-animation-delay: 0.77s;
  animation-delay: 0.77s;
}
.ajaxloader .ajaxloader_6 {
  right: 3px;
  bottom: 3px;
  -moz-animation-delay: 0.88s;
  -webkit-animation-delay: 0.88s;
  -ms-animation-delay: 0.88s;
  -o-animation-delay: 0.88s;
  animation-delay: 0.88s;
}
.ajaxloader .ajaxloader_7 {
  left: 9px;
  bottom: 0;
  -moz-animation-delay: 0.99s;
  -webkit-animation-delay: 0.99s;
  -ms-animation-delay: 0.99s;
  -o-animation-delay: 0.99s;
  animation-delay: 0.99s;
}
.ajaxloader .ajaxloader_8 {
  left: 3px;
  bottom: 3px;
  -moz-animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
  -ms-animation-delay: 1.1s;
  -o-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
@-moz-keyframes bounce_circularG {
  0% {
    -moz-transform: scale(1);
  }
  100% {
    -moz-transform: scale(0.3);
  }
}
@-webkit-keyframes bounce_circularG {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.3);
  }
}
@-ms-keyframes bounce_circularG {
  0% {
    -ms-transform: scale(1);
  }
  100% {
    -ms-transform: scale(0.3);
  }
}
@-o-keyframes bounce_circularG {
  0% {
    -o-transform: scale(1);
  }
  100% {
    -o-transform: scale(0.3);
  }
}
@keyframes bounce_circularG {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.3);
  }
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 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: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../components/bower/bootstrap/fonts/glyphicons-halflings-regular.eot');
  src: url('../components/bower/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bower/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bower/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bower/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bower/bootstrap/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";
}
/*!
 * Datetimepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Improvements by Sébastien Malot
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datetimepicker {
  padding: 4px;
  margin-top: 1px;
  white-space: normal;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datetimepicker.datetimepicker-rtl {
  direction: rtl;
}
.datetimepicker.datetimepicker-rtl table tr td span {
  float: right;
}
.datetimepicker > div {
  display: none;
}
.datetimepicker.minutes div.datetimepicker-minutes {
  display: block;
}
.datetimepicker.hours div.datetimepicker-hours {
  display: block;
}
.datetimepicker.days div.datetimepicker-days {
  display: block;
}
.datetimepicker.months div.datetimepicker-months {
  display: block;
}
.datetimepicker.years div.datetimepicker-years {
  display: block;
}
.datetimepicker table {
  margin: 0;
}
.datetimepicker table tr td.minute:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datetimepicker table tr td.hour:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datetimepicker table tr td.day:hover {
  background: #eeeeee;
  cursor: pointer;
}
.datetimepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datetimepicker table tr td span:hover {
  background: #eeeeee;
}
.datetimepicker table tr td span.old {
  color: #999999;
}
.datetimepicker .datetimepicker-hours span {
  height: 26px;
  line-height: 26px;
}
.datetimepicker .datetimepicker-minutes span {
  height: 26px;
  line-height: 26px;
}
.datetimepicker th.switch {
  width: 145px;
}
.datetimepicker-inline {
  width: 220px;
}
.datetimepicker-dropdown,
.datetimepicker-dropdown-left {
  top: 0;
  left: 0;
}
[class*="datetimepicker-dropdown"]:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
[class*="datetimepicker-dropdown"]:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
}
[class*="datetimepicker-dropdown-top"]:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
}
[class*="datetimepicker-dropdown-top"]:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
  border-bottom: 0;
}
.datetimepicker-dropdown-bottom-left:before {
  top: -7px;
  right: 6px;
}
.datetimepicker-dropdown-bottom-left:after {
  top: -6px;
  right: 7px;
}
.datetimepicker-dropdown-bottom-right:before {
  top: -7px;
  left: 6px;
}
.datetimepicker-dropdown-bottom-right:after {
  top: -6px;
  left: 7px;
}
.datetimepicker-dropdown-top-left:before {
  bottom: -7px;
  right: 6px;
}
.datetimepicker-dropdown-top-left:after {
  bottom: -6px;
  right: 7px;
}
.datetimepicker-dropdown-top-right:before {
  bottom: -7px;
  left: 6px;
}
.datetimepicker-dropdown-top-right:after {
  bottom: -6px;
  left: 7px;
}
.datetimepicker td,
.datetimepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
.table-striped .datetimepicker table tr td,
.table-striped .datetimepicker table tr th {
  background-color: transparent;
}
.datetimepicker table tr td.old,
.datetimepicker table tr td.new {
  color: #999999;
}
.datetimepicker table tr td.disabled,
.datetimepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datetimepicker table tr td.today,
.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today:hover:hover,
.datetimepicker table tr td.today.disabled:hover,
.datetimepicker table tr td.today.disabled:hover:hover,
.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today:hover.disabled,
.datetimepicker table tr td.today.disabled.disabled,
.datetimepicker table tr td.today.disabled:hover.disabled,
.datetimepicker table tr td.today[disabled],
.datetimepicker table tr td.today:hover[disabled],
.datetimepicker table tr td.today.disabled[disabled],
.datetimepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datetimepicker table tr td.active,
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active:hover:hover,
.datetimepicker table tr td.active.disabled:hover,
.datetimepicker table tr td.active.disabled:hover:hover,
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active:hover.disabled,
.datetimepicker table tr td.active.disabled.disabled,
.datetimepicker table tr td.active.disabled:hover.disabled,
.datetimepicker table tr td.active[disabled],
.datetimepicker table tr td.active:hover[disabled],
.datetimepicker table tr td.active.disabled[disabled],
.datetimepicker table tr td.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datetimepicker .datetimepicker-hours table tr td span.hour_am,
.datetimepicker .datetimepicker-hours table tr td span.hour_pm {
  width: 14.6%;
}
.datetimepicker .datetimepicker-hours fieldset legend,
.datetimepicker .datetimepicker-minutes fieldset legend {
  margin-bottom: inherit;
  line-height: 30px;
}
.datetimepicker table tr td span.disabled,
.datetimepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}
.datetimepicker table tr td span.active,
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active:hover:hover,
.datetimepicker table tr td span.active.disabled:hover,
.datetimepicker table tr td span.active.disabled:hover:hover,
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active:hover.disabled,
.datetimepicker table tr td span.active.disabled.disabled,
.datetimepicker table tr td span.active.disabled:hover.disabled,
.datetimepicker table tr td span.active[disabled],
.datetimepicker table tr td span.active:hover[disabled],
.datetimepicker table tr td span.active.disabled[disabled],
.datetimepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}
.datetimepicker thead tr:first-child th,
.datetimepicker tfoot tr:first-child th {
  cursor: pointer;
}
.datetimepicker thead tr:first-child th:hover,
.datetimepicker tfoot tr:first-child th:hover {
  background: #eeeeee;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i,
.input-group.date .input-group-addon span {
  cursor: pointer;
  width: 14px;
  height: 14px;
}
.datetimepicker .icon-arrow-left {
  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;
}
.datetimepicker .icon-arrow-left:before {
  content: "\e091";
}
.datetimepicker .icon-arrow-right {
  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;
}
.datetimepicker .icon-arrow-right:before {
  content: "\e092";
}
ul.popupmenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.popupmenu li {
  display: block;
  position: relative;
  white-space: nowrap;
}
ul.popupmenu li a {
  display: block;
}
ul.popupmenu li .popupinner,
ul.popupmenu li > ul,
ul.popupmenu li:hover > ul,
ul.popupmenu li.active > ul {
  display: none;
  text-align: left;
  z-index: 500;
  padding: 20px 15px 15px;
}
ul.popupmenu li .popupinner li,
ul.popupmenu li > ul li,
ul.popupmenu li:hover > ul li,
ul.popupmenu li.active > ul li {
  display: block;
}
ul.popupmenu li .popupinner li a,
ul.popupmenu li > ul li a,
ul.popupmenu li:hover > ul li a,
ul.popupmenu li.active > ul li a {
  display: block;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  ul.popupmenu li .popupinner,
  ul.popupmenu li > ul,
  ul.popupmenu li:hover > ul,
  ul.popupmenu li.active > ul {
    position: absolute;
  }
}
ul.popupmenu li.active .popupinner,
ul.popupmenu li.active > ul {
  display: block;
}
@media (min-width: 768px) {
  ul.popupmenu li.active .popupinner,
  ul.popupmenu li.active > ul {
    display: none;
  }
}
@media (min-width: 768px) {
  ul.popupmenu li {
    display: inline-block;
  }
  ul.popupmenu li a {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  ul.popupmenu.collapse {
    display: block;
    visibility: visible;
    height: auto !important;
  }
}
.cookie-law-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 500;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.cookie-law {
  width: 100%;
  background: #f0f0f0;
  padding: 5px 15px 20px;
  border-top: 1px solid #013461;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 120%;
}
.cookie-law .more,
.cookie-law .close {
  display: inline-block;
  background: #013461;
  color: #f0f0f0;
  padding: 4px 6px;
  text-decoration: none;
  margin-top: 5px;
}
/**
 * bxSlider v4.2.5
 * Copyright 2013-2015 Steven Wanderski
 * Written while drinking Belgian ales and listening to jazz

 * Licensed under MIT (http://opensource.org/licenses/MIT)
 */
/** VARIABLES 
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bxslider {
  margin: 0;
  padding: 0;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}
/** THEME
===================================*/
.bx-wrapper {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  background: #fff;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('../components/bower/bxslider-4/dist/images/bx_loader.gif') center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url('../components/bower/bxslider-4/dist/images/controls.png') no-repeat 0 -32px;
}
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
.bx-wrapper .bx-next {
  right: 10px;
  background: url('../components/bower/bxslider-4/dist/images/controls.png') no-repeat -43px -32px;
}
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url('../components/bower/bxslider-4/dist/images/controls.png') -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url('../components/bower/bxslider-4/dist/images/controls.png') -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}
.bx-wrapper {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  left: 0;
  background: transparent;
  margin: 0 auto;
}
.bx-wrapper .bx-loading {
  z-index: 450;
}
.bx-wrapper .bx-controls-direction a {
  z-index: 500;
}
.bx-wrapper img {
  display: inline-block;
}
.bx-wrapper .bxslider > li {
  left: 0;
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-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 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
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 {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  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-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 600;
  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: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 22px;
  margin-bottom: 11px;
}
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: 11px;
  margin-bottom: 11px;
}
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: 19px;
}
h5,
.h5 {
  font-size: 16px;
}
h6,
.h6 {
  font-size: 14px;
}
p {
  margin: 0 0 11px;
}
.lead {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 24px;
  }
}
small,
.small {
  font-size: 87%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.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: #777777;
}
.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: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 11px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 22px;
}
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;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 20px;
  border-left: 5px solid #eeeeee;
}
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: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.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: 22px;
  font-style: normal;
  line-height: 1.42857143;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -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-left: 15px;
  padding-right: 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%;
  }
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .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-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #000000;
  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: #000000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16px;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  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 {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #ffffff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #ffffff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #ffffff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #ffffff;
  bottom: -10px;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.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,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after,
.nav:before,
.nav:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.modal-header:after,
.modal-footer:after,
.nav:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.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;
  }
}
.nav {
  margin-bottom: 0;
  padding-left: 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: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #337ab7;
}
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #dddddd;
}
.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: #eeeeee #eeeeee #dddddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #6e6c6c;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.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 #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    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: #ffffff;
  }
}
.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: #ffffff;
  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 {
  text-align: center;
  margin-bottom: 5px;
}
.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 #dddddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    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: #ffffff;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
}
.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}
.mCustomScrollBox {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: 0;
  direction: ltr;
}
.mCSB_container {
  overflow: hidden;
  width: auto;
  height: auto;
}
.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-left: 30px;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}
.mCSB_scrollTools {
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: .75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}
.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  right: auto;
  left: 0;
}
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}
.mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}
.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}
.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}
.mCSB_scrollTools .mCSB_dragger {
  cursor: pointer;
  width: 100%;
  height: 30px;
  z-index: 1;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  text-align: center;
}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
}
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
}
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonUp {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}
.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}
.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}
.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  height: 100%;
  left: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  margin: 2px auto;
}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  margin: 4px 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
}
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
}
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}
.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}
.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}
.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  margin-right: 0;
  margin-left: 30px;
}
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
}
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
}
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  margin-left: 0;
}
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar {
  -webkit-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -moz-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  -o-transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
  transition: width 0.2s ease-out 0.2s, height 0.2s ease-out 0.2s, margin-left 0.2s ease-out 0.2s, margin-right 0.2s ease-out 0.2s, margin-top 0.2s ease-out 0.2s, margin-bottom 0.2s ease-out 0.2s, opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}
.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
}
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight,
.mCSB_scrollTools .mCSB_buttonUp {
  background-image: url(../components/bower/malihu-custom-scrollbar-plugin/mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: .4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}
.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
}
.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
}
.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
}
.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
}
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover,
.mCSB_scrollTools .mCSB_buttonUp:hover {
  opacity: .75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active,
.mCSB_scrollTools .mCSB_buttonUp:active {
  opacity: .9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}
.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}
.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  height: 16px;
  margin: -1px 0;
}
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
}
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  width: 16px;
  margin: 0 -1px;
}
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px;
}
.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px;
}
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);
  background-repeat: repeat-y;
  opacity: .3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px;
}
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=);
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px;
}
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
}
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}
.mCS-3d-dark.mCSB_scrollTools,
.mCS-3d.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #555555;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical {
  right: 1px;
}
.mCS-3d-thick-dark.mCSB_scrollTools_vertical,
.mCS-3d-thick.mCSB_scrollTools_vertical {
  box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,
.mCS-3d-thick.mCSB_scrollTools_horizontal {
  bottom: 1px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  height: 12px;
  width: auto;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #555555;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-3d-thick-dark.mCSB_scrollTools {
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #777777;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
}
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}
.col-ms-1,
.col-ms-2,
.col-ms-3,
.col-ms-4,
.col-ms-5,
.col-ms-6,
.col-ms-7,
.col-ms-8,
.col-ms-9,
.col-ms-10,
.col-ms-11,
.col-ms-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .col-ms-1,
  .col-ms-2,
  .col-ms-3,
  .col-ms-4,
  .col-ms-5,
  .col-ms-6,
  .col-ms-7,
  .col-ms-8,
  .col-ms-9,
  .col-ms-10,
  .col-ms-11 {
    float: left;
  }
  .col-ms-1 {
    width: 8.33333%;
  }
  .col-ms-2 {
    width: 16.66667%;
  }
  .col-ms-3 {
    width: 25%;
  }
  .col-ms-4 {
    width: 33.33333%;
  }
  .col-ms-5 {
    width: 41.66667%;
  }
  .col-ms-6 {
    width: 50%;
  }
  .col-ms-7 {
    width: 58.33333%;
  }
  .col-ms-8 {
    width: 66.66667%;
  }
  .col-ms-9 {
    width: 75%;
  }
  .col-ms-10 {
    width: 83.33333%;
  }
  .col-ms-11 {
    width: 91.66667%;
  }
  .col-ms-12 {
    width: 100%;
  }
  .col-ms-push-1 {
    left: 8.33333%;
  }
  .col-ms-push-2 {
    left: 16.66667%;
  }
  .col-ms-push-3 {
    left: 25%;
  }
  .col-ms-push-4 {
    left: 33.33333%;
  }
  .col-ms-push-5 {
    left: 41.66667%;
  }
  .col-ms-push-6 {
    left: 50%;
  }
  .col-ms-push-7 {
    left: 58.33333%;
  }
  .col-ms-push-8 {
    left: 66.66667%;
  }
  .col-ms-push-9 {
    left: 75%;
  }
  .col-ms-push-10 {
    left: 83.33333%;
  }
  .col-ms-push-11 {
    left: 91.66667%;
  }
  .col-ms-pull-1 {
    right: 8.33333%;
  }
  .col-ms-pull-2 {
    right: 16.66667%;
  }
  .col-ms-pull-3 {
    right: 25%;
  }
  .col-ms-pull-4 {
    right: 33.33333%;
  }
  .col-ms-pull-5 {
    right: 41.66667%;
  }
  .col-ms-pull-6 {
    right: 50%;
  }
  .col-ms-pull-7 {
    right: 58.33333%;
  }
  .col-ms-pull-8 {
    right: 66.66667%;
  }
  .col-ms-pull-9 {
    right: 75%;
  }
  .col-ms-pull-10 {
    right: 83.33333%;
  }
  .col-ms-pull-11 {
    right: 91.66667%;
  }
  .col-ms-offset-1 {
    margin-left: 8.33333%;
  }
  .col-ms-offset-2 {
    margin-left: 16.66667%;
  }
  .col-ms-offset-3 {
    margin-left: 25%;
  }
  .col-ms-offset-4 {
    margin-left: 33.33333%;
  }
  .col-ms-offset-5 {
    margin-left: 41.66667%;
  }
  .col-ms-offset-6 {
    margin-left: 50%;
  }
  .col-ms-offset-7 {
    margin-left: 58.33333%;
  }
  .col-ms-offset-8 {
    margin-left: 66.66667%;
  }
  .col-ms-offset-9 {
    margin-left: 75%;
  }
  .col-ms-offset-10 {
    margin-left: 83.33333%;
  }
  .col-ms-offset-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .container {
    max-width: 748px;
  }
  .form-horizontal .form-group .control-label {
    text-align: right;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .hidden-ms {
    display: none !important;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .visible-ms {
    display: block !important;
  }
  table.visible-ms {
    display: table !important;
  }
  tr.visible-ms {
    display: table-row !important;
  }
  th.visible-ms,
  td.visible-ms {
    display: table-cell !important;
  }
}
@media (min-width: 768px) {
  header .logo {
    position: absolute;
    top: -30px;
  }
}
@media (max-width: 767px) {
  header .logo {
    max-height: 81px;
  }
}
header .header {
  background: #ffffff;
  margin-bottom: 50px;
}
header .header-line {
  background: #400c1a;
  padding: 14px 0;
}
@media (max-width: 767px) {
  header .header-line .top {
    margin-top: 14px;
  }
}
header .header-line a {
  color: #ffffff;
}
header .register {
  margin-right: 13px;
  padding-left: 38px;
  position: relative;
}
header .register:hover,
header .register:focus {
  text-decoration: none;
  color: #3aaa35;
}
header .register:hover:before,
header .register:focus:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/register-icon-active.svg") no-repeat;
}
@media (min-width: 768px) {
  header .register {
    margin-right: 53px;
  }
}
header .register:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/register-icon.svg") no-repeat;
}
header .sign-in {
  margin-right: 13px;
  padding-left: 38px;
  position: relative;
}
header .sign-in:hover,
header .sign-in:focus {
  text-decoration: none;
  color: #3aaa35;
}
header .sign-in:hover:before,
header .sign-in:focus:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/sign-in-icon-active.svg") no-repeat;
}
@media (min-width: 768px) {
  header .sign-in {
    margin-right: 43px;
  }
}
header .sign-in:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/sign-in-icon.svg") no-repeat;
}
header .language {
  font-weight: bold;
}
header .language span:hover,
header .language span:focus,
header .language .active {
  color: #3aaa35;
  text-decoration: underline;
}
header .language:hover,
header .language:focus {
  text-decoration: none;
}
header .cart {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  padding: 31px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/cart-icon.svg") no-repeat 15px 50% #3aaa35;
}
@media (max-width: 767px) {
  header .cart {
    padding: 12px 5px;
    padding-bottom: 13px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  header .cart {
    background: url("images/cart-icon.svg") no-repeat 2px 50% #3aaa35;
    background-size: 28px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .cart {
    background: url("images/cart-icon.svg") no-repeat 7px 50% #3aaa35;
  }
}
@media (min-width: 768px) {
  header .cart {
    margin-left: 0;
  }
}
header .cart:hover .cart-icon {
  color: #ffffff;
  text-decoration: none;
}
header .cart .cart-icon {
  color: #ffffff;
  font-size: 20px;
  margin-left: 60px;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  header .cart .cart-icon {
    font-size: 14px;
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  header .cart .cart-icon {
    font-size: 16px;
    margin-left: 50px;
  }
}
header .cart .cart-icon > p {
  margin: 0;
}
header nav ul {
  list-style: none;
  padding: 5px 0;
  margin: 0;
  text-align: center;
}
header nav ul li {
  display: inline-block;
  position: relative;
}
header nav ul li a {
  color: #400c1a;
  font-weight: 600;
  padding: 48px 14px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  header nav ul li a {
    padding: 42px 11px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header nav ul li a {
    padding: 40px 4px;
  }
}
@media (max-width: 767px) {
  header nav ul li a {
    padding: 7px 5px;
  }
}
@media (min-width: 768px) {
  header nav ul li a {
    display: inline-block;
  }
}
header nav ul li a:hover,
header nav ul li a:focus {
  color: #3aaa35;
}
header nav ul li.active a {
  color: #3aaa35;
  text-decoration: underline;
}
header nav ul li > ul.second-level,
header nav ul li:hover > ul.second-level,
header nav ul li.active > ul.second-level {
  display: none;
  text-align: left;
  z-index: 500;
  margin: 0;
  padding: 0;
}
header nav ul li > ul.second-level li,
header nav ul li:hover > ul.second-level li,
header nav ul li.active > ul.second-level li {
  display: block;
}
header nav ul li > ul.second-level li a,
header nav ul li:hover > ul.second-level li a,
header nav ul li.active > ul.second-level li a {
  display: block;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  header nav ul li > ul.second-level,
  header nav ul li:hover > ul.second-level,
  header nav ul li.active > ul.second-level {
    position: absolute;
    left: -5px;
    padding-top: 15px;
  }
}
header nav ul li > ul.second-level > li,
header nav ul li:hover > ul.second-level > li,
header nav ul li.active > ul.second-level > li {
  padding: 0;
}
header nav ul li > ul.second-level > li:last-child:after,
header nav ul li:hover > ul.second-level > li:last-child:after,
header nav ul li.active > ul.second-level > li:last-child:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  height: 0;
  width: 0;
  background: none;
}
header nav ul li > ul.second-level > li:after,
header nav ul li:hover > ul.second-level > li:after,
header nav ul li.active > ul.second-level > li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  height: 0;
  width: 0;
  background: none;
}
header nav ul li > ul.second-level > li > a,
header nav ul li:hover > ul.second-level > li > a,
header nav ul li.active > ul.second-level > li > a {
  background: #eee5d8;
  color: #413c3b;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}
header nav ul li > ul.second-level > li > a:after,
header nav ul li:hover > ul.second-level > li > a:after,
header nav ul li.active > ul.second-level > li > a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  height: 0;
  width: 0;
  background: none;
}
header nav ul li > ul.second-level > li > a:hover,
header nav ul li:hover > ul.second-level > li > a:hover,
header nav ul li.active > ul.second-level > li > a:hover,
header nav ul li > ul.second-level > li > a:focus,
header nav ul li:hover > ul.second-level > li > a:focus,
header nav ul li.active > ul.second-level > li > a:focus {
  color: #b98648;
}
header nav ul li > ul.second-level > li.active > a,
header nav ul li:hover > ul.second-level > li.active > a,
header nav ul li.active > ul.second-level > li.active > a {
  color: #b98648;
}
header nav ul li:hover > ul.second-level {
  display: block;
}
header .profil {
  margin-right: 13px;
  margin-left: 13px;
}
header .profil:hover,
header .profil:focus {
  text-decoration: none;
  color: #3aaa35;
}
header .logout {
  margin-right: 13px;
  margin-left: 13px;
}
header .logout:hover,
header .logout:focus {
  text-decoration: none;
  color: #3aaa35;
}
footer {
  font-weight: 300;
  margin-top: 58px;
  padding-top: 54px;
  font-size: 19px;
  background: #400c1a;
  color: #ffffff;
}
footer input[type="text"] {
  color: #400c1a;
  outline: none;
  background: url("images/footer-mail-icon.svg") no-repeat 5px center;
  background-color: white;
  padding-left: 35px;
  border: 0;
  height: 32px;
  width: 72%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  footer input[type="text"] {
    width: 67%;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  footer input[type="text"] {
    width: 100%;
  }
}
footer .input[type="submit"] {
  font-size: 16px;
  padding: 5px 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .input[type="submit"] {
    width: 100%;
  }
}
footer h2 {
  font-weight: 300;
}
footer h2:first-child {
  margin-top: 7px;
}
footer a {
  color: #ffffff;
}
footer .email {
  color: #ffffff;
  text-decoration: underline;
}
footer .email:hover,
footer .email:focus {
  color: #3aaa35;
}
footer ul {
  list-style: none;
  padding-left: 0;
  font-weight: bold;
}
footer ul li {
  margin: 7px 0;
}
footer ul li.active a,
footer ul a:hover {
  color: #3aaa35;
}
footer .company-logo {
  display: inline-block;
}
@media (max-width: 767px) {
  footer .company-logo {
    margin-top: 10px;
  }
}
footer .divider-footer {
  background: url("images/divider-footer.png") no-repeat center;
  background-size: 100% auto;
  height: 17px;
  border: none;
}
footer .copyright {
  font-size: 14px;
  color: #a27b85;
}
footer .copyright a,
footer .copyright a:hover,
footer .copyright a:focus {
  color: #a27b85;
}
footer .register {
  margin-right: 13px;
  padding-left: 38px;
  position: relative;
}
footer .register:hover,
footer .register:focus {
  text-decoration: none;
  color: #3aaa35;
}
footer .register:hover:before,
footer .register:focus:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/register-icon-active.svg") no-repeat;
}
@media (min-width: 768px) {
  footer .register {
    margin-right: 53px;
  }
}
footer .register:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/register-icon.svg") no-repeat;
}
footer .sign-in {
  margin-right: 13px;
  padding-left: 38px;
  position: relative;
}
footer .sign-in:hover,
footer .sign-in:focus {
  text-decoration: none;
  color: #3aaa35;
}
footer .sign-in:hover:before,
footer .sign-in:focus:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/sign-in-icon-active.svg") no-repeat;
}
@media (min-width: 768px) {
  footer .sign-in {
    margin-right: 43px;
  }
}
footer .sign-in:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("images/sign-in-icon.svg") no-repeat;
}
footer .language {
  font-weight: bold;
}
footer .language span:hover,
footer .language span:focus,
footer .language .active {
  color: #3aaa35;
  text-decoration: underline;
}
footer .language:hover,
footer .language:focus {
  text-decoration: none;
  color: #ffffff;
}
footer .bottom {
  margin-bottom: 10px;
}
footer .top {
  margin-top: 7px;
}
footer .profil:hover,
footer .profil:focus {
  text-decoration: none;
  color: #3aaa35;
}
footer .logout:hover,
footer .logout:focus {
  text-decoration: none;
  color: #3aaa35;
}
.filter {
  background: #400c1a;
  padding: 20px;
  font-size: 15px;
}
.filter a {
  color: #4a4645;
}
.filter a label {
  cursor: pointer;
}
.filter a:hover,
.filter a:focus {
  color: #4a4645;
  text-decoration: none;
}
.filter .a {
  color: #be1522;
}
.filter .a:hover,
.filter .a:focus {
  color: #be1522;
}
@media (min-width: 768px) {
  .filter.collapse {
    display: block!important;
    visibility: visible;
    height: auto !important;
  }
}
.filter .filter-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  margin: 15px 0 5px;
}
.filter .filter-label {
  position: relative;
  display: inline-block;
  padding: 5px 25px 5px 10px;
  background: #e6202f;
  margin: 2px;
  color: #fff;
  font-size: 14px;
  transition: 0.2s ease-out;
}
.filter .filter-label:hover,
.filter .filter-label:focus {
  text-decoration: none;
  color: #fff;
  background: #be1522;
}
.filter .filter-label:after {
  content: "";
  background: url("images/filter-cross.png") no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 5px;
}
.filter .remove-filters {
  position: relative;
  display: inline-block;
  padding: 15px 20px 15px 35px;
  margin: 10px 0;
  color: #4a4645;
  text-transform: uppercase;
  font-weight: bold;
  background: #ffffff;
  transition: 0.2s ease-out;
}
.filter .remove-filters:hover,
.filter .remove-filters:focus {
  text-decoration: none;
  color: #be1522;
}
.filter .remove-filters:before {
  content: "";
  background: url("images/filter-cross.png") no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 15px;
}
.filter hr.dotted {
  background: url("images/dotted-hr.png") repeat-x top;
  border-top: 0;
  height: 1px;
  width: 100%;
  margin: 10px 0;
}
.filter .collapse-title {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  color: #4a4645;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  margin: 10px 0;
}
.filter .collapse-title:hover {
  color: #be1522;
  text-decoration: none;
}
.filter .collapse-title:after {
  content: "";
  background: url("images/minus.png") no-repeat;
  width: 11px;
  height: 11px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
}
.filter .collapsed:after {
  content: "";
  background: url("images/plus.png") no-repeat;
  width: 11px;
  height: 11px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
}
.filter input[type="checkbox"] {
  margin-right: 10px;
}
.filter label {
  display: inline-block;
  margin-bottom: 7px;
}
.filter .price-range {
  background: #be1522;
  position: relative;
  height: 1px;
  width: 100%;
  display: inline-block;
  margin: 10px 0 20px;
}
.filter .price-range .left-edge {
  left: 30px;
  background: url("images/price-range-edge.png") no-repeat;
  width: 13px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: -8px;
}
.filter .price-range .right-edge {
  right: 15px;
  background: url("images/price-range-edge.png") no-repeat;
  width: 13px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: -8px;
}
.filter .price-range-text {
  font-size: 14px;
  position: relative;
  margin-bottom: 5px;
}
.filter .price-range-text .right-text {
  position: absolute;
  right: 0;
}
.filter-horizontal {
  background: #e7f7e7;
  padding: 20px;
  font-size: 15px;
}
.filter-horizontal .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: baseline;
  background-color: #801834;
  border-radius: 10px;
}
.filter-horizontal a {
  color: #4a4645;
}
.filter-horizontal a label {
  cursor: pointer;
}
.filter-horizontal a:hover,
.filter-horizontal a:focus {
  color: #4a4645;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .filter-horizontal {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .filter-horizontal.collapse {
    display: block!important;
    visibility: visible;
    height: auto !important;
  }
}
.filter-horizontal .filter-title {
  font-weight: bold;
  font-size: 18px;
  margin: 15px 0 5px;
}
.filter-horizontal .filter-label {
  position: relative;
  display: inline-block;
  padding: 5px 25px 5px 10px;
  background: #e6202f;
  margin: 2px;
  color: #fff;
  font-size: 14px;
  transition: 0.2s ease-out;
}
.filter-horizontal .filter-label:hover,
.filter-horizontal .filter-label:focus {
  color: #fff;
  text-decoration: none;
  background: #be1522;
}
.filter-horizontal .filter-label:after {
  content: "";
  background: url("images/filter-cross.png") no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 5px;
}
.filter-horizontal .remove-filters {
  position: relative;
  display: inline-block;
  padding: 15px 20px 15px 35px;
  margin: 10px 0;
  color: #4a4645;
  text-transform: uppercase;
  font-weight: bold;
  background: #ffffff;
  transition: 0.2s ease-out;
}
.filter-horizontal .remove-filters:hover,
.filter-horizontal .remove-filters:focus {
  text-decoration: none;
  color: #be1522;
}
.filter-horizontal .remove-filters:before {
  content: "";
  background: url("images/filter-cross.png") no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 15px;
}
.filter-horizontal hr.dotted {
  background: url("images/dotted-hr.png") repeat-x top;
  border-top: 0;
  height: 1px;
  width: 100%;
  margin: 10px 0;
}
.filter-horizontal .collapse-title {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  color: #4a4645;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  margin: 10px 0;
}
.filter-horizontal .collapse-title:hover {
  color: #be1522;
  text-decoration: none;
}
.filter-horizontal input[type="checkbox"] {
  margin-right: 6px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-horizontal input[type="checkbox"] {
    margin-right: 5px;
  }
}
.filter-horizontal label {
  display: inline-block;
  margin-bottom: 7px;
}
.filter-horizontal .label {
  margin-bottom: 7px;
  line-height: inherit;
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px) {
  .filter-horizontal .label {
    margin: 10px 0;
    line-height: 33px;
  }
}
.filter-horizontal .price-range {
  background: #be1522;
  position: relative;
  height: 1px;
  width: 100%;
  display: inline-block;
  margin: 10px 0 20px;
}
.filter-horizontal .price-range .left-edge {
  left: 30px;
  background: url("images/price-range-edge.png") no-repeat;
  width: 13px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: -8px;
}
.filter-horizontal .price-range .right-edge {
  right: 15px;
  background: url("images/price-range-edge.png") no-repeat;
  width: 13px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: -8px;
}
.filter-horizontal .price-range-text {
  font-size: 14px;
  position: relative;
  margin-bottom: 5px;
}
.filter-horizontal .price-range-text .right-text {
  position: absolute;
  right: 0;
}
.filter-horizontal .more-filters {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 11px 23px 11px 51px;
  color: #4a4645;
  text-transform: uppercase;
  font-weight: bold;
  background: #ecdfcd;
  transition: 0.2s ease-out;
}
.filter-horizontal .more-filters:hover,
.filter-horizontal .more-filters:focus {
  text-decoration: none;
  color: #be1522;
}
.filter-horizontal .more-filters:before {
  content: "";
  background: url("images/more-filters.png") no-repeat;
  width: 19px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 21px;
}
.filter-horizontal .more-filters.open:before {
  content: "";
  background: url("images/more-filters-upsidedown.png") no-repeat;
  width: 19px;
  height: 10px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 21px;
}
.scrollbar {
  max-height: 160px;
  overflow: auto;
}
.main-catalog-area {
  padding: 15px;
}
.main-catalog-area h1 a,
.main-catalog-area h2 a,
.main-catalog-area h3 a,
.main-catalog-area h4 a,
.main-catalog-area h5 a,
.main-catalog-area h6 a {
  color: #400c1a;
}
.sort-products {
  list-style: none;
  padding-left: 0;
  display: block;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sort-products {
    font-size: 16px;
  }
}
.sort-products li {
  display: block;
}
@media (min-width: 768px), (min-width: 480px) and (max-width: 767px) {
  .sort-products li {
    display: inline-block;
  }
}
.sort-products li a {
  text-transform: uppercase;
  color: #400c1a;
  display: inline-block;
  text-align: center;
  padding: 4px 13px;
  width: 100%;
}
@media (min-width: 480px) and (max-width: 767px) {
  .sort-products li a {
    padding: 10px 2px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sort-products li a {
    padding: 4px 7px;
  }
}
.sort-products li.active a,
.sort-products li a:hover {
  border-bottom: 5px solid #3aaa35;
  color: #400c1a;
  text-decoration: none;
}
.introduce-box {
  position: relative;
  background: url("images/introduce-box.png") no-repeat;
  font-size: 18px;
  color: #ffffff;
  padding: 22px;
  min-height: 450px;
  margin-top: 39px;
}
.introduce-box h3 {
  margin-top: 6px;
  font-size: 22px;
}
.introduce-box .more-btn {
  text-transform: uppercase;
  padding: 18px 42px;
  position: absolute;
  bottom: 37px;
  right: 63px;
  border: 5px solid #ffffff;
  color: #ffffff;
}
.introduce-box .more-btn:hover,
.introduce-box .more-btn:focus {
  background: #3aaa35;
  text-decoration: none;
  border: 5px solid #3aaa35;
}
.bottle-box {
  position: relative;
}
@media (max-width: 767px) {
  .bottle-box {
    margin-bottom: 10px;
  }
}
.bottle-box .hover-bottle-box {
  display: none;
  width: 100%;
  height: 100%;
}
.bottle-box:hover img,
.bottle-box:focus img {
  opacity: 0.2;
  transform: scale(0.7);
  margin: auto;
}
.bottle-box:hover .hover-bottle-box,
.bottle-box:focus .hover-bottle-box {
  color: #ffffff;
  position: absolute;
  display: inline-block;
  background: #3aaa35;
}
@media (min-width: 768px) and (max-width: 991px) {
  .bottle-box:hover .hover-bottle-box,
  .bottle-box:focus .hover-bottle-box {
    padding: 10px;
  }
}
.bottle-box:hover .hover-bottle-box .inner,
.bottle-box:focus .hover-bottle-box .inner {
  width: 85%;
  min-height: 300px;
  margin: auto;
  margin-top: 20px;
  padding-top: 57px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bottle-box:hover .hover-bottle-box .inner,
  .bottle-box:focus .hover-bottle-box .inner {
    padding-top: 7px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bottle-box:hover .hover-bottle-box .inner,
  .bottle-box:focus .hover-bottle-box .inner {
    padding-top: 1px;
    min-height: 0;
    margin-top: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .bottle-box:hover .hover-bottle-box .inner,
  .bottle-box:focus .hover-bottle-box .inner {
    padding-top: 12px;
  }
}
@media (min-width: 768px) {
  .bottle-box:hover .hover-bottle-box .inner,
  .bottle-box:focus .hover-bottle-box .inner {
    border: 3px solid #ffffff;
  }
}
.bottle-box:hover .hover-bottle-box .inner .name,
.bottle-box:focus .hover-bottle-box .inner .name {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bottle-box:hover .hover-bottle-box .inner .name,
  .bottle-box:focus .hover-bottle-box .inner .name {
    margin-bottom: 5px;
    font-size: 19px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bottle-box:hover .hover-bottle-box .inner .name,
  .bottle-box:focus .hover-bottle-box .inner .name {
    margin-top: 1px;
    margin-bottom: 1px;
    font-size: 16px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .bottle-box:hover .hover-bottle-box .inner .name,
  .bottle-box:focus .hover-bottle-box .inner .name {
    margin-bottom: 23px;
  }
}
.bottle-box:hover .hover-bottle-box .inner .price,
.bottle-box:focus .hover-bottle-box .inner .price {
  font-weight: bold;
  font-size: 22px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bottle-box:hover .hover-bottle-box .inner .price,
  .bottle-box:focus .hover-bottle-box .inner .price {
    font-size: 19px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bottle-box:hover .hover-bottle-box .inner .price,
  .bottle-box:focus .hover-bottle-box .inner .price {
    font-size: 16px;
  }
}
.bottle-box:hover .hover-bottle-box .inner .availability,
.bottle-box:focus .hover-bottle-box .inner .availability {
  font-size: 16px;
  font-weight: 300;
}
.bottle-box:hover .hover-bottle-box .inner .view-btn,
.bottle-box:focus .hover-bottle-box .inner .view-btn {
  margin-top: 23px;
  margin-bottom: 78px;
  font-size: 22px;
  font-weight: bold;
  width: 100%;
  color: #3aaa35;
  padding: 8px 0;
  background: #ffffff;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .bottle-box:hover .hover-bottle-box .inner .view-btn,
  .bottle-box:focus .hover-bottle-box .inner .view-btn {
    margin-bottom: 17px;
    font-size: 19px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bottle-box:hover .hover-bottle-box .inner .view-btn,
  .bottle-box:focus .hover-bottle-box .inner .view-btn {
    margin-top: 1px;
    margin-bottom: 1px;
    padding: 0px 0;
    font-size: 16px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .bottle-box:hover .hover-bottle-box .inner .view-btn,
  .bottle-box:focus .hover-bottle-box .inner .view-btn {
    margin-top: 13px;
    margin-bottom: 0px;
  }
}
.blog-post {
  margin-bottom: 10px;
}
.blog-post a {
  color: #400c1a;
}
.blog-post a:hover,
.blog-post a:focus {
  color: #400c1a;
}
.blog-post .more-btn {
  padding: 18px 42px;
  background: #3aaa35;
  color: #ffffff;
}
.blog-post .more-btn:hover,
.blog-post .more-btn:focus {
  background: #33972f;
  text-decoration: none;
  color: #ffffff;
}
.degustation-box {
  position: relative;
  margin-top: 38px;
  background: url("images/degustation-box.png") no-repeat;
  padding: 19px;
  font-weight: bold;
  font-size: 22px;
  color: #ffffff;
}
.degustation-box:hover,
.degustation-box:focus {
  background: url("images/degustation-box-active.png") no-repeat;
  text-decoration: none;
}
@media (max-width: 767px) {
  .degustation-box:hover,
  .degustation-box:focus {
    background: #005c00;
  }
}
.degustation-box p {
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .degustation-box {
    background: #a7a7a7;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .degustation-box {
    padding: 12px;
    font-size: 16px;
  }
}
.degustation-box .inner {
  padding-top: 80px;
  border: 3px solid #ffffff;
}
.product-box {
  padding: 15px;
  border: 1px solid #ffffff;
  transition: 0.2s ease-out;
}
@media (max-width: 767px) {
  .product-box {
    margin-bottom: 10px;
  }
}
.product-box:hover {
  border: 1px solid #400c1a;
}
.product-box:hover .view-product-btn {
  background: #6b142b;
  color: #fff;
  text-decoration: none;
}
.product-box h2,
.product-box h2 a {
  margin: 5px 0;
  color: #400c1a;
  font-size: 16px;
  line-height: 20px;
  height: auto;
  overflow: hidden;
}
.product-box h2:hover,
.product-box h2 a:hover,
.product-box h2:focus,
.product-box h2 a:focus {
  color: #400c1a;
}
.product-box .photo-inner {
  position: relative;
}
.product-box .photo-inner .label-area {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
}
.product-box .photo-inner .new-collection-label {
  background: url("images/new-collection-label.png") no-repeat;
  display: inline-block;
  width: 69px;
  height: 69px;
}
.product-box .photo-inner .new-collection-label2 {
  background: url("images/new-collection-label-two.png") no-repeat;
  display: inline-block;
  width: 69px;
  height: 69px;
}
.product-box .photo-inner .discount-label {
  position: relative;
  display: inline-block;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: #4a4645;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  padding-top: 30px;
}
.product-box .photo-inner .discount-label:after {
  content: "sleva";
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}
.product-box .description {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 20px;
  height: 60px;
  overflow: hidden;
}
.product-box .description p {
  margin-bottom: 0;
}
.product-box .select-area {
  height: 30px;
  margin: 20px 0;
}
.product-box select {
  height: 30px;
  width: 100%;
  border: 1px solid #c6c6c6;
  color: #4a4645;
}
.product-box .availability {
  color: #08a23d;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 5px;
}
.product-box .price {
  color: #be1522;
  font-size: 22px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product-box .price {
    font-size: 18px;
  }
}
.product-box .price-two {
  margin: 20px 0;
  color: #be1522;
  font-size: 22px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .product-box .price-two {
    font-size: 18px;
  }
}
.product-box .old-price {
  text-decoration: line-through;
  font-size: 14px;
  text-align: right;
  margin-bottom: 0;
}
.product-box .view-product-btn {
  position: relative;
  background: #6b142b;
  color: #ffffff;
  display: block;
  padding: 12px 8px;
  text-align: center;
  transition: 0.2s ease-out;
  margin-top: 15px;
}
.product-box .view-product-btn:hover,
.product-box .view-product-btn:focus {
  background: #551023;
  color: #fff;
  text-decoration: none;
}
.product-box .view-product-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 15px;
  background: url("images/arrow-left.png") no-repeat;
  transform: rotate(180deg);
  width: 7px;
  height: 12px;
  display: inline-block;
}
.category-box {
  margin-bottom: 20px;
}
.category-box h2,
.category-box h2 a {
  margin: 5px 0;
  color: #4a4645;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
@media (min-width: 480px) and (max-width: 767px) {
  .category-box h2,
  .category-box h2 a {
    margin-top: 23px;
  }
}
@media (max-width: 767px) {
  .category-box h2,
  .category-box h2 a {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .category-box h2,
  .category-box h2 a {
    line-height: 40px;
  }
}
.category-box .photo-inner {
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .category-box .photo-inner {
    height: 160px;
  }
}
.category-box .photo-inner .label-area {
  right: 15px;
  position: absolute;
  top: 15px;
  width: 70px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .category-box .photo-inner .label-area {
    top: 3px;
    width: 56px;
    right: 5px;
  }
}
.category-box .photo-inner .new-collection-label {
  background: url("images/new-collection-label.png") no-repeat;
  display: inline-block;
  width: 69px;
  height: 69px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .category-box .photo-inner .new-collection-label {
    width: 55px;
    height: 55px;
    background-size: 55px;
  }
}
.category-box .photo-inner .discount-label {
  position: relative;
  display: inline-block;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: #4a4645;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  padding-top: 30px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .category-box .photo-inner .discount-label {
    width: 55px;
    height: 55px;
    font-size: 15px;
    padding-top: 27px;
  }
}
.category-box .photo-inner .discount-label:after {
  content: "sleva";
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .category-box .photo-inner .discount-label:after {
    top: 15px;
    left: 14px;
  }
}
.category-box .view-product-btn {
  position: relative;
  background: #4a4645;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 9px 8px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s ease-out;
  margin-top: 0px;
}
.category-box .view-product-btn:hover,
.category-box .view-product-btn:focus {
  color: #fff;
  text-decoration: none;
  background: #3d3a39;
}
.category-box .description {
  font-size: 16px;
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px) {
  .category-box .description {
    margin-bottom: 0;
  }
}
.detail-box {
  position: relative;
}
.detail-box hr {
  margin-top: 0;
}
.detail-box .label-area {
  position: absolute;
  right: 19px;
  top: 33px;
  width: 70px;
}
.detail-box .label-area-two {
  position: absolute;
  left: 19px;
  top: 33px;
  width: 70px;
}
.detail-box .new-collection-label {
  background: url("images/new-collection-label.png") no-repeat;
  display: inline-block;
  width: 69px;
  height: 69px;
}
.detail-box .discount-label {
  position: relative;
  display: inline-block;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: #4a4645;
  color: #fff;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  padding-top: 30px;
}
.detail-box .discount-label:after {
  content: "sleva";
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}
.detail-box .inner {
  position: relative;
}
.detail-box .inner:before {
  content: "";
  background: url("images/lupa.svg") no-repeat;
  width: 28px;
  height: 27px;
  position: absolute;
  right: 19px;
  top: -45px;
}
.producer-box {
  margin-bottom: 25px;
  position: relative;
}
.producer-box:hover .view-product-btn,
.producer-box:focus .view-product-btn {
  color: #f7f7f3;
  text-decoration: none;
  background: #4a4645;
}
.producer-box .view-product-btn {
  display: table;
  width: 100%;
  background: #f7f7f3;
  color: #4a4645;
  text-decoration: none;
  padding: 5px 18px;
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  transition: 0.2s ease-out;
  margin-top: 0px;
  font-size: 18px;
  height: 64px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .producer-box .view-product-btn {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .producer-box .view-product-btn {
    font-size: 14px;
  }
}
.producer-box .view-product-btn span {
  vertical-align: middle;
  display: table-cell;
}
.vyrobce-logo {
  height: 215px;
  width: 215px;
  border: 1px solid #d8d0c4;
  background: #ffffff;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.banner-photo {
  object-fit: cover;
}
@media (min-width: 1200px) {
  .banner-photo,
  .banner-content {
    height: 514px;
  }
}
.banner-content {
  background: url("images/banner-bg.jpg") no-repeat;
  background-size: cover;
  color: #4a4645;
  font-size: 14px;
  padding: 20px 15px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .banner-content {
    padding: 30px;
  }
}
.banner-content h3 {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  margin: 0 0 20px;
  padding: 15px 0;
  font-size: 18px;
}
@media (min-width: 992px) {
  .banner-content h3 {
    font-size: 24px;
  }
}
.banner-content h3:before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: -25px;
  height: 1px;
  width: 50px;
  display: inline-block;
  background: #4a4645;
}
.banner-content h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-right: -25px;
  height: 1px;
  width: 50px;
  display: inline-block;
  background: #4a4645;
}
.load-more-btn {
  background: #4a4645;
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0;
}
.load-more-btn:hover,
.load-more-btn:focus {
  color: #fff;
  text-decoration: none;
  background: #3d3a39;
}
.seo-description {
  padding: 20px;
  font-size: 16px;
}
.seo-description a {
  color: #be1522;
}
.filter-toggle {
  position: relative;
  cursor: pointer;
  display: inline-block;
  background: #400c1a !important;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  text-transform: uppercase;
  text-align: left;
}
.filter-toggle a {
  color: #fff !important;
  font-size: 18px;
  float: left !important;
}
.filter-toggle a:hover,
.filter-toggle a:focus {
  color: #fff ;
  text-decoration: none;
}
.filter-toggle a:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
  transition: 0.2s ease-out;
}
.filter-toggle.open a:before {
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}
.news-box {
  border-top: 1px solid #400c1a;
  padding: 20px 0;
}
.news-box:last-child {
  border-bottom: 1px solid #400c1a;
}
.news-box h2 {
  margin-top: 0;
}
.news-box .important {
  font-size: 22px;
  font-weight: bold;
}
.news-box .decsription {
  font-size: 18px;
  margin-bottom: 10px;
}
.news-box img {
  margin-bottom: 10px;
}
.view-product-btn {
  position: relative;
  font-size: 19px;
  background: #6b142b;
  color: #ffffff;
  display: block;
  padding: 12px 32px;
  text-align: center;
  transition: 0.2s ease-out;
  margin-top: 15px;
}
.view-product-btn:hover,
.view-product-btn:focus {
  background: #551023;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .view-product-btn {
    width: 100%;
  }
}
.view-product-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 15px;
  background: url("images/arrow-left.png") no-repeat;
  transform: rotate(180deg);
  width: 7px;
  height: 12px;
  display: inline-block;
}
@media (max-width: 767px) {
  .kosik-0-img {
    max-width: 230px;
    max-height: 185px;
  }
}
.cart-nav {
  padding: 0;
  margin-bottom: 10px;
  display: table;
  width: 100%;
}
.cart-nav li {
  position: relative;
  width: 33.3333%;
  height: 54px;
  text-align: left;
  display: table-cell;
  list-style: none;
  text-transform: none;
  vertical-align: middle;
  background: #efeee6;
}
@media (max-width: 767px) {
  .cart-nav li {
    width: 100%;
    display: block;
    margin-bottom: 2px;
  }
}
.cart-nav li span {
  top: 6px;
  padding-left: 17px;
  position: absolute;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  color: #400c1a;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .cart-nav li span {
    padding-left: 8px;
  }
}
.cart-nav li a {
  font-weight: normal;
  color: #400c1a;
  display: block;
  text-decoration: none;
  font-size: 18px;
  top: 3px;
  padding-left: 55px;
  width: 100%;
  height: 100%;
  line-height: 54px;
  position: absolute;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .cart-nav li a {
    padding-left: 33px;
    font-size: 16px;
  }
}
.cart-nav li a:hover {
  color: #4a4645;
  text-decoration: underline;
}
.cart-nav .active {
  background: url("../project/images/cart-nav-button-active.png") no-repeat right center #3aaa35;
}
@media (max-width: 767px) {
  .cart-nav .active {
    background: #3aaa35;
  }
}
.cart-nav .active:last-child {
  background: url("../project/images/cart-nav-button-active-last.png") no-repeat right center #3aaa35;
}
@media (max-width: 767px) {
  .cart-nav .active:last-child {
    background: #3aaa35;
  }
}
.cart-nav .active:first-child {
  background: url("../project/images/cart-nav-button-active.png") no-repeat right center #3aaa35;
}
@media (max-width: 767px) {
  .cart-nav .active:first-child {
    background: #3aaa35;
  }
}
.cart-nav .active span,
.cart-nav .active a,
.cart-nav .active a:hover {
  color: #fff;
}
.cart-nav .visited {
  background: #3aaa35;
}
.cart-nav .visited span,
.cart-nav .visited a,
.cart-nav .visited a:hover {
  color: #fff;
}
.cart-nav .visited:first-child {
  background: #3aaa35;
}
.cart-nav .last {
  background: url("../project/images/cart-nav-button-last.png") no-repeat right center #efeee6;
}
@media (max-width: 767px) {
  .cart-nav .last {
    background: #efeee6;
  }
}
.basket {
  display: table;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.basket .a {
  color: #400c1a;
  text-decoration: none;
}
.basket .a:hover,
.basket .a:focus {
  color: #400c1a;
  text-decoration: underline;
}
.basket thead tr th {
  text-transform: none;
  border-bottom: 1px solid #4a4645;
  padding: 9px;
  font-size: 15px;
}
@media (min-width: 1200px) {
  .basket thead tr th {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .basket thead tr th {
    padding: 5px;
    font-size: 14px;
  }
}
.basket tbody tr {
  border-bottom: 1px solid #b7b5b5;
}
.basket tbody tr td {
  padding: 8px;
  font-size: 14px;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px) {
  .basket tbody tr td {
    padding: 1px;
  }
}
.basket tbody tr td:nth-child(3),
.basket tbody tr td:nth-child(4),
.basket tbody tr td:nth-child(5) {
  width: 17%;
}
@media (max-width: 767px) {
  .basket tbody tr td:nth-child(3),
  .basket tbody tr td:nth-child(4),
  .basket tbody tr td:nth-child(5) {
    width: 13%;
  }
}
.basket tbody tr td:first-child {
  width: 14%;
}
.basket tbody tr td:last-child {
  width: 13%;
}
.basket tbody tr td:nth-child(2) {
  width: 32%;
}
@media (max-width: 767px) {
  .basket tbody tr td:nth-child(2) {
    width: 37%;
  }
}
@media (max-width: 767px) {
  .basket tbody tr td {
    padding: 5px;
  }
}
.basket .left {
  text-align: left;
}
@media (max-width: 767px) {
  .basket .left {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .basket .center {
    display: block;
    text-align: center;
  }
}
.basket .cislo {
  font-size: 18px;
  color: #be1522;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .basket .cislo {
    font-size: 14px;
  }
}
.basket .input-number {
  width: 55px;
  border: 1px solid #9d9b9a;
  height: 34px;
  margin: 0 4px;
  text-align: center;
  font-weight: normal;
  -webkit-appearance: none;
  border-radius: 0;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px) {
  .basket .input-number {
    margin: 0px;
  }
}
@media (max-width: 767px) {
  .basket .input-number {
    margin-bottom: 5px;
  }
}
.basket .amount-minus {
  background: url("../project/images/table-minus.png") no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 15px;
  height: 34px;
}
.basket .amount-plus {
  background: url("../project/images/table-plus.png") no-repeat;
  vertical-align: middle;
  display: inline-block;
  width: 15px;
  height: 34px;
}
.basket-sum {
  display: table;
  text-transform: none;
  margin: 20px 0;
  font-size: 15px;
  width: 100%;
}
.basket-sum > div {
  padding-bottom: 10px;
}
.basket-sum span:first-child {
  float: left;
  width: 40%;
}
.basket-sum span:nth-child(2) {
  float: right;
  text-align: right;
  color: #be1522;
}
.basket-sum hr {
  margin-top: 0px;
  margin-bottom: 16px;
  border: 1px solid #400c1a;
}
.basket-sum .indentation {
  margin-top: 55px;
}
.basket-sum .sum {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 0;
}
.basket-sum .sum span:nth-child(2) {
  float: right;
  text-align: right;
  color: #400c1a;
}
.checkbox {
  margin-right: 7px;
}
.info-table {
  width: 100%;
}
.info-table tr td {
  padding: 5px;
}
.info-table tr td:first-child {
  width: 35%;
}
.checkout {
  font-size: 17px;
  color: #400c1a;
  display: inline-block;
  line-height: 43px;
  margin-left: 6px;
  margin-right: 29px;
}
.lock {
  position: relative;
  top: -3px;
}
.address {
  margin-bottom: 30px;
  display: table;
  width: 100%;
}
.address tr {
  border-top: 1px solid #8e8e8e;
  border-bottom: 1px solid #8e8e8e;
}
.address td {
  padding: 17px 8px;
  padding-left: 17px;
}
.address td:first-child {
  width: 55%;
}
.address td:nth-child(2) {
  width: 45%;
}
.left-menu {
  padding: 20px;
  background: #681b30;
}
.left-menu .menu-heading {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.left-menu hr.dotted {
  background: url("images/dotted-hr.png") repeat-x top;
  border-top: 0;
  height: 1px;
  width: 100%;
  margin: 25px 0;
  margin-bottom: 20px;
}
.left-menu .hr {
  margin: 25px 0;
  border-top: 1px solid #ffffff;
}
.left-menu .sort {
  list-style: none;
  padding-left: 0;
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .left-menu .sort {
    display: table;
    width: 100%;
  }
}
.left-menu .sort li {
  display: block;
}
@media (min-width: 992px) {
  .left-menu .sort li {
    display: table-cell;
    border-bottom: 2px solid #d4a056;
  }
}
.left-menu .sort li a {
  color: #ffffff;
  font-weight: bold;
  background: #f7f7f3;
  display: inline-block;
  padding: 8px 13px;
  width: 100%;
  font-size: 15px;
}
.left-menu .sort li.active a,
.left-menu .sort li a:hover {
  background: #d4a056;
  color: #ffffff;
  text-decoration: none;
}
.left-menu .first-level {
  margin: 0;
  padding: 0;
  font-size: 20px;
}
.left-menu .first-level > li {
  display: inline-block;
  width: 100%;
}
.left-menu .first-level > li > a {
  color: #ffffff;
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  font-weight: bold;
}
.left-menu .first-level > li > a:hover,
.left-menu .first-level > li > a:focus {
  text-decoration: none;
  font-weight: bold;
}
.left-menu .first-level > li.active > a {
  text-decoration: none;
  font-weight: bold;
}
.left-menu .second-level {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
.left-menu .second-level > li {
  display: inline-block;
  width: 100%;
}
.left-menu .second-level > li > a {
  color: #ffffff;
  display: inline-block;
  width: 100%;
  padding: 7px 0;
  font-weight: normal;
}
.left-menu .second-level > li > a:hover,
.left-menu .second-level > li > a:focus {
  text-decoration: none;
  font-weight: bold;
}
.left-menu .second-level > li.active > a {
  text-decoration: none;
  font-weight: bold;
}
.left-menu .third-level {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.left-menu .third-level > li {
  display: inline-block;
  width: 100%;
}
.left-menu .third-level > li > a {
  color: #ffffff;
  display: inline-block;
  width: 100%;
  padding: 5px 15px;
  padding-bottom: 0;
  font-weight: normal;
}
.left-menu .third-level > li > a:before {
  content: "• ";
  font-size: 23px;
}
.left-menu .third-level > li > a:hover,
.left-menu .third-level > li > a:focus {
  text-decoration: none;
  color: #dfab5c;
}
.left-menu .third-level > li > a:hover:before,
.left-menu .third-level > li > a:focus:before {
  color: #ffffff;
  content: "• ";
  font-size: 23px;
}
.left-menu .third-level > li.active > a {
  text-decoration: none;
  color: #dfab5c;
}
.left-menu .third-level > li.active > a:before {
  color: #ffffff;
  content: "• ";
  font-size: 23px;
}
.left-menu .four-level {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.left-menu .four-level > li {
  display: inline-block;
  width: 100%;
}
.left-menu .four-level > li > a {
  color: #ffffff;
  display: inline-block;
  width: 100%;
  padding: 5px 27px;
  font-weight: normal ;
}
.left-menu .four-level > li > a:before {
  margin-right: 4px;
  color: #ffffff;
  content: "-";
}
.left-menu .four-level > li > a:hover,
.left-menu .four-level > li > a:focus {
  text-decoration: none;
  color: #dfab5c;
}
.left-menu .four-level > li > a:hover:before,
.left-menu .four-level > li > a:focus:before {
  margin-right: 4px;
  color: #ffffff;
  content: "-";
}
.left-menu .four-level > li.active > a {
  text-decoration: none;
  color: #dfab5c;
}
.left-menu .four-level > li.active > a:before {
  margin-right: 4px;
  color: #4a4645;
  content: "-";
}
.xs-submenu .first-level {
  background: #681b30;
  padding: 15px;
}
.xs-submenu .first-level a {
  color: #ffffff;
  padding: 5px 0;
  display: block;
}
.xs-submenu .first-level a:last-child {
  font-size: 17px;
  font-weight: bold;
  margin-top: 20px;
}
.xs-submenu .second-level {
  padding: 15px;
  background: #681840;
  list-style: none;
  font-size: 18px;
}
.xs-submenu .second-level li {
  margin: 10px 0;
}
.xs-submenu .second-level li a {
  color: #ffffff;
  padding: 6px 0;
  display: block;
}
.modal .close {
  cursor: pointer;
  padding: 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  background: none;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
::selection {
  background: #4a4645;
  color: #fff;
}
::-moz-selection {
  background: #4a4645;
  color: #fff;
}
.alerts .alert {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  color: #252525;
}
.alerts .alert-info {
  background: #69bdf2;
}
.alerts .alert-danger {
  background: #f26976;
}
.alerts .alert-success {
  background: #86f297;
}
body {
  font-size: 16px;
  background: #ffffff;
}
.table {
  overflow-x: auto;
  display: block;
}
ul.slideshow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.slideshow > li:nth-child(n+2) {
  display: none;
}
.wf-active body,
.wf-active body h1,
.wf-active body h2,
.wf-active body h3,
.wf-active body h4,
.wf-active body h5,
.wf-active body h6 {
  font-family: 'Signika', sans-serif;
}
@media (max-width: 767px) {
  .content-container {
    padding-right: 1px;
    padding-left: 1px;
  }
}
.toggle-button {
  cursor: pointer;
  display: inline-block;
  background: #be1522;
  padding: 10px;
  height: 45px;
}
.toggle-button a {
  color: #fff;
  float: right;
  padding-top: 1px;
  padding-bottom: 0;
  font-size: 18px;
}
.toggle-button a:hover {
  color: #fff;
  text-decoration: none;
}
.toggle-button .toggle-icon {
  display: inline-block;
  width: 28px;
  height: 20px;
  position: relative;
  float: left;
  margin-top: 2px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.toggle-button .toggle-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.toggle-button .toggle-icon span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.toggle-button .toggle-icon span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.toggle-button .toggle-icon span:nth-child(3) {
  top: 18px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.toggle-button.open .toggle-icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  left: 4px;
}
.toggle-button.open .toggle-icon span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.toggle-button.open .toggle-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 4px;
}
.toggle-search {
  cursor: pointer;
  display: inline-block;
  background: url("images/search-icon.svg") no-repeat center center #ffffff;
  width: 45px;
  margin-left: 5px;
  height: 45px;
}
.toggle-search a {
  color: #fff;
  float: right;
}
.toggle-search a:hover {
  color: #fff;
}
.popup-toggle {
  width: 100%;
  padding: 15px 0px;
  color: #ffffff;
  text-align: right;
}
.icon-bar {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}
@media (min-width: 768px) {
  #search.collapse {
    display: block;
    visibility: visible;
    height: auto !important;
  }
}
.photogallery img {
  margin-bottom: 10px;
}
.more-photos {
  position: relative;
}
.more-photos .number {
  position: absolute;
  right: 0;
  height: 100%;
  background: rgba(224, 224, 221, 0.5);
  color: #4a4645;
  font-size: 24px;
  font-weight: bold;
  width: 30%;
  padding-top: 25%;
  text-align: center;
}
@media (max-width: 767px) {
  .more-photos .number {
    font-size: 20px;
  }
}
.more-photos .number:hover {
  text-decoration: none;
  color: #4a4645;
  background: rgba(239, 216, 171, 0.5);
}
.more-photos .number:focus {
  text-decoration: none;
}
.link {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 300;
  background: transparent url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7") repeat 0 0;
}
.star {
  color: #d7556d;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"] {
  border: 1px solid #400c1a;
  padding: 5px;
  height: 33px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
  outline: none;
}
select {
  border: 1px solid #400c1a;
  padding: 5px;
  height: 33px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
select:focus {
  outline: none;
}
textarea {
  border: 1px solid #400c1a;
  padding: 5px;
  margin-bottom: 10px;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  resize: vertical;
}
textarea:focus {
  outline: none;
}
.input[type="submit"] {
  background: #3aaa35;
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  border: none;
  padding: 11px 32px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.input[type="submit"]:hover,
.input[type="submit"]:focus {
  color: #fff;
  text-decoration: none;
  background: #33972f;
}
@media (max-width: 767px) {
  .input[type="submit"] {
    width: 100%;
    padding: 11px 39px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .big {
    padding: 11px 100px !important;
  }
}
.label {
  line-height: 33px;
}
.small-text {
  font-size: 14px;
}
.small-text .a {
  text-decoration: none;
}
.small-text .a:hover,
.small-text .a:focus {
  text-decoration: underline;
}
.full-width {
  width: 100%;
}
.light-bg {
  background: #f7f7f3;
}
.cream-bg {
  background: #f1e7da;
}
.hr-cream {
  border-top: 1px solid #efeee6;
}
.vyrobce-page .cream-bg {
  color: #524049;
}
.vyrobce-page .cream-bg .h1 {
  color: #524049;
  margin-top: 15px;
}
.vyrobce-page .cream-bg .hr {
  margin-bottom: 15px;
  margin-top: 0px;
  width: 218px;
}
.vyrobce-page .hr-cream {
  margin-bottom: 0;
}
.kontakt-page .a {
  text-decoration: none;
}
.kontakt-page .a:hover,
.kontakt-page .a:focus {
  text-decoration: underline;
}
main {
  background: #ffffff;
  color: #400c1a;
}
main h1 {
  font-size: 36px;
  font-weight: 600;
}
.gray-bg {
  background: #f7f7f3;
}
.font-normal {
  font-weight: normal;
}
.hr {
  margin: 25px 0;
  border-top: 1px solid #400c1a;
}
.margin-top {
  margin-top: 0;
}
.margin-left {
  margin-left: 15px;
}
.border {
  border: 1px solid #808080;
}
.padding-top-none {
  padding-top: 0;
}
.padding-top-small {
  padding-top: 14px;
}
.padding-right-small {
  padding-right: 18px;
}
.padding-top-big {
  padding-top: 34px;
}
.margin-big {
  margin-top: 34px;
}
.margin-left-big {
  margin-left: 42px;
}
.margin-left-big-two {
  margin-left: 42px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .margin-left-big-two {
    margin-left: 0;
  }
}
.errors {
  color: #d4566e;
  background: #fbeef0;
  padding: 20px;
  font-weight: 400;
  font-size: 14px;
}
.errors li {
  list-style: none;
}
.success {
  color: #3aaa35;
  background: #e9f6ed;
  padding: 20px;
  font-weight: 400;
  font-size: 14px;
}
.success li {
  list-style: none;
}
.inline-block {
  display: inline-block;
}
.vertical-middle {
  vertical-align: middle;
}
.img {
  padding-right: 11px;
}
.black-btn {
  padding: 18px 25px;
  font-size: 16px;
  position: relative;
  background: #3aaa35;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 767px) {
  .black-btn {
    width: 100%;
  }
}
.black-btn:hover,
.black-btn:focus {
  color: #fff;
  text-decoration: none;
  background: #33972f;
}
.a {
  color: #be1522;
}
.a:hover,
.a:focus {
  color: #be1522;
}
@media (min-width: 768px) {
  .padding-left {
    padding-left: 5px;
  }
}
.margin-right {
  margin-right: 30px;
}
.margin-bottom {
  margin-bottom: 11px;
}
.text-normal {
  text-transform: none;
}
.video {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.video iframe {
  width: 100%;
  height: 560px;
}
@media (max-width: 767px) {
  .video iframe {
    height: auto;
  }
}
.h4 {
  font-size: 16px;
}
.detail-bg {
  font-weight: 400;
  background: #ffffff;
  border: 1px solid #400c1a;
  min-height: 393px;
}
.detail-bg > .content {
  padding: 28px;
}
.detail-bg .heading {
  padding: 2px 28px;
  background: #400c1a;
}
.detail-bg .heading h4 {
  color: #3aaa35;
}
@media (min-width: 768px) and (max-width: 991px) {
  .detail-bg label {
    font-size: 16px;
  }
}
.detail-bg textarea {
  height: 110px;
  resize: vertical;
}
.detail-bg .mandatory {
  color: #3aaa35;
}
.detail-bg-two {
  background: url("images/detail-bg-two.png") no-repeat;
  min-height: 462px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .detail-bg-two label {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .detail-bg-two {
    background: #dfab5c;
  }
}
.detail-bg-two textarea {
  height: 126px;
  resize: vertical;
  border: none;
}
.detail-bg-two input[type="text"],
.detail-bg-two input[type="email"],
.detail-bg-two input[type="number"],
.detail-bg-two input[type="tel"],
.detail-bg-two input[type="password"],
.detail-bg-two select {
  border: none;
}
.detail-bg-two .gray-txt {
  color: #6e6c6c;
}
.dotazy h4 {
  margin-top: 0;
}
.dotazy .dotaz {
  padding: 25px;
}
@media (min-width: 768px) {
  .dotazy .dotaz > .row > .col-lg-10,
  .dotazy .dotaz > .row .col-md-9,
  .dotazy .dotaz > .row .col-sm-8 {
    padding-left: 44px;
  }
}
.dotazy .dotaz .date {
  font-size: 19px;
}
.dotazy .odpoved {
  background: #ebebeb;
  padding: 25px;
}
@media (min-width: 768px) {
  .dotazy .odpoved > .row > .col-lg-10,
  .dotazy .odpoved > .row .col-md-9,
  .dotazy .odpoved > .row .col-sm-8 {
    padding-left: 44px;
  }
}
.dotazy .odpoved h4:after {
  content: "";
  margin-right: 18px;
  background: url("images/logo-prodoto-small.svg") no-repeat;
  width: 58px;
  height: 60px;
  display: block;
  vertical-align: middle;
  margin-top: 14px;
}
.vyhody {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vyhody li {
  margin-bottom: 10px;
  color: #2bab4f;
}
.vyhody li:before {
  content: "";
  margin-right: 13px;
  background: url("images/green-plus.png") no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.nevyhody {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nevyhody li {
  margin-bottom: 10px;
  color: #d4566e;
}
.nevyhody li:before {
  content: "";
  margin-right: 13px;
  background: url("images/red-minus.png") no-repeat;
  width: 15px;
  height: 1px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.move {
  padding-top: 7px;
}
.move-two {
  padding-top: 21px;
}
.move-three {
  padding-top: 16px;
}
.font-bold {
  font-weight: bold;
}
.font-light {
  font-weight: 300;
}
.detail-page {
  font-weight: 300;
  background: #FFFFFF;
}
.detail-page h1 {
  font-weight: 300;
}
.detail-page .back-arrow-btn {
  color: #400c1a;
  text-decoration: none;
}
.detail-page .back-arrow-btn:hover,
.detail-page .back-arrow-btn:focus {
  color: #b88449;
}
.detail-page a {
  color: #be1522;
}
.detail-page a:hover,
.detail-page afocus {
  color: #be1522;
}
.detail-page .hr-cream {
  margin-top: 0;
}
.detail-page .img-perdomire {
  margin-right: 40px;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.detail-page .table-vlastnosti {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 0;
  margin-right: 0;
  font-size: 13px;
}
@media (min-width: 1200px), (min-width: 768px) and (max-width: 991px) {
  .detail-page .table-vlastnosti {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .detail-page .table-vlastnosti {
    overflow-x: auto;
    display: block;
  }
}
.detail-page .table-vlastnosti tr th,
.detail-page .table-vlastnosti tr td {
  padding: 9px;
  text-align: center;
  border: 1px solid #c8c7c7;
}
.detail-page .table-vlastnosti tr th {
  text-transform: uppercase;
  background: #f7f7f3;
}
.detail-page .description {
  font-size: 16px;
  margin-bottom: 38px;
}
.detail-page .description a {
  text-decoration: underline;
}
.detail-page .product-box h2 a:hover,
.detail-page .product-box h2 a:focus {
  color: #4a4645;
}
.detail-page .gray-bg {
  margin-bottom: 20px;
  padding: 20px;
}
.detail-page .gray-bg .price {
  font-size: 25px;
  line-height: 30px;
  font-weight: bold;
  margin: 0;
  color: #3aaa35;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .detail-page .gray-bg .price {
    display: inline-block;
  }
}
.detail-page .gray-bg .old-price {
  font-size: 18px;
  font-weight: 100;
  color: #be1522;
  text-decoration: line-through;
  margin-right: 13px;
  margin-top: 13px;
  margin-bottom: 3px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .detail-page .gray-bg .old-price {
    display: inline-block;
  }
}
.detail-page .gray-bg .availability {
  color: #3aaa35;
  text-align: left;
}
@media (min-width: 768px) {
  .detail-page .gray-bg .availability {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .detail-page .gray-bg .availability {
    margin-top: 15px;
  }
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px) {
  .detail-page .gray-bg .availability span {
    display: block;
  }
}
.detail-page .gray-bg .availability-two {
  color: #3aaa35;
  margin-top: 7px;
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px) {
  .detail-page .gray-bg .availability-two span {
    display: block;
  }
}
.detail-page .gray-bg .right {
  text-align: left;
}
@media (min-width: 768px) {
  .detail-page .gray-bg .right {
    text-align: right;
  }
}
.detail-page .gray-bg .input {
  position: relative;
  width: 58px;
  height: 23px;
  border: 1px solid #400c1a;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin: 0 15px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .detail-page .gray-bg .input {
    width: 85%;
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .detail-page .gray-bg .input {
    height: 33px;
  }
}
.detail-page .gray-bg .minus {
  background: url("images/input-minus.png") no-repeat;
  width: 11px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
}
.detail-page .gray-bg .plus {
  background: url("images/input-plus.png") no-repeat;
  width: 16px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
}
.detail-page .gray-bg select {
  width: 87px;
  margin-left: 18px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .detail-page .gray-bg select {
    margin-left: 0;
    width: 100%;
    margin: 10px 0;
  }
}
.detail-page .gray-bg .select {
  width: 87px;
  margin-left: 18px;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .detail-page .gray-bg .select {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .detail-page .gray-bg .select {
    margin-left: 0;
    width: 100%;
  }
}
.detail-page .gray-bg .select-two {
  width: 87px;
  margin-top: 33px;
  margin-left: 18px;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .detail-page .gray-bg .select-two {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .detail-page .gray-bg .select-two {
    margin-top: 43px;
  }
}
@media (max-width: 767px) {
  .detail-page .gray-bg .select-two {
    width: 100%;
    margin-top: 33px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
.detail-page .buy {
  background: #3aaa35;
  margin-bottom: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  display: inline-block;
  padding: 17px 103px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}
.detail-page .buy:hover,
.detail-page .buy:focus {
  color: #fff;
  text-decoration: none;
  background: #33972f;
}
@media (max-width: 767px) {
  .detail-page .buy {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .detail-page .buy {
    float: right;
  }
}
.detail-page .ikony {
  margin-bottom: 30px;
}
.detail-page .ikony a {
  display: table;
  margin-bottom: 19px;
}
.detail-page .ikony a:focus {
  outline: none;
}
.detail-page .ikony a:hover {
  text-decoration: none;
}
.detail-page .ikony a:hover .otaznik {
  background: url("images/otaznik.png") no-repeat center #4a4645;
}
.detail-page .ikony .otaznik {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url("images/otaznik.png") no-repeat center #c6c0bf;
  margin-left: 4px;
}
.detail-page .ikony .otaznik:hover {
  background: url("images/otaznik.png") no-repeat center #4a4645;
}
.detail-page .ikony .p {
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
  line-height: 15px;
  color: #400c1a;
}
.detail-page .ikony .img {
  margin-right: 3px;
}
.detail-page .table-vlastnosti {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 0;
  margin-right: 0;
  font-size: 13px;
}
@media (min-width: 1200px), (min-width: 768px) and (max-width: 991px) {
  .detail-page .table-vlastnosti {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .detail-page .table-vlastnosti {
    overflow-x: auto;
    display: block;
  }
}
.detail-page .table-vlastnosti tr th,
.detail-page .table-vlastnosti tr td {
  padding: 9px;
  text-align: center;
  border: 1px solid #c8c7c7;
}
.detail-page .table-vlastnosti tr th {
  text-transform: uppercase;
  background: #f7f7f3;
}
.detail-page .table-varianty {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  font-size: 14px;
}
.detail-page .table-varianty a {
  color: #4a4645;
}
.detail-page .table-varianty a label:hover {
  cursor: pointer;
}
.detail-page .table-varianty a:hover,
.detail-page .table-varianty a:focus {
  color: #4a4645;
  text-decoration: none;
}
.detail-page .table-varianty tr {
  border-bottom: 1px solid #c8c7c7;
}
.detail-page .table-varianty tr .radio {
  vertical-align: middle;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .detail-page .table-varianty tr .radio {
    margin-right: 5px;
  }
}
.detail-page .table-varianty tr .price {
  font-size: 16px;
  font-weight: 100;
  color: #be1522;
}
@media (max-width: 767px) {
  .detail-page .table-varianty tr .price {
    font-size: 14px;
  }
}
.detail-page .table-varianty tr .price a {
  color: #be1522;
}
.detail-page .table-varianty tr .price a:hover,
.detail-page .table-varianty tr .price a:focus {
  color: #be1522;
  text-decoration: none;
}
.detail-page .table-varianty tr .old-price {
  font-size: 14px;
  font-weight: 100;
  color: #4a4645;
  text-decoration: line-through;
}
.detail-page .table-varianty tr .availability {
  color: #3aaa35;
}
.detail-page .table-varianty tr .availability a {
  color: #3aaa35;
}
.detail-page .table-varianty tr .availability a:hover,
.detail-page .table-varianty tr .availability a:focus {
  color: #3aaa35;
  text-decoration: none;
}
.detail-page .table-varianty tr .label {
  display: block;
  line-height: inherit;
}
.detail-page .table-varianty tr:first-child {
  border-top: 1px solid #c8c7c7;
}
.detail-page .table-varianty tr td {
  padding: 9px;
  padding-left: 0;
}
@media (max-width: 767px) {
  .detail-page .table-varianty tr td {
    padding: 0px;
  }
}
.detail-page .load-more-btn {
  padding: 14px 25px;
  position: relative;
  color: white;
}
.detail-page .load-more-btn:hover,
.detail-page .load-more-btn:focus {
  color: white;
}
.detail-page .load-more-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 10px;
  background: url("images/arrow-right.png") no-repeat;
  width: 8px;
  height: 14px;
  display: inline-block;
}
.cart-page a {
  text-decoration: none;
}
.cart-page .h2 {
  font-size: 20px;
}
.cart-page .input[type="text"] {
  height: 43px;
}
.cart-page button[type="submit"] {
  border: none;
  padding: 10px 68px;
  background: #3aaa35;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 768px) {
  .cart-page button[type="submit"] {
    float: right;
  }
}
@media (max-width: 767px) {
  .cart-page button[type="submit"] {
    width: 100%;
  }
}
.cart-page button[type="submit"]:hover,
.cart-page button[type="submit"]:focus {
  background: #2d8329;
  color: #fff;
}
.cart-page .back-arrow-btn {
  color: #400c1a;
  text-decoration: none;
}
@media (max-width: 767px) {
  .cart-page .back-arrow-btn {
    margin-left: 5px;
  }
}
.cart-page .back-arrow-btn:hover,
.cart-page .back-arrow-btn:focus {
  color: #b88449;
}
.cart-page .black-btn {
  color: #ffffff;
  padding: 14px 60px;
  text-decoration: none;
}
.cart-page .black-btn:hover,
.cart-page .black-btn:focus {
  color: #fff;
}
.cart-page .light-bg {
  position: relative;
  font-size: 14px;
  display: block;
  color: #400c1a;
  text-decoration: none;
}
.cart-page .light-bg:hover,
.cart-page .light-bg:focus {
  color: #400c1a;
  text-decoration: none;
}
.cart-page .light-bg:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 10px;
  width: 13px;
  height: 7px;
  background: url("images/arrow-down.png") no-repeat;
}
@media (max-width: 767px) {
  .cart-0 .back-arrow-btn {
    margin-left: 0;
  }
}
.rating {
  font-size: 16px;
}
.rating a {
  color: #4a4645;
}
.rating a:hover,
.rating a:focus {
  text-decoration: none;
  color: #4a4645;
}
@media (max-width: 767px) {
  .rating {
    margin-bottom: 20px;
  }
}
.rating .rating-star-full {
  background: url("images/full-star.svg") no-repeat;
  display: inline-block;
  width: 16px;
  height: 15px;
}
.rating .rating-star-empty {
  background: url("images/empty-star.svg") no-repeat;
  display: inline-block;
  width: 16px;
  height: 15px;
}
.rating-two .rating-star-full {
  background: url("images/full-star-two.svg") no-repeat;
  display: inline-block;
  width: 16px;
  height: 15px;
}
.rating-two .rating-star-empty {
  background: url("images/empty-star-two.svg") no-repeat;
  display: inline-block;
  width: 16px;
  height: 15px;
}
.slider .bx-wrapper {
  box-shadow: none;
  border: 0;
  background: none;
  margin-bottom: 0;
}
.slider .bx-controls-direction a {
  top: 50%;
  margin-top: -25px;
  z-index: 1000;
  width: 0;
  height: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .slider .bx-controls-direction a {
    top: 55%;
  }
}
@media (max-width: 767px) {
  .slider .bx-controls-direction a {
    top: 60%;
  }
}
.slider .bx-prev {
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 20px 15px 0;
  border-color: transparent #3aaa35 transparent transparent;
}
.slider .bx-next {
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #3aaa35;
}
.text-area {
  padding: 20px;
}
.text-area h1,
.text-area h2,
.text-area h3,
.text-area h4,
.text-area h5,
.text-area h6 {
  color: #400c1a;
}
.text-area h2 {
  font-size: 30px;
  font-weight: 600;
}
.text-area h3 {
  font-size: 24px;
}
.text-area h4 {
  font-size: 19px;
}
.text-area h5 {
  font-size: 16px;
}
.text-area h6 {
  font-size: 14px;
}
.text-area a {
  color: #be311b;
}
.text-area a:hover,
.text-area afocus {
  color: #be5031;
}
.text-area table {
  margin: 20px 0;
}
.text-area .table th,
.text-area .table td {
  padding: 3px 6px;
}
.text-area .table tr {
  border-bottom: 1px solid #400c1a;
}
.text-area .photo-gallery img {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .t-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .p-right {
    float: right;
  }
}
.breadcrumb {
  padding: 0;
  font-size: 12px;
  margin-bottom: 5px;
  display: inline-block;
  width: 100%;
}
.breadcrumb a {
  color: #400c1a;
}
.breadcrumb a:hover,
.breadcrumb a:focus {
  color: #400c1a;
}
.breadcrumb li {
  float: left;
  margin-right: 5px;
  list-style: none;
}
.breadcrumb li.active {
  color: #be1522;
  font-weight: bold;
}
.breadcrumb li.active:after {
  content: none;
}
.breadcrumb li:after {
  padding: 0 0 0 4px;
  content: "/";
}
.divider {
  background: url("images/divider.png") no-repeat center;
  background-size: 100% auto;
  height: 17px;
  border: none;
}
.divider-big {
  background: url("images/divider-big.png") no-repeat center;
  background-size: 100% auto;
  height: 17px;
  border: none;
}
.divider-vertical {
  background: url("images/divider-vertical.svg") no-repeat center;
  background-size: auto 100%;
  height: 554px;
  border: none;
}
.no-pad-row > div.row {
  margin-left: 0;
  margin-right: 0;
}
.no-pad-row > div.row > div[class^="col-"] {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .left {
    text-align: left;
  }
}
.back-arrow-btn {
  position: relative;
  color: #4a4645;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 15px;
  display: inline-block;
}
@media (min-width: 768px) {
  .back-arrow-btn {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .back-arrow-btn {
    margin-left: 30px;
  }
}
.back-arrow-btn:hover,
.back-arrow-btn:focus {
  text-decoration: none;
  color: #be1522;
}
.back-arrow-btn:before {
  content: "";
  position: absolute;
  background: url("images/back-arrow.svg") no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  left: -30px;
  top: 50%;
  margin-top: -10px;
}
.pagination {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  margin: 10px 15px 10px 10px;
}
@media (min-width: 1200px) {
  .pagination {
    margin: 10px 15px 0 5px;
  }
}
@media (max-width: 767px) {
  .pagination {
    margin: 5px 15px 10px 17px;
  }
}
.pagination li {
  display: inline-block;
  margin-bottom: 2px;
}
.pagination li a {
  display: inline-block;
  color: #400c1a;
}
.pagination li a.number {
  width: 28px;
  height: 28px;
  text-align: center;
  padding: 3px;
}
.pagination li.active a.number,
.pagination li a.number:hover {
  text-decoration: none;
  background: #400c1a;
  color: #fff;
  border-radius: 50%;
}
.pagination li span {
  color: #400c1a;
}
.pagination .prev,
.pagination .next {
  text-transform: uppercase;
}
.pagination .prev:hover,
.pagination .next:hover {
  text-decoration: none;
  color: #be1522;
}
.pagination .prev {
  position: relative;
  padding-left: 12px;
}
.pagination .prev:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background: url("images/arrow-left.png") no-repeat;
  width: 7px;
  height: 12px;
  display: inline-block;
}
.pagination .next {
  position: relative;
  padding-right: 12px;
}
.pagination .next:before {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  background: url("images/arrow-left.png") no-repeat;
  transform: rotate(180deg);
  width: 7px;
  height: 12px;
  display: inline-block;
}
.back-btn {
  padding: 11px 33px;
  font-weight: normal;
  color: #400c1a;
  font-size: 15px;
  border: 1px solid #400c1a;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  transition: 0.2s ease-in-out;
}
.back-btn:hover,
.back-btn:focus {
  color: #400c1a;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .back-btn {
    margin-bottom: 10px;
    width: 100%;
  }
}
.continue-btn {
  margin-top: 20px;
  background: #3aaa35;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  padding: 11px 33px;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  transition: 0.2s ease-in-out;
  float: right;
}
.continue-btn:hover,
.continue-btn:focus {
  color: #ffffff;
  text-decoration: none;
  background: #33972f;
}
@media (max-width: 767px) {
  .continue-btn {
    float: none;
    margin-bottom: 10px;
    width: 100%;
  }
}
.hp-border {
  border-right: 5px solid #efeee6;
  border-left: 5px solid #efeee6;
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (min-width: 480px) and (max-width: 767px) {
  .homepage .no-border-bottom {
    border-bottom: 0 !important;
  }
}
.homepage .matrace {
  position: relative;
  display: block;
  border-right: 5px solid #efeee6;
  border-bottom: 10px solid #efeee6;
  border-left: 5px solid #efeee6;
}
.homepage .matrace > div {
  position: absolute;
  top: 21px;
  left: 24px;
}
.homepage .matrace > div > h3 {
  text-transform: uppercase;
  margin: 0;
  color: #4a4645;
}
@media (max-width: 767px) {
  .homepage .matrace > div > h3 {
    font-size: 18px;
  }
}
@media (min-width: 768px), (min-width: 480px) and (max-width: 767px) {
  .homepage .line {
    border-bottom: 30px solid #efeee6;
  }
}
.banner-hp {
  height: 503px;
  position: relative;
  border-right: 5px solid #efeee6;
  border-left: 5px solid #efeee6;
  padding-top: 87px;
  color: #322f2f;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp {
    padding-top: 50px;
    height: 414px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-hp {
    padding-top: 20px;
    height: 200px;
  }
  .banner-hp h1 {
    font-size: 32px;
  }
  .banner-hp h2 {
    font-size: 27px;
  }
}
.banner-hp:hover,
.banner-hp:focus {
  color: #322f2f;
  text-decoration: none;
}
.banner-hp .top {
  margin-top: 0px;
  margin-bottom: 0px;
  border: 0;
  border-top: 1px solid #000000;
  display: inline-block;
  width: 45px;
  padding-bottom: 31px;
}
.banner-hp .bottom {
  margin-top: 0px;
  margin-bottom: 0px;
  border: 0;
  border-top: 1px solid #000000;
  display: inline-block;
  width: 45px;
  text-align: center;
  padding-top: 17px;
}
.banner-hp .learning-font {
  text-align: center;
  font-size: 72px;
  line-height: 50px;
  text-transform: none;
  font-weight: 400;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp .learning-font {
    font-size: 53px;
  }
}
@media (max-width: 767px) {
  .banner-hp .learning-font {
    font-size: 46px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-hp .learning-font {
    font-size: 60px;
  }
}
.banner-hp p {
  font-weight: bold;
  font-size: 45px;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp p {
    font-size: 40px;
  }
}
.banner-hp .button {
  width: 150px;
  height: 50px;
  display: inline-block;
}
.banner-hp .label-area {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 105px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp .label-area {
    right: 0px;
    top: 0px;
  }
}
.banner-hp .new-collection-label {
  background: url("images/new-collection-label2.png") no-repeat;
  display: inline-block;
  width: 105px;
  height: 105px;
}
.banner-hp-2 {
  height: 503px;
  position: relative;
  border-right: 5px solid #efeee6;
  border-left: 5px solid #efeee6;
  padding-top: 105px;
  color: #322f2f;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp-2 {
    height: 414px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-hp-2 {
    padding-top: 40px;
    height: 100px;
  }
}
.banner-hp-2:hover,
.banner-hp-2:focus {
  color: #322f2f;
  text-decoration: none;
}
.banner-hp-2 .top {
  margin-top: 0px;
  margin-bottom: 0px;
  border: 0;
  border-top: 1px solid #000000;
  display: inline-block;
  width: 45px;
  padding-bottom: 23px;
}
.banner-hp-2 .bottom {
  margin-top: 0px;
  margin-bottom: 0px;
  border: 0;
  border-top: 1px solid #000000;
  display: inline-block;
  width: 45px;
  text-align: center;
  padding-top: 113px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp-2 .bottom {
    padding-top: 70px;
  }
}
.banner-hp-2 p {
  font-weight: bold;
  font-size: 45px;
  margin-bottom: 31px;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp-2 p {
    font-size: 40px;
  }
}
.banner-hp-2 h2 {
  margin-top: 0px;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-hp-2 h2 {
    font-size: 27px;
  }
}
.banner-hp-2 .button {
  width: 150px;
  height: 50px;
  display: inline-block;
}
.banner-hp-2 .label-area {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 105px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp-2 .label-area {
    left: 5px;
    top: 5px;
  }
}
.banner-hp-2 .new-collection-label {
  background: url("images/new-collection-label3.png") no-repeat;
  display: inline-block;
  width: 105px;
  height: 105px;
}
.banner-hp-3 {
  height: 247px;
  position: relative;
  border-right: 5px solid #efeee6;
  border-left: 5px solid #efeee6;
  padding-top: 20px;
  color: #322f2f;
  display: block;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-hp-3 {
    height: 203px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-hp-3 {
    padding-top: 25px;
    height: 100px;
  }
}
.banner-hp-3:hover,
.banner-hp-3:focus {
  color: #322f2f;
  text-decoration: none;
}
.banner-hp-3 h2 {
  font-weight: bold;
  margin: 0 0 20px;
  padding: 15px 0;
  position: relative;
  text-transform: uppercase;
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px) {
  .banner-hp-3 h2:before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    margin-right: -25px;
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #000000;
  }
}
@media (min-width: 1200px), (min-width: 992px) and (max-width: 1199px) {
  .banner-hp-3 h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-right: -25px;
    height: 1px;
    width: 45px;
    display: inline-block;
    background: #000000;
  }
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .banner-hp-3 h2 {
    font-size: 21px;
  }
}
.banner-hp-3 .button {
  width: 150px;
  height: 50px;
  display: inline-block;
}
.first-banner {
  background: url("images/banner-hp.png") no-repeat;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .first-banner {
    background: #d4a056;
  }
}
.second-banner {
  background: url("images/banner2-hp.png") no-repeat;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .second-banner {
    background: #bdb4b8;
  }
}
.third-banner {
  background: url("images/banner3-hp.png") no-repeat;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .third-banner {
    background: #d8c9c6;
  }
}
.four-banner {
  background: url("images/banner4-hp.png") no-repeat;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .four-banner {
    background: #d0c0b0;
  }
}
.five-banner {
  background: url("images/banner5-hp.png") no-repeat;
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .five-banner {
    background: #d0dac6;
  }
}
.first-button {
  background: url("images/arrow.png") center no-repeat #f0ede7;
}
.second-button {
  background: url("images/arrow2.png") center no-repeat #f0ede7;
}
.third-button {
  background: url("images/arrow3.png") center no-repeat #f0ede7;
}
.four-button {
  background: url("images/arrow4.png") center no-repeat #f0ede7;
}
.five-button {
  background: url("images/arrow5.png") center no-repeat #f0ede7;
}
.orders-table {
  width: 100%;
  display: table;
  margin-bottom: 50px;
}
.orders-table thead tr th {
  color: #400c1a;
  text-align: left;
  font-size: 18px;
  padding: 13px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .orders-table thead tr th {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .orders-table thead tr th {
    font-size: 14px;
    padding: 5px;
  }
}
.orders-table tbody tr {
  border-bottom: 1px solid #400c1a;
  border-top: 1px solid #400c1a;
}
.orders-table tbody tr td {
  padding: 16px;
  text-align: left;
  font-size: 18px;
  color: #400c1a;
  width: 249px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .orders-table tbody tr td {
    width: 537px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .orders-table tbody tr td {
    width: 0px;
    padding: 12px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .orders-table tbody tr td {
    padding: 2px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .orders-table tbody tr td:first-child {
    font-weight: bold;
  }
}
.orders-table tbody tr td:nth-child(4) {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.orders-table tbody tr td:nth-child(5) {
  padding-top: 0;
}
@media (max-width: 767px) {
  .orders-table tbody tr td:nth-child(5) {
    padding: 3px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .orders-table tbody tr td:nth-child(5) {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.orders-table .view-product-btn {
  padding: 8px 16px;
  color: #ffffff;
}
.orders-table .view-product-btn .sipka {
  position: relative;
  right: -5px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .orders-table .view-product-btn {
    padding: 8px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .orders-table .view-product-btn {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .orders-table .view-product-btn {
    padding: 4px 16px;
  }
}
.orders-table .view-product-btn:hover,
.orders-table .view-product-btn:focus {
  color: #ffffff;
}
.orders-table .view-product-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 15px;
  background: url("images/arrow-left.png") no-repeat;
  transform: rotate(180deg);
  width: 7px;
  height: 12px;
  display: none;
}
.stav {
  text-align: center;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  display: inline-block;
  padding: 5px;
}
.prijata {
  background: #b3b3b3;
}
.vyrizuje {
  background: #f0ad4e;
}
.expendovano {
  background: #428bca;
}
.vyrizeno {
  background: #5cb85c;
}
.storno {
  background: #eb2506;
}
.bx-wrapper .bx-prev {
  background-image: none;
}
.cart-icon p {
  padding-right: 10px;
}
header .sign-out {
  margin-right: 13px;
  padding-left: 38px;
  position: relative;
}
@media (min-width: 768px) {
  header .sign-out {
    margin-right: 43px;
  }
}
.divider-x {
  position: relative;
  background: url("images/divider-x.png") no-repeat right;
  height: 17px;
  border: none;
  margin: 15px 0;
}
.divider-x div.left {
  float: left;
  height: 17px;
  width: 30px;
  background: url("images/divider-x.png") no-repeat left #ffffff;
}
.divider-x div.center {
  position: absolute;
  left: 50%;
}
.divider-x div.center div {
  margin-top: 3px;
  background: #400c1a;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-left: -50%;
}
footer .divider-f {
  position: relative;
  background: url("images/divider-xw.png") no-repeat right;
  height: 17px;
  border: none;
  margin: 15px 0;
}
footer .divider-f div.left {
  float: left;
  height: 17px;
  width: 30px;
  background: url("images/divider-xw.png") no-repeat left #400c1a;
}
footer .divider-f div.center {
  position: absolute;
  left: 50%;
}
footer .divider-f div.center div {
  margin-top: 3px;
  background: #ffffff;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin-left: -50%;
}
footer ul li a {
  font-weight: normal;
}
footer ul li.active a {
  font-weight: bold;
}
main .xs-submenu {
  color: #ffffff;
}
main .xs-submenu .first-level a.backlink {
  font-weight: normal;
}
main .xs-submenu .first-level a:hover {
  color: #ffffff;
  text-decoration: underline;
}
main .xs-submenu .second-level .active a {
  font-weight: bold;
  text-decoration: underline;
}
main .product-box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}
main .product-box .view-product-btn {
  margin-top: auto;
  align-content: flex-end;
  width: 100%;
}
.modal .close {
  cursor: pointer;
  padding: 0;
  border: 0;
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  background: none;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
