/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-carousel .owl-nav [class*='owl-'] {
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-carousel .owl-nav [class*='owl-']:hover {
      text-decoration: none; }
  .owl-carousel .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-carousel .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }

/*
 *  Owl Carousel CSS3 Transitions
 *  v1.3.2
 */

.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x : 50%;
  -webkit-perspective-origin-y : 50%;
  -moz-perspective : 1200px;
  -moz-perspective-origin-x : 50%;
  -moz-perspective-origin-y : 50%;
  perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); } 
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}

/*!
 * Bootstrap v3.1.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.0 | MIT License | git.io/normalize */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,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: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{-moz-box-sizing:content-box;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;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;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}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]: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}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !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:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width:481px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:481px){.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 #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999}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 #eee;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'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:481px){.container{width:750px}}@media (min-width:768px){.container{width:970px}}@media (min-width:961px){.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:0}.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:0}.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:481px){.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:0}.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:0}.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:768px){.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:0}.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:0}.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:961px){.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:0}.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:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:480px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:481px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:481px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.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:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro: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"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.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:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999}.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 solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:481px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:none}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.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:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;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:481px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:481px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.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:481px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:481px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:481px){.navbar{border-radius:4px}}@media (min-width:481px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:481px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:481px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:481px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:481px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:481px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:none}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:481px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:480px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:481px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:481px){.navbar-left{float:left !important}.navbar-right{float:right !important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:481px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:480px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:481px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:481px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:480px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:480px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:481px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;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}@media (min-width:481px){.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:768px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.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:14px;font-weight:normal;line-height:18px;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:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.5) 0), color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.0001) 0), color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:none;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:481px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.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;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}@media (max-width:480px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (min-width:481px) and (max-width:767px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:960px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:961px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (max-width:480px){.hidden-xs{display:none !important}}@media (min-width:481px) and (max-width:767px){.hidden-sm{display:none !important}}@media (min-width:768px) and (max-width:960px){.hidden-md{display:none !important}}@media (min-width:961px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}@media print{.hidden-print{display:none !important}}
/*
== malihu jquery custom scrollbar plugin ==
Version: 3.0.2 
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/



/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/



/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCustomScrollbar{ -ms-touch-action: none; touch-action: none; /* MSPointer events - direct all pointer events to js */ }
	.mCustomScrollbar.mCS_no_scrollbar{ -ms-touch-action: auto; touch-action: auto; }
	
	.mCustomScrollBox{ /* contains plugin's markup */
		position: relative;
		overflow: hidden;
		height: 100%;
		max-width: 100%;
		outline: none;
		direction: ltr;
	}

	.mCSB_container{ /* contains the original content */
		overflow: hidden;
		width: auto;
		/*min-height: 300px;*/
	}



/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_inside > .mCSB_container{ margin-right: 30px; }

	.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */

	.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
		position: absolute;
		width: 16px;
		height: auto;
		left: auto;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
		right: auto;
		left: 0;
	}
	
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */

	.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
		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{ /* the draggable element */
		cursor: pointer;
		width: 100%;
		height: 30px; /* minimum dragger height */
		z-index: 1;
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
		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; /* auto-expanded scrollbar */ }
	
	.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; /* auto-expanded scrollbar */ }

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown{
		display: block;
		position: absolute;
		height: 20px;
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}

	.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.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; } /* non-visible scrollbar */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: auto;
		height: 16px;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
	.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; } /* scrollbar position: outside */

	.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; /* minimum dragger width */
		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; /* auto-expanded scrollbar */
		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; /* auto-expanded scrollbar */
		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; }



/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

	.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;
	}
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; }
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; }
	
	/* non-visible horizontal scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; }
	
	/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; }
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; }
	
	/* non-visible scrollbar/RTL direction/left-side scrollbar */
	.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{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ 
		padding-right: 0; 
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ 
		padding-bottom: 0; 
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{
		margin-right: 0; /* non-visible scrollbar */
		margin-left: 0;
	}
	
	/* non-visible horizontal scrollbar */
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_scrollTools, 
	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{
		-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
	}



/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

	/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
	
	/* default theme ("light") */

	.mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
	
	.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }
	
	.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollBox:hover > .mCSB_scrollTools,
	.mCustomScrollBox:hover ~ .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ 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:active .mCSB_dragger_bar,
	.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		background-image: url(mCSB_buttons.png); /* css sprites */
		background-repeat: no-repeat;
		opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp{
		background-position: 0 0;
		/* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonDown{
		background-position: 0 -20px;
		/* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonLeft{
		background-position: 0 -40px;
		/* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonRight{
		background-position: 0 -56px;
		/* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonUp:hover,
	.mCSB_scrollTools .mCSB_buttonDown:hover,
	.mCSB_scrollTools .mCSB_buttonLeft:hover,
	.mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }

	.mCSB_scrollTools .mCSB_buttonUp:active,
	.mCSB_scrollTools .mCSB_buttonDown:active,
	.mCSB_scrollTools .mCSB_buttonLeft:active,
	.mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }
	

	/* theme: "dark" */

	.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:active .mCSB_dragger_bar,
	.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-2", "dark-2" */

	.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-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-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-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-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		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:active .mCSB_dragger_bar,
	.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }
	
	
	/* theme: "dark-2" */

	.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:active .mCSB_dragger_bar,
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thick", "dark-thick" */

	.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-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-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-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-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 4px;
		margin: 6px 0;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-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:active .mCSB_dragger_bar,
	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }


	/* theme: "dark-thick" */
	
	.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:active .mCSB_dragger_bar,
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thin", "dark-thin" */
	
	.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.1); }

	.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 2px;
		margin: 7px auto;
	}


	/* theme "dark-thin" */
	
	.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:active .mCSB_dragger_bar,
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.15); }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 14px;
		margin: 0 1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; }
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 14px;
		margin: 1px 0;
	}
	
	.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, 
	.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{
		width: 16px; /* auto-expanded scrollbar */
		height: 16px;
		margin: -1px 0;
	}
	
	.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, 
	.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{ width: 4px; /* auto-expanded scrollbar */ }
	
	.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, 
	.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{
		height: 16px; /* auto-expanded scrollbar */
		width: 16px;
		margin: 0 -1px;
	}
	
	.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, 
	.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{
		height: 4px; /* auto-expanded scrollbar */
		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; }
	
	
	/* theme "rounded-dark", "rounded-dots-dark" */
	
	.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:active .mCSB_dragger_bar,
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }
	
	
	/* theme "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		background-color: transparent;
		background-position: center;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
		background-repeat: repeat-y;
		opacity: 0.3;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.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; }
	
	
	/* theme "rounded-dots-dark" */
	
	.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; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.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.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.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%);
	}
	
	
	/* theme "3d", "3d-dark" */
	
	.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; }
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; }
	
	.mCS-3d.mCSB_scrollTools, 
	.mCS-3d-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.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.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 	 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }

	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; }

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-3d-dark.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.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.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; }
	
	
	/* theme "3d-dark" */
	
	.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; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "3d-thick", "3d-thick-dark" */
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
	
	.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; }
	
	.mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCS-3d-thick-dark.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.mCSB_scrollTools_horizontal, 
	.mCS-3d-thick-dark.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.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		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.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 12px;
		width: auto;
	}
	
	.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; }
	
	
	/* theme: "3d-thick-dark" */
	
	.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:hover .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; }
	
	.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{ 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; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "minimal", "minimal-dark" */
	
	.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		right: 0; 
		margin: 12px 0; 
	}
	
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 0; 
		margin: 0 12px; 
	}
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		left: 0; 
		right: auto;
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; }
	
	.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-minimal-dark.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:active .mCSB_dragger_bar,
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	
	/* theme: "minimal-dark" */
	
	.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:active .mCSB_dragger_bar,
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	/* ---------------------------------------- */
	
	
	
	/* theme "light-3", "dark-3" */
	
	.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
		width: 6px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; }

	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 6px;
		margin: 5px 0;
	}
	
	.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, 
	.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{
		width: 12px;
	}
	
	.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, 
	.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{
		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; }
	
	
	/* theme "dark-3" */
	
	.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:active .mCSB_dragger_bar,
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
	
	.mCS-inset.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 12px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.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.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.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.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-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-2-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-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	
	/* theme "inset-2", "inset-2-dark" */
	
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.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); }
	
	
	/* theme "inset-3", "inset-3-dark" */
	
	.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:active .mCSB_dragger_bar,
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .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:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
	
	/* ---------------------------------------- */

/*! jQuery UI - v1.11.2 - 2015-02-09
* http://jqueryui.com
* Includes: core.css, button.css, datepicker.css
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}
.scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.scroll-element {
  display: none;
}
.scroll-element,
.scroll-element div {
  box-sizing: content-box;
}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}
.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}
/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}
.scrollbar-outer > .scroll-element {
  background-color: #ffffff;
}
.scrollbar-outer > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  width: 100%;
}
.scrollbar-outer > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 12px;
}
.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 6px;
  top: 2px;
}
.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  width: 8px;
}
.scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden;
}
.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #eeeeee;
}
.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #d6a20e;
}
.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
}
.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}
/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -12px;
  margin-left: 12px;
}
.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -12px;
  margin-top: 12px;
}
.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px;
}
.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px;
}
/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -14px;
}
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -14px;
}
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -14px;
}
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -14px;
}
@font-face {
  font-family: 'fontello_mennica';
  src: url('fonts/fontello_mennica.eot');
  src: url('fonts/mennica/fontello_mennica.eot#iefix') format('embedded-opentype'), url('fonts/mennica/fontello_mennica.woff') format('woff'), url('fonts/mennica/fontello_mennica.ttf') format('truetype'), url('fonts/mennica/fontello_mennica.svg#fontello_mennica') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'lora_italic';
  src: url('fonts/mennica/Lora-Italic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'robotoCondensed';
  src: url('fonts/mennica/RobotoCondensed-Regular.woff') format('woff'), url('fonts/mennica/RobotoCondensed-Regular.ttf') format('truetype'), url('fonts/mennica/RobotoCondensed-Regular.svg#RobotoCondensed-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'robotoCondensedLight';
  src: url('fonts/mennica/RobotoCondensed-Light.woff') format('woff'), url('fonts/mennica/RobotoCondensed-Light.ttf') format('truetype'), url('fonts/mennica/RobotoCondensed-Light.svg#RobotoCondensed-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}
/**
 *	Ścieżki do zasobów
 */
/*Generując css dla stg używamy pierwszej wersji*/
/**
 *	Kolorystyka
 */
/**
 *	Typografia
 */
/**
 *	Odstępy
 */
/**
 *	Różne
 */
/**
 * Breakpoints
 */
/**
 *	Nagłówek
 */
/**
 *	Teaser
 *	3 kolumny: 466*250; po animowanym hover: 373*200
 *	4 kolumny: 340*182; po animowanym hover: 272*145
 */
/**
 *	Tabele
 */
/*Klasa debugowa*/
/**
 * Wspólne dla h1, h2, h3...
 */
/**
 * Mała pomarańczowa kreska przed elementem.
 */
/**
 * Standardowy element z miniaturką, nagłówkiem i krótkim opisem.
 *
 * Użyj .stdBlock(), aby mieć tylko podstawowy wygląd bloczka.
 * Bez animacji są np bloczki w "MiN > Poradnik Kolekcjonera".
 * Animowane bloczki widać np w "Władze > Zarząd".
 *
 * @param  animation - podciąganie tekstu wyżej po najechaniu
 * @param  hoverAnimation - obramowanie elementu po najechaniu
 * @param  header - nagłówek
 * @param  headerWithIcon - czy nad nagłówkeim ma być ikonka
 * @param  buttons - przyciski (absolute w dolnym paddingu)
 * @param  thumbnail - miniaturka (absolute w górnym paddingu)
 */
/**
 * Niweluje boczne odstępy.
 * Pozwala pokolorować wiersz od krawędzi do krawędzi.
 */
/**
 * Elementy z tłem
 */
/**
 * Formularz z filtrem prezentowanych danych.
 * Np na stronie Raportów
 */
/**
* Ogólne
* Button
* Popup
* Układ strony
* Ikony
* youtube-video
**/
/****** Ogólne ******/
html {
  font-size: 62.5%;
}
html body {
  background-color: #000;
  font-family: robotoCondensedLight, sans-serif;
  font-size: 16px;
  background-color: transparent;
}
@media only screen and (min-width: 1232px) {
  html body {
    background: #000000 url('/_cms-img/time20250725085903/mennica/background/site-background.jpg') no-repeat center top fixed;
  }
}
html body.cke_editable {
  background: #fff;
}
.initialHide {
  display: none;
}
.clearFix {
  clear: both !important;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.noSpaceTop {
  padding-top: 0 !important;
}
h1 {
  font-family: lora_italic, serif;
  line-height: 1.2em;
  font-size: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  h1 {
    font-size: 43.2px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  h1 {
    font-size: 38.4px;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 33.6px;
  }
}
h2 {
  font-family: lora_italic, serif;
  line-height: 1.2em;
  font-size: 35px;
  margin: 0.6em 0;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  h2 {
    font-size: 31.5px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 24.5px;
  }
}
h2.bg_gray {
  padding: 16px 20px;
  background: #f9f9f9;
  text-align: left;
  font-size: 35px;
  font-family: lora_italic, serif;
  line-height: 1.2em;
  border-bottom: 1px solid #ededed;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  h2.bg_gray {
    font-size: 31.5px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  h2.bg_gray {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  h2.bg_gray {
    font-size: 24.5px;
  }
}
h2 a {
  color: inherit;
}
h2 a:hover {
  text-decoration: none;
}
h3 {
  font-family: lora_italic, serif;
  line-height: 1.2em;
}
h3 a {
  color: inherit;
}
h3 a:hover {
  text-decoration: none;
}
p {
  line-height: 1.5em;
  margin: 0 0 25px 0;
}
td {
  line-height: 1.5em;
}
.section-header {
  text-align: center;
}
@media only screen and (min-width: 961px) {
  .section-header {
    margin: 0 250px;
  }
}
.section-header H1 {
  font-size: 35px;
  margin: 0.6em 0;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .section-header H1 {
    font-size: 31.5px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .section-header H1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .section-header H1 {
    font-size: 24.5px;
  }
}
.section-header h2.line {
  position: relative;
}
.section-header h2.line:after {
  width: 50px;
  content: "";
  display: block;
  position: absolute;
  bottom: -0.3em;
  left: 48%;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #d6a20e;
}
/*Wykorzystanie layout np. wyniki wyszukiwania */
@media only screen and (min-width: 768px) {
  .layout_slim {
    margin: 0 100px;
  }
}
.lead {
  line-height: 1.5em;
  margin-bottom: 30px;
  font-size: 16px;
  position: relative;
}
.lead:before {
  width: 50px;
  content: "";
  display: block;
  position: absolute;
  top: -0.5em;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #d6a20e;
}
.section-header .lead:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
a {
  color: #d6a20e;
}
a:hover {
  color: #d6a20e;
}
/****** Button ******/
.buttons a {
  display: inline-block;
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  padding: 10px 35px;
  font-family: robotoCondensed;
}
@media only screen and (max-width: 767px) {
  .buttons a {
    padding: 7px 21px;
  }
}
.button {
  display: inline-block;
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  padding: 10px 35px;
  font-family: robotoCondensed;
  color: #d6a20e;
  -webkit-box-shadow: inset 0 0 0 1px #d6a20e;
  -moz-box-shadow: inset 0 0 0 1px #d6a20e;
  box-shadow: inset 0 0 0 1px #d6a20e;
}
@media only screen and (max-width: 767px) {
  .button {
    padding: 7px 21px;
  }
}
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
}
.button:hover,
.button:focus {
  background: #d6a20e !important;
  color: #fff !important;
}
.button.primary {
  -webkit-box-shadow: inset 0 0 0 1px #ffffff;
  -moz-box-shadow: inset 0 0 0 1px #ffffff;
  box-shadow: inset 0 0 0 1px #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding-top: 17px;
  padding-bottom: 17px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
  background: #d6a20e;
  color: #fff;
}
.button.primary:focus {
  outline: 0;
}
.button.primary:before,
.button.primary:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  -webkit-transform: translateX(-100px) skewX(-15deg);
  -moz-transform: translateX(-100px) skewX(-15deg);
  -o-transform: translateX(-100px) skewX(-15deg);
  -ms-transform: translateX(-100px) skewX(-15deg);
  transform: translateX(-100px) skewX(-15deg);
}
.button.primary:before {
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  left: 0;
  opacity: 0.5;
  filter: blur(5px);
}
.button.primary:after {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  left: 30px;
  opacity: 0;
  filter: blur(10px);
}
.button.primary:hover,
.button.primary:focus {
  cursor: pointer;
  background: #fab914 !important;
}
.button.primary:hover:before,
.button.primary:focus:before,
.button.primary:hover:after,
.button.primary:focus:after {
  -webkit-transform: translateX(300px) skewX(-15deg);
  -moz-transform: translateX(300px) skewX(-15deg);
  -o-transform: translateX(300px) skewX(-15deg);
  -ms-transform: translateX(300px) skewX(-15deg);
  transform: translateX(300px) skewX(-15deg);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.button.primary:hover:before,
.button.primary:focus:before {
  opacity: 0.6;
}
.button.primary:hover:after,
.button.primary:focus:after {
  opacity: 1;
}
.button.btn-small {
  padding: 9px 33px;
}
.aside {
  background-color: #046e5a !important;
  color: #fff !important;
}
.aside.component {
  padding: 20px;
}
.aside.component H3 {
  margin-bottom: 20px;
}
/****** Popup ******/
.modal_popup_cover {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.6);
}
/****** Układ strony ******/
.layout_section > .container-fluid,
.layout_section > .layout_container {
  max-width: 1232px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 30px !important;
  padding-right: 30px !important;
  background: #fff;
}
.background_grey > .layout_container,
.background_grey > .container-fluid,
.background_grey.layout_container {
  background-color: #f9f9f9;
}
.background_green > .layout_container,
.background_green > .container-fluid,
.background_green.layout_container {
  background-color: #046e5a;
}
/**
 *  Odstępy
 */
.component_wrapper > .component {
  padding-top: 20px;
  padding-bottom: 20px;
}
.debug .component_wrapper > .component {
  outline: 1px dashed #ffdddd;
}
.debug .component_wrapper > .component .content_area {
  outline: 1px dashed yellow;
}
.no_side_margins {
  margin-left: -30px;
  margin-right: -30px;
}
.standard_block {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
}
.standard_block H3 {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .standard_block {
    padding: 15px;
  }
  .standard_block a[href^=mailto] {
    font-size: 14px;
  }
  .standard_block a[href^="mailto:relacje_inwestorskie"] {
    font-size: 13px;
  }
}
.teaser_block {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-top: 200px;
  padding-bottom: 96px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
.teaser_block h3 {
  font-size: 27px;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
.teaser_block h3:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.teaser_block .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  text-align: center;
  height: 200px;
}
.component.blocks_in_4_columns_with_accordion .teaser_block .img {
  height: 180px;
}
@media only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block .img img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  vertical-align: bottom;
}
.teaser_block .buttons {
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
}
.teaser_block.active,
.teaser_block:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
[class*=col-md-3] .teaser_block,
[class*=col-lg-3] .teaser_block {
  padding-top: 130px;
}
[class*=col-md-3] .teaser_block .img,
[class*=col-lg-3] .teaser_block .img {
  height: 130px;
}
.component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block,
.component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block {
  padding-top: 180px;
}
.teaser_block_small {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-top: 200px;
  padding-bottom: 96px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  max-width: 373px;
}
.teaser_block_small h3 {
  font-size: 27px;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
.teaser_block_small h3:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.teaser_block_small .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  text-align: center;
  height: 200px;
}
.component.blocks_in_4_columns_with_accordion .teaser_block_small .img {
  height: 180px;
}
@media only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_small .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block_small .img img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  vertical-align: bottom;
}
.teaser_block_small .buttons {
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
}
.teaser_block_small.active,
.teaser_block_small:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
.teaser_block_small:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
[class*=col-md-3] .teaser_block_small,
[class*=col-lg-3] .teaser_block_small {
  padding-top: 130px;
}
[class*=col-md-3] .teaser_block_small .img,
[class*=col-lg-3] .teaser_block_small .img {
  height: 130px;
}
.component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_small,
.component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_small {
  padding-top: 180px;
}
.teaser_block_small .img {
  width: 373px;
}
.teaser_block_animated {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-top: 200px;
  padding-bottom: 96px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding-top: 250px;
  padding-bottom: 20px;
  text-align: center;
  max-width: 373px;
  margin-left: auto;
  margin-right: auto;
}
.teaser_block_animated h3 {
  font-size: 27px;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
.teaser_block_animated h3:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.teaser_block_animated .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  text-align: center;
  height: 200px;
}
.component.blocks_in_4_columns_with_accordion .teaser_block_animated .img {
  height: 180px;
}
@media only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_animated .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block_animated .img img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  vertical-align: bottom;
}
.teaser_block_animated .buttons {
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
}
.teaser_block_animated.active,
.teaser_block_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
.teaser_block_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
[class*=col-md-3] .teaser_block_animated,
[class*=col-lg-3] .teaser_block_animated {
  padding-top: 130px;
}
[class*=col-md-3] .teaser_block_animated .img,
[class*=col-lg-3] .teaser_block_animated .img {
  height: 130px;
}
.component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_animated,
.component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_animated {
  padding-top: 180px;
}
.teaser_block_animated .img {
  width: 466px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 250px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_animated .buttons {
  bottom: -70px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_animated:hover {
  padding-top: 200px;
  padding-bottom: 70px;
}
.teaser_block_animated:hover .img {
  width: 373px;
  height: 200px;
}
@media only screen and (min-width: 481px) {
  .teaser_block_animated:hover .buttons {
    bottom: 10px;
  }
}
[class*=col-md-3] .teaser_block_animated,
[class*=col-lg-3] .teaser_block_animated {
  padding-top: 182px;
}
[class*=col-md-3] .teaser_block_animated .img,
[class*=col-lg-3] .teaser_block_animated .img {
  height: 182px;
  width: 340px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_animated .img,
  [class*=col-lg-3] .teaser_block_animated .img {
    width: 460px;
  }
}
[class*=col-md-3] .teaser_block_animated:hover,
[class*=col-lg-3] .teaser_block_animated:hover {
  padding-top: 130px;
  padding-bottom: 72px;
}
[class*=col-md-3] .teaser_block_animated:hover .img,
[class*=col-lg-3] .teaser_block_animated:hover .img {
  height: 130px;
  width: 272px;
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_animated:hover .img,
  [class*=col-lg-3] .teaser_block_animated:hover .img {
    height: 130px;
    width: 380px;
  }
}
@media only screen and (max-width: 480px) {
  .teaser_block_animated {
    position: relative;
    margin: 1em auto;
    padding: 20px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 1px #ededed;
    -moz-box-shadow: 0 0 0 1px #ededed;
    box-shadow: 0 0 0 1px #ededed;
    padding-top: 200px;
    padding-bottom: 96px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .teaser_block_animated h3 {
    font-size: 27px;
    position: relative;
    margin: 0;
    padding: 15px 0;
  }
  .teaser_block_animated h3:before {
    content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
    display: block;
    width: 28px;
    height: 28px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 50%;
    margin: -14px 0 0 -14px;
    color: #ededed;
    background: #fff;
    text-align: center;
    line-height: 28px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .teaser_block_animated .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    margin: 0;
    border: none;
    text-align: center;
    height: 200px;
  }
  .component.blocks_in_4_columns_with_accordion .teaser_block_animated .img {
    height: 180px;
  }
  .teaser_block_animated .img img {
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    vertical-align: bottom;
  }
  .teaser_block_animated .buttons {
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 30px;
    left: 20px;
  }
  .teaser_block_animated.active,
  .teaser_block_animated:hover {
    -webkit-box-shadow: 0 0 0 3px #d6a20e;
    -moz-box-shadow: 0 0 0 3px #d6a20e;
    box-shadow: 0 0 0 3px #d6a20e;
  }
  [class*=col-md-3] .teaser_block_animated,
  [class*=col-lg-3] .teaser_block_animated {
    padding-top: 130px;
  }
  [class*=col-md-3] .teaser_block_animated .img,
  [class*=col-lg-3] .teaser_block_animated .img {
    height: 130px;
  }
  .component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_animated,
  .component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_animated {
    padding-top: 180px;
  }
  .teaser_block_animated .img {
    width: 373px;
    height: 200px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 480px) and only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_animated .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block_small_animated {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-top: 200px;
  padding-bottom: 96px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding-top: 250px;
  padding-bottom: 20px;
  text-align: center;
  max-width: 373px;
  margin-left: auto;
  margin-right: auto;
}
.teaser_block_small_animated h3 {
  font-size: 27px;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
.teaser_block_small_animated h3:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.teaser_block_small_animated .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  text-align: center;
  height: 200px;
}
.component.blocks_in_4_columns_with_accordion .teaser_block_small_animated .img {
  height: 180px;
}
@media only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_small_animated .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block_small_animated .img img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  vertical-align: bottom;
}
.teaser_block_small_animated .buttons {
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
}
.teaser_block_small_animated.active,
.teaser_block_small_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
.teaser_block_small_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
[class*=col-md-3] .teaser_block_small_animated,
[class*=col-lg-3] .teaser_block_small_animated {
  padding-top: 130px;
}
[class*=col-md-3] .teaser_block_small_animated .img,
[class*=col-lg-3] .teaser_block_small_animated .img {
  height: 130px;
}
.component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_small_animated,
.component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_small_animated {
  padding-top: 180px;
}
.teaser_block_small_animated .img {
  width: 466px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 250px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_small_animated .buttons {
  bottom: -70px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_small_animated:hover {
  padding-top: 200px;
  padding-bottom: 70px;
}
.teaser_block_small_animated:hover .img {
  width: 373px;
  height: 200px;
}
@media only screen and (min-width: 481px) {
  .teaser_block_small_animated:hover .buttons {
    bottom: 10px;
  }
}
[class*=col-md-3] .teaser_block_small_animated,
[class*=col-lg-3] .teaser_block_small_animated {
  padding-top: 182px;
}
[class*=col-md-3] .teaser_block_small_animated .img,
[class*=col-lg-3] .teaser_block_small_animated .img {
  height: 182px;
  width: 340px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_small_animated .img,
  [class*=col-lg-3] .teaser_block_small_animated .img {
    width: 460px;
  }
}
[class*=col-md-3] .teaser_block_small_animated:hover,
[class*=col-lg-3] .teaser_block_small_animated:hover {
  padding-top: 130px;
  padding-bottom: 72px;
}
[class*=col-md-3] .teaser_block_small_animated:hover .img,
[class*=col-lg-3] .teaser_block_small_animated:hover .img {
  height: 130px;
  width: 272px;
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_small_animated:hover .img,
  [class*=col-lg-3] .teaser_block_small_animated:hover .img {
    height: 130px;
    width: 380px;
  }
}
@media only screen and (max-width: 480px) {
  .teaser_block_small_animated {
    position: relative;
    margin: 1em auto;
    padding: 20px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 1px #ededed;
    -moz-box-shadow: 0 0 0 1px #ededed;
    box-shadow: 0 0 0 1px #ededed;
    padding-top: 200px;
    padding-bottom: 96px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .teaser_block_small_animated h3 {
    font-size: 27px;
    position: relative;
    margin: 0;
    padding: 15px 0;
  }
  .teaser_block_small_animated h3:before {
    content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
    display: block;
    width: 28px;
    height: 28px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 50%;
    margin: -14px 0 0 -14px;
    color: #ededed;
    background: #fff;
    text-align: center;
    line-height: 28px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .teaser_block_small_animated .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    margin: 0;
    border: none;
    text-align: center;
    height: 200px;
  }
  .component.blocks_in_4_columns_with_accordion .teaser_block_small_animated .img {
    height: 180px;
  }
  .teaser_block_small_animated .img img {
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    vertical-align: bottom;
  }
  .teaser_block_small_animated .buttons {
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 30px;
    left: 20px;
  }
  .teaser_block_small_animated.active,
  .teaser_block_small_animated:hover {
    -webkit-box-shadow: 0 0 0 3px #d6a20e;
    -moz-box-shadow: 0 0 0 3px #d6a20e;
    box-shadow: 0 0 0 3px #d6a20e;
  }
  [class*=col-md-3] .teaser_block_small_animated,
  [class*=col-lg-3] .teaser_block_small_animated {
    padding-top: 130px;
  }
  [class*=col-md-3] .teaser_block_small_animated .img,
  [class*=col-lg-3] .teaser_block_small_animated .img {
    height: 130px;
  }
  .component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_small_animated,
  .component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_small_animated {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 480px) and only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_small_animated .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
@media only screen and (max-width: 480px) {
  .teaser_block_small_animated .img {
    width: 373px;
    height: 200px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  [class*=col-md-3] .teaser_block_small_animated,
  [class*=col-lg-3] .teaser_block_small_animated,
  [class*=col-md-4] .teaser_block_small_animated,
  [class*=col-lg-4] .teaser_block_small_animated {
    padding-top: 200px;
  }
  [class*=col-md-3] .teaser_block_small_animated:hover,
  [class*=col-lg-3] .teaser_block_small_animated:hover,
  [class*=col-md-4] .teaser_block_small_animated:hover,
  [class*=col-lg-4] .teaser_block_small_animated:hover {
    padding-top: 200px;
    padding-bottom: 96px;
  }
  [class*=col-md-3] .teaser_block_small_animated:hover .img,
  [class*=col-lg-3] .teaser_block_small_animated:hover .img,
  [class*=col-md-4] .teaser_block_small_animated:hover .img,
  [class*=col-lg-4] .teaser_block_small_animated:hover .img {
    height: 200px;
    width: 373px;
  }
  [class*=col-md-3] .teaser_block_small_animated .img,
  [class*=col-lg-3] .teaser_block_small_animated .img,
  [class*=col-md-4] .teaser_block_small_animated .img,
  [class*=col-lg-4] .teaser_block_small_animated .img {
    height: 200px;
    width: 373px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .teaser_block_small_animated h3 {
    font-size: 24px;
  }
}
.teaser_block_small_graphicless_animated {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-top: 200px;
  padding-bottom: 96px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding-top: 250px;
  padding-bottom: 20px;
  text-align: center;
  max-width: 373px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
}
.teaser_block_small_graphicless_animated h3 {
  font-size: 27px;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
.teaser_block_small_graphicless_animated h3:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.teaser_block_small_graphicless_animated .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  text-align: center;
  height: 200px;
}
.component.blocks_in_4_columns_with_accordion .teaser_block_small_graphicless_animated .img {
  height: 180px;
}
@media only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_small_graphicless_animated .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block_small_graphicless_animated .img img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  vertical-align: bottom;
}
.teaser_block_small_graphicless_animated .buttons {
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
}
.teaser_block_small_graphicless_animated.active,
.teaser_block_small_graphicless_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
.teaser_block_small_graphicless_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated,
[class*=col-lg-3] .teaser_block_small_graphicless_animated {
  padding-top: 130px;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated .img,
[class*=col-lg-3] .teaser_block_small_graphicless_animated .img {
  height: 130px;
}
.component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_small_graphicless_animated,
.component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_small_graphicless_animated {
  padding-top: 180px;
}
.teaser_block_small_graphicless_animated .img {
  width: 466px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 250px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_small_graphicless_animated .buttons {
  bottom: -70px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_small_graphicless_animated:hover {
  padding-top: 200px;
  padding-bottom: 70px;
}
.teaser_block_small_graphicless_animated:hover .img {
  width: 373px;
  height: 200px;
}
@media only screen and (min-width: 481px) {
  .teaser_block_small_graphicless_animated:hover .buttons {
    bottom: 10px;
  }
}
[class*=col-md-3] .teaser_block_small_graphicless_animated,
[class*=col-lg-3] .teaser_block_small_graphicless_animated {
  padding-top: 182px;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated .img,
[class*=col-lg-3] .teaser_block_small_graphicless_animated .img {
  height: 182px;
  width: 340px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_small_graphicless_animated .img,
  [class*=col-lg-3] .teaser_block_small_graphicless_animated .img {
    width: 460px;
  }
}
[class*=col-md-3] .teaser_block_small_graphicless_animated:hover,
[class*=col-lg-3] .teaser_block_small_graphicless_animated:hover {
  padding-top: 130px;
  padding-bottom: 72px;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated:hover .img,
[class*=col-lg-3] .teaser_block_small_graphicless_animated:hover .img {
  height: 130px;
  width: 272px;
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_small_graphicless_animated:hover .img,
  [class*=col-lg-3] .teaser_block_small_graphicless_animated:hover .img {
    height: 130px;
    width: 380px;
  }
}
@media only screen and (max-width: 480px) {
  .teaser_block_small_graphicless_animated {
    position: relative;
    margin: 1em auto;
    padding: 20px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 1px #ededed;
    -moz-box-shadow: 0 0 0 1px #ededed;
    box-shadow: 0 0 0 1px #ededed;
    padding-top: 200px;
    padding-bottom: 96px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .teaser_block_small_graphicless_animated h3 {
    font-size: 27px;
    position: relative;
    margin: 0;
    padding: 15px 0;
  }
  .teaser_block_small_graphicless_animated h3:before {
    content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
    display: block;
    width: 28px;
    height: 28px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 50%;
    margin: -14px 0 0 -14px;
    color: #ededed;
    background: #fff;
    text-align: center;
    line-height: 28px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .teaser_block_small_graphicless_animated .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    margin: 0;
    border: none;
    text-align: center;
    height: 200px;
  }
  .component.blocks_in_4_columns_with_accordion .teaser_block_small_graphicless_animated .img {
    height: 180px;
  }
  .teaser_block_small_graphicless_animated .img img {
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    vertical-align: bottom;
  }
  .teaser_block_small_graphicless_animated .buttons {
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 30px;
    left: 20px;
  }
  .teaser_block_small_graphicless_animated.active,
  .teaser_block_small_graphicless_animated:hover {
    -webkit-box-shadow: 0 0 0 3px #d6a20e;
    -moz-box-shadow: 0 0 0 3px #d6a20e;
    box-shadow: 0 0 0 3px #d6a20e;
  }
  [class*=col-md-3] .teaser_block_small_graphicless_animated,
  [class*=col-lg-3] .teaser_block_small_graphicless_animated {
    padding-top: 130px;
  }
  [class*=col-md-3] .teaser_block_small_graphicless_animated .img,
  [class*=col-lg-3] .teaser_block_small_graphicless_animated .img {
    height: 130px;
  }
  .component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_small_graphicless_animated,
  .component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_small_graphicless_animated {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 480px) and only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_small_graphicless_animated .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block_small_graphicless_animated:hover {
  padding-top: 20px;
}
.teaser_block_small_graphicless_animated {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-top: 200px;
  padding-bottom: 96px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding-top: 250px;
  padding-bottom: 20px;
  text-align: center;
  max-width: 373px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
}
.teaser_block_small_graphicless_animated h3 {
  font-size: 27px;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
.teaser_block_small_graphicless_animated h3:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.teaser_block_small_graphicless_animated .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  text-align: center;
  height: 200px;
}
.component.blocks_in_4_columns_with_accordion .teaser_block_small_graphicless_animated .img {
  height: 180px;
}
@media only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser_block_small_graphicless_animated .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.teaser_block_small_graphicless_animated .img img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  vertical-align: bottom;
}
.teaser_block_small_graphicless_animated .buttons {
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
}
.teaser_block_small_graphicless_animated.active,
.teaser_block_small_graphicless_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
.teaser_block_small_graphicless_animated:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated,
[class*=col-lg-3] .teaser_block_small_graphicless_animated {
  padding-top: 130px;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated .img,
[class*=col-lg-3] .teaser_block_small_graphicless_animated .img {
  height: 130px;
}
.component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser_block_small_graphicless_animated,
.component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser_block_small_graphicless_animated {
  padding-top: 180px;
}
.teaser_block_small_graphicless_animated .img {
  width: 466px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 250px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_small_graphicless_animated .buttons {
  bottom: -70px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.teaser_block_small_graphicless_animated:hover {
  padding-top: 200px;
  padding-bottom: 70px;
}
.teaser_block_small_graphicless_animated:hover .img {
  width: 373px;
  height: 200px;
}
@media only screen and (min-width: 481px) {
  .teaser_block_small_graphicless_animated:hover .buttons {
    bottom: 10px;
  }
}
[class*=col-md-3] .teaser_block_small_graphicless_animated,
[class*=col-lg-3] .teaser_block_small_graphicless_animated {
  padding-top: 182px;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated .img,
[class*=col-lg-3] .teaser_block_small_graphicless_animated .img {
  height: 182px;
  width: 340px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_small_graphicless_animated .img,
  [class*=col-lg-3] .teaser_block_small_graphicless_animated .img {
    width: 460px;
  }
}
[class*=col-md-3] .teaser_block_small_graphicless_animated:hover,
[class*=col-lg-3] .teaser_block_small_graphicless_animated:hover {
  padding-top: 130px;
  padding-bottom: 72px;
}
[class*=col-md-3] .teaser_block_small_graphicless_animated:hover .img,
[class*=col-lg-3] .teaser_block_small_graphicless_animated:hover .img {
  height: 130px;
  width: 272px;
}
@media only screen and (max-width: 767px) {
  [class*=col-md-3] .teaser_block_small_graphicless_animated:hover .img,
  [class*=col-lg-3] .teaser_block_small_graphicless_animated:hover .img {
    height: 130px;
    width: 380px;
  }
}
.teaser_block_small_graphicless_animated:hover {
  padding-top: 20px;
}
.component.teaser_block_small {
  padding-top: 200px;
  padding-bottom: 96px;
}
.component.teaser_block_small_graphicless_animated {
  padding-top: 70px;
}
@media only screen and (max-width: 480px) {
  .component.teaser_block_small_graphicless_animated {
    padding-bottom: 70px;
    padding-top: 20px;
  }
}
.component.teaser_block_small_graphicless_animated:hover {
  padding-top: 20px;
}
.component.teaser_block_small_animated,
.component.teaser_block_animated {
  padding-top: 250px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 480px) {
  .component.teaser_block_small_animated,
  .component.teaser_block_animated {
    padding-bottom: 70px;
    padding-top: 200px;
  }
}
.component.teaser_block_small_animated:hover,
.component.teaser_block_animated:hover {
  padding-top: 200px;
  padding-bottom: 70px;
}
.filter_block {
  margin: 1em auto;
  padding: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #ededed;
  background: #f9f9f9;
}
.filter_block .field_label {
  display: inline-block;
  margin: 0 18px 0 33px;
}
.filter_block .field_label:first-of-type {
  padding: 17px 0;
  margin: 0 16px 0 0;
  font-family: robotoCondensed, sans-serif;
  color: #046e5a;
}
.filter_block .field_container {
  display: inline-block;
  vertical-align: top;
  padding: 14px 0 12px 33px;
  border-style: solid;
  border-width: 0 1px;
  border-color: transparent;
  line-height: 1.7em;
}
.filter_block .field_container .range-label {
  margin-right: 10px;
  color: #999798;
}
.filter_block .field_container .field_label:first-of-type {
  margin-left: 0;
}
.filter_block input[type="text"] {
  border-width: 1px;
  border-style: solid;
  border-color: #ededed;
  width: 160px;
}
.filter_block input[type="text"]:focus {
  outline: none;
}
.filter_block .date_picker_field {
  text-align: center;
}
.filter_block .ui-datepicker-trigger {
  margin: 0 8px 0 11px;
}
@media only screen and (min-width: 768px) {
  .filter_block {
    padding-top: 0;
    padding-bottom: 0;
    margin: 45px 0;
  }
  .filter_block .field_container.active {
    background: #fff;
    border-color: #ededed;
  }
}
@media only screen and (max-width: 767px) {
  .filter_block .field_label:first-of-type {
    padding: 0;
  }
  .filter_block .field_container {
    display: block;
    padding: 12px 0 0 0;
  }
}
.box_table {
  border-bottom: 1px solid #ededed;
  margin: 0 0 26px 0;
}
.box_table table {
  table-layout: fixed;
  width: 100%;
}
.box_table caption {
  margin: 0;
  padding: 16px 20px;
  background: #f9f9f9;
  text-align: left;
  font-size: 24px;
  font-family: lora_italic, serif;
  line-height: 1.2em;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .box_table caption {
    font-size: 21.6px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .box_table caption {
    font-size: 19.2px;
  }
}
@media only screen and (max-width: 480px) {
  .box_table caption {
    font-size: 16.8px;
  }
}
.box_table caption + thead {
  border-top: 1px solid #ededed;
}
.box_table th {
  vertical-align: bottom;
  font-weight: 400;
  font-size: 14px;
}
.box_table th,
.box_table td {
  padding: 26px 20px;
  vertical-align: top;
}
.box_table th:first-child,
.box_table td:first-child {
  padding-left: 0;
}
.box_table th.row_number,
.box_table td.row_number {
  width: 107px;
  padding-right: 0;
  text-align: center;
  color: #c5c5c5;
}
.box_table td {
  border-top: 1px solid #ededed;
}
.box_table td div a {
  display: inline;
}
@media l only screen and (max-width: 767px) {
  .box_table th,
  .box_table td {
    padding: 1em;
  }
  .box_table th.row_number,
  .box_table td.row_number {
    width: 70px;
    text-align: center;
  }
}
.box_table_pager_panel table {
  table-layout: fixed;
  width: 100%;
}
.form_errors {
  display: none;
  margin: 20px 0 0 0;
  padding: 20px;
  color: #a94442;
  background-color: #f2dede;
  border-style: solid;
  border-width: 1px;
  border-color: #ebccd1;
}
.form_errors ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: bold;
}
.form_errors p {
  margin: 0;
}
.icon {
  font-size: 0;
}
.icon:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.icon-gplus:before {
  font-size: 22px;
  text-align: center;
  color: inherit;
  content: '\e800';
}
@media only screen and (max-width: 767px) {
  .icon-gplus:before {
    font-size: 44px;
  }
}
.icon-facebook:before {
  font-size: 22px;
  text-align: center;
  color: inherit;
  content: '\e801';
}
@media only screen and (max-width: 767px) {
  .icon-facebook:before {
    font-size: 44px;
  }
}
[class*="link_to_"] {
  position: relative;
}
[class*="link_to_"]:after {
  content: "";
  display: block;
  padding-left: 2px;
  padding-right: 2px;
  position: absolute;
  top: 0;
  right: 0;
  background: #c5c5c5;
  color: #fff;
  font-size: 12px;
  line-height: 1.167em;
  font-family: sans-serif;
  font-weight: 700;
}
.link_to_PPT:after {
  content: "PPT";
}
.link_to_XLS:after {
  content: "XLS";
}
.link_to_PDF:after {
  content: "PDF";
}
.link_to_pdf:after {
  content: "PDF" !important;
}
.link_to_ppt:after {
  content: "PPT" !important;
}
.link_to_xls:after {
  content: "XLS" !important;
}
.icon-pdf:before {
  content: "";
  background: url("/_cms-img/time20250725085903/mennica/pdficon.png") no-repeat scroll 0 center transparent;
  padding-left: 39px;
  height: 30px;
  display: inline-block;
  vertical-align: bottom;
}
.carousel_marker_element,
.text_carousel_marker_element,
.html_carousel_marker_element {
  display: none;
}
.carousel_js_element .item {
  text-align: center;
}
.carousel_js_element .item > * {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .carousel_js_element .item {
    max-width: 550px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.carousel_js_element .item img {
  max-width: 100%;
}
.text_carousel_js_element.white,
.html_carousel_js_element.white {
  color: #fff;
}
.text_carousel_js_element .owl-dots,
.html_carousel_js_element .owl-dots {
  display: none;
}
.text_carousel_js_element .pagination-number,
.html_carousel_js_element .pagination-number {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding-top: 6px;
}
.text_carousel_js_element .owl-nav,
.html_carousel_js_element .owl-nav {
  display: block;
  max-width: 200px;
  position: relative;
  margin: 0 auto;
}
.text_carousel_js_element .owl-nav .owl-prev,
.html_carousel_js_element .owl-nav .owl-prev,
.text_carousel_js_element .owl-nav .owl-next,
.html_carousel_js_element .owl-nav .owl-next {
  display: block;
  position: absolute;
  left: 34px;
  top: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  margin: 0;
  text-align: center;
  color: #d6a20e;
  border-style: solid;
  border-width: 1px;
  z-index: 10002;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 0;
}
.text_carousel_js_element .owl-nav .owl-prev:before,
.html_carousel_js_element .owl-nav .owl-prev:before,
.text_carousel_js_element .owl-nav .owl-next:before,
.html_carousel_js_element .owl-nav .owl-next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.text_carousel_js_element .owl-nav .owl-prev:before,
.html_carousel_js_element .owl-nav .owl-prev:before,
.text_carousel_js_element .owl-nav .owl-next:before,
.html_carousel_js_element .owl-nav .owl-next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.text_carousel_js_element .owl-nav .owl-prev:before,
.html_carousel_js_element .owl-nav .owl-prev:before,
.text_carousel_js_element .owl-nav .owl-next:before,
.html_carousel_js_element .owl-nav .owl-next:before {
  content: '\e805';
}
.text_carousel_js_element .owl-nav .owl-prev:hover,
.html_carousel_js_element .owl-nav .owl-prev:hover,
.text_carousel_js_element .owl-nav .owl-next:hover,
.html_carousel_js_element .owl-nav .owl-next:hover,
.text_carousel_js_element .owl-nav .owl-prev:focus,
.html_carousel_js_element .owl-nav .owl-prev:focus,
.text_carousel_js_element .owl-nav .owl-next:focus,
.html_carousel_js_element .owl-nav .owl-next:focus,
.text_carousel_js_element .owl-nav .owl-prev:active,
.html_carousel_js_element .owl-nav .owl-prev:active,
.text_carousel_js_element .owl-nav .owl-next:active,
.html_carousel_js_element .owl-nav .owl-next:active {
  text-decoration: none;
}
.text_carousel_js_element .owl-nav .owl-prev:before,
.html_carousel_js_element .owl-nav .owl-prev:before,
.text_carousel_js_element .owl-nav .owl-next:before,
.html_carousel_js_element .owl-nav .owl-next:before {
  font-size: 20px;
}
.text_carousel_js_element .owl-nav .owl-prev:hover,
.html_carousel_js_element .owl-nav .owl-prev:hover,
.text_carousel_js_element .owl-nav .owl-next:hover,
.html_carousel_js_element .owl-nav .owl-next:hover {
  background: #d6a20e;
  color: #fff;
}
.text_carousel_js_element .owl-nav .owl-next,
.html_carousel_js_element .owl-nav .owl-next {
  left: auto;
  right: 34px;
}
.text_carousel_js_element .owl-nav .owl-next:before,
.html_carousel_js_element .owl-nav .owl-next:before {
  content: '\e806';
}
.text_carousel_js_element .item,
.html_carousel_js_element .item {
  text-align: center;
}
.text_carousel_js_element .item h2,
.html_carousel_js_element .item h2 {
  margin: 32px 0 64px;
  font-family: lora_italic,serif;
  line-height: 1.2em;
  font-size: 48px;
}
@media only screen and (max-width: 961px) {
  .text_carousel_js_element .item h2,
  .html_carousel_js_element .item h2 {
    font-size: 34px;
  }
}
.text_carousel_js_element .item .lead:before,
.html_carousel_js_element .item .lead:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: -12px;
  top: auto;
  bottom: -0.5em;
}
.html_carousel_js_element {
  padding: 0px 15px 0px 15px;
}
.html_carousel_js_element .item {
  text-align: left;
}
.ckcarousel_user_image_carousel .carousel_js_element .owl-nav {
  height: 35px;
}
.content_area .default_html_carousel hr {
  margin: 15px 0;
  max-width: 100%;
}
.content_area .default_html_carousel p {
  margin-bottom: 10px;
}
.clickable {
  cursor: pointer;
}
.separator {
  margin-bottom: 10px;
}
.box-grey-wrapper {
  border: 1px solid #ededed;
  background: #fff;
  overflow: hidden;
}
.textCenter {
  text-align: center;
}
.content_area hr {
  max-width: 48px;
  margin-left: 0;
}
.content_area table {
  width: 100%;
}
.content_area table thead tr {
  border-bottom: 1px solid #ededed;
}
.content_area table thead tr th {
  padding: 15px 20px;
  color: #d6a20e;
  font-size: 0.9em;
}
@media only screen and (max-width: 480px) {
  .content_area table thead tr th {
    padding: 10px 5px;
    font-size: 11px;
  }
}
.content_area table tbody tr {
  border-bottom: 1px solid #ededed;
}
.content_area table tbody tr td {
  padding: 15px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .content_area table tbody tr td {
    padding: 5px;
  }
  .content_area table tbody tr td img {
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 480px) {
  .content_area table tbody tr td {
    padding: 10px 5px;
    font-size: 11px;
  }
}
.content_area .table_scroll_box {
  min-height: 0.01%;
  overflow-x: auto;
}
.content_area .table_scroll_box .table_scroll {
  margin-bottom: 20px;
  max-width: 100%;
  width: 100%;
}
.content_area .decor {
  color: #d6a20e;
}
@media screen {
  .accordion.accordion_on {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #ededed;
  }
  .accordion.accordion_on > .accordion_item {
    border-bottom: 1px solid #ededed;
    font-weight: bold;
  }
  .accordion.accordion_on > .accordion_item > .head,
  .accordion.accordion_on > .accordion_item > DIV > .head {
    margin-top: 1px;
    cursor: pointer;
    position: relative;
    display: block;
    padding: 14px 0;
  }
  .accordion.accordion_on > .accordion_item:last-child > .body {
    padding-bottom: 0;
  }
}
@media print {
  .accordion.accordion_on > .accordion_item > .body,
  .accordion.accordion_on > .accordion_item > DIV > .body {
    display: block !important;
  }
}
/**
 *  Komponent :: youtube-video
 */
.youtube-video > div {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.youtube-video > div > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**
 *  Komponent :: cookie policy
 */
#cookiesPolicyPopup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10003;
}
@media print {
  #cookiesPolicyPopup {
    display: none;
  }
}
#cookiesPolicyPopup #cookies_box {
  padding: 15px 30px;
  font-size: 15px;
  max-width: 1232px;
  margin: 0 auto;
  background-color: #FFF;
  -webkit-box-shadow: 0px 0px 30px #c5c5c5;
  -moz-box-shadow: 0px 0px 30px #c5c5c5;
  box-shadow: 0px 0px 30px #c5c5c5;
}
#cookiesPolicyPopup #cookies_box .left {
  width: 60%;
  padding-right: 10px;
  float: left;
}
@media only screen and (max-width: 480px) {
  #cookiesPolicyPopup #cookies_box .left {
    width: 100%;
    text-align: center;
  }
}
#cookiesPolicyPopup #cookies_box .left a {
  font-weight: 500;
}
#cookiesPolicyPopup #cookies_box .right {
  width: 40%;
  float: right;
  width: 15%;
}
#cookiesPolicyPopup #cookies_box .right a {
  float: right;
}
@media only screen and (max-width: 480px) {
  #cookiesPolicyPopup #cookies_box .right a {
    float: none;
  }
}
@media only screen and (max-width: 480px) {
  #cookiesPolicyPopup #cookies_box .right {
    width: 100%;
    text-align: center;
    margin-top: 1em;
  }
}
#cookiesPolicyPopup #cookies_box .cookie_info_close {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 35px;
}
/**
 *  Komponent :: Wyniki wyszukiwania
 */
.component.search_loader {
  padding: 30px 0;
  text-align: center;
}
.component.search_loader img {
  padding-right: 20px;
}
/**
 *  Style ogólne (władze)
 */
.border_bt {
  border-bottom: 1px solid #ededed;
  padding: 15px 0;
  border-top: 1px solid #ededed;
}
.border_b {
  border-bottom: 1px solid #ededed;
  display: block;
  padding-bottom: 15px;
}
.component.padding_b,
.padding_b0,
.component.padding_b0 {
  padding-bottom: 0;
}
.component.padding_t0 {
  padding-top: 0;
}
p.margin_b0 {
  margin-bottom: 0;
}
.decor {
  color: #d6a20e;
}
@media print {
  .messages,
  .notPrintable {
    display: none;
  }
}
.tabs > .wrapper > .tabs_menu {
  display: none;
  list-style: none;
}
@media screen {
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu {
    display: block;
    float: left;
    width: 33.33333333%;
    position: relative;
    padding-left: 0;
    padding-right: 40px;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI {
    position: relative;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI H3,
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI H2 {
    margin: 0;
    padding: 1.2em 20px 1.2em 0;
    cursor: pointer;
    font-size: 1em;
    font-family: robotoCondensed;
    border-style: solid;
    border-width: 1px 0;
    border-color: #ededed;
    position: relative;
    transition: 0.5s ease all;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI H3 SPAN,
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI H2 SPAN {
    display: block;
    padding-top: 0.25em;
    font-size: 0.6375em;
    font-weight: 300;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI H3 SPAN:empty,
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI H2 SPAN:empty {
    padding-top: 0;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI:hover {
    color: #d6a20e;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI.active {
    font-size: 0;
    font-size: 1em;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI.active:before {
    font-family: "fontello_mennica";
    font-style: normal;
    font-weight: inherit;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI.active:before {
    font-family: "fontello_mennica";
    font-style: normal;
    font-weight: inherit;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI.active:before {
    content: '\e806';
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI.active:before {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -0.6em;
    color: #d6a20e;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI.active H3,
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI.active H2 {
    padding-left: 20px;
    border-color: #d6a20e;
    color: #d6a20e;
    z-index: 2;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_menu > LI + LI {
    margin-top: -1px;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_items {
    float: left;
    width: 66.66666667%;
    border: 1px solid #ededed;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_items > .tabs_item > .head {
    display: none;
  }
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_items > .tabs_item > .head H3,
  .tabs > .wrapper.tabs_type_left.tabs_on > .tabs_items > .tabs_item > .head H2 {
    font-family: robotoCondensed;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu {
    display: block;
    padding: 0;
    border-bottom: 1px solid #ededed;
    padding-bottom: 10px;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
    position: relative;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI:after {
    content: "|";
    color: #ededed;
    position: absolute;
    right: -6px;
    top: 7px;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI:last-child:after {
    display: none;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI H3,
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI H2 {
    margin: 0;
    height: 100%;
    padding: 0.5em 1em;
    font-size: 1em;
    font-family: robotoCondensed;
    cursor: pointer;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI H3 SPAN,
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI H2 SPAN {
    display: block;
    padding-top: 0.25em;
    font-size: 0.6375em;
    font-weight: 300;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI H3 SPAN:empty,
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI H2 SPAN:empty {
    padding-top: 0;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI:hover {
    color: #d6a20e;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_menu > LI.active {
    color: #d6a20e;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_items > .tabs_item {
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .tabs > .wrapper.tabs_type_top.tabs_on > .tabs_items > .tabs_item > .head {
    display: none;
  }
  .tabs > .wrapper .tabs_item > .head H3,
  .tabs > .wrapper .tabs_item > .head H2 {
    font-family: robotoCondensed;
    border-style: solid;
    border-width: 1px 0;
    border-color: #ededed;
    position: relative;
    padding: 1em 20px 1em 0;
    margin: 0;
  }
}
.tabs > .wrapper .component.content iframe {
  display: block;
}
@media only screen and (min-width: 961px) {
  .tabs > .wrapper .component.content {
    padding: 0 0 0 40px;
  }
  .tabs > .wrapper .component.content iframe {
    height: 415px;
    display: block;
  }
}
@media only screen and (max-width: 960px) {
  .tabs > .wrapper .component.content {
    margin: 0 20px;
  }
}
@media only screen and (max-width: 480px) {
  .tabs > .wrapper .component.content {
    margin: 0;
  }
}
.tabs > .wrapper .accordion_on {
  border: 0 none;
}
.tabs > .wrapper .accordion_item {
  border-bottom: 0 none;
}
.tabs > .wrapper .accordion_item > .head {
  padding: 0;
}
.tabs > .wrapper .accordion_item > .head H3,
.tabs > .wrapper .accordion_item > .head H2 {
  position: relative;
}
.tabs > .wrapper .accordion_item > .head H3:after,
.tabs > .wrapper .accordion_item > .head H2:after {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  border-style: solid;
  border-width: 8px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: inherit;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
}
.tabs > .wrapper .accordion_item + .accordion_item > .head H3,
.tabs > .wrapper .accordion_item + .accordion_item > .head H2 {
  border-width: 1px 0;
  margin-top: -2px;
}
.tabs > .wrapper .accordion_item_active > .head H3,
.tabs > .wrapper .accordion_item_active > .head H2 {
  color: #d6a20e;
  border-color: #d6a20e;
}
.tabs > .wrapper .accordion_item_active > .head H3:after,
.tabs > .wrapper .accordion_item_active > .head H2:after {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  border-style: solid;
  border-width: 8px;
  border-right-color: transparent;
  border-top-color: transparent;
  border-left-color: transparent;
  border-bottom-color: inherit;
  margin-top: -0.5em;
}
@media print {
  .tabs > .wrapper .tabs_item {
    display: block !important;
  }
}
.ui-datepicker-trigger {
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.ui-datepicker {
  width: 272px;
  border-style: solid;
  border-width: 0 1px 1px 1px;
  border-color: #ededed;
  padding: 14px 37px 62px 32px;
  background: #fff;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: auto;
  background: #fff;
  display: inline-block;
  border: 1px solid #ededed;
}
.ui-datepicker .ui-datepicker-header {
  margin: 0 -10px;
  padding-bottom: 10px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0;
  padding: 0 10px;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  margin-right: 3px;
}
.ui-datepicker table {
  table-layout: fixed;
}
.ui-datepicker th {
  padding: 0;
}
.ui-datepicker th span {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  font-size: 13px;
  color: #ededed;
  width: 90%;
  display: inline-block;
}
.ui-datepicker td {
  padding: 0 1px 1px 0;
  font-size: 14px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  padding: 0;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #333333;
  background: none;
}
.ui-datepicker td .ui-state-active {
  background: #d6a20e;
  color: white;
}
.ui-datepicker td.ui-state-disabled span,
.ui-datepicker td.ui-state-disabled a {
  color: #c5c5c5;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  color: #c5c5c5;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev.ui-state-disabled,
.ui-datepicker .ui-datepicker-next.ui-state-disabled {
  color: #ededed;
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  border-style: solid;
  border-width: 8px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: inherit;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
  top: 2px;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  border-style: solid;
  border-width: 8px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-left-color: inherit;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
  top: 2px;
}
@media only screen and (min-width: 768px) {
  .ui-datepicker {
    margin-left: -63px;
  }
}
.owl-carousel .owl-dots {
  text-align: center;
  font-size: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 26px;
  left: 0;
}
.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 27px;
  margin: 0 5px;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 17px;
  height: 17px;
  margin: 0;
  background: #e4e2e3;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background-color: #d6a20e;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 0 2px #d6a20e;
  -moz-box-shadow: 0 0 0 2px #d6a20e;
  box-shadow: 0 0 0 2px #d6a20e;
}
.owl-carousel .owl-dots .owl-dot:hover:after,
.owl-carousel .owl-dots .owl-dot:focus:after {
  background-color: #fff;
  border-color: #d6a20e;
}
.owl-theme .owl-controls .owl-dot span {
  display: none;
}
.owl-theme .owl-nav {
  display: none;
}
.owl-controls {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 26px;
  left: 0;
}
.thumb-nav,
.close-carousel {
  display: none;
}
.dark-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.zoomed .carousel_js_element .owl-nav {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  max-width: 100%;
}
.zoomed .carousel_js_element .owl-nav .owl-prev {
  left: 30px;
}
.zoomed .carousel_js_element .owl-nav .owl-next {
  right: 30px;
}
.zoomed .carousel_js_element .pagination-number {
  display: none;
}
.carousel_js_element .owl-stage-outer,
.product_images_list .owl-stage-outer {
  padding-bottom: 10px;
}
.carousel_js_element .xowl-carousel .item img,
.product_images_list .xowl-carousel .item img {
  display: none;
}
.carousel_js_element .pagination-number,
.product_images_list .pagination-number {
  position: absolute;
  width: auto;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding-top: 6px;
  left: 35px;
  right: 35px;
  top: 0;
}
.carousel_js_element .owl-nav,
.product_images_list .owl-nav {
  display: block;
  max-width: 200px;
  position: relative;
  margin: 10px auto;
  overflow: hidden;
}
.carousel_js_element .owl-nav .owl-prev,
.product_images_list .owl-nav .owl-prev,
.carousel_js_element .owl-nav .owl-next,
.product_images_list .owl-nav .owl-next {
  display: inline-block;
  position: relative;
  float: left;
  width: 35px;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  margin: 0;
  text-align: center;
  color: #d6a20e;
  border-style: solid;
  border-width: 1px;
  z-index: 10002;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 0;
}
.carousel_js_element .owl-nav .owl-prev:before,
.product_images_list .owl-nav .owl-prev:before,
.carousel_js_element .owl-nav .owl-next:before,
.product_images_list .owl-nav .owl-next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.carousel_js_element .owl-nav .owl-prev:before,
.product_images_list .owl-nav .owl-prev:before,
.carousel_js_element .owl-nav .owl-next:before,
.product_images_list .owl-nav .owl-next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.carousel_js_element .owl-nav .owl-prev:hover,
.product_images_list .owl-nav .owl-prev:hover,
.carousel_js_element .owl-nav .owl-next:hover,
.product_images_list .owl-nav .owl-next:hover,
.carousel_js_element .owl-nav .owl-prev:focus,
.product_images_list .owl-nav .owl-prev:focus,
.carousel_js_element .owl-nav .owl-next:focus,
.product_images_list .owl-nav .owl-next:focus,
.carousel_js_element .owl-nav .owl-prev:active,
.product_images_list .owl-nav .owl-prev:active,
.carousel_js_element .owl-nav .owl-next:active,
.product_images_list .owl-nav .owl-next:active {
  text-decoration: none;
}
.carousel_js_element .owl-nav .owl-prev:before,
.product_images_list .owl-nav .owl-prev:before,
.carousel_js_element .owl-nav .owl-next:before,
.product_images_list .owl-nav .owl-next:before {
  font-size: 20px;
}
.carousel_js_element .owl-nav .owl-prev:hover,
.product_images_list .owl-nav .owl-prev:hover,
.carousel_js_element .owl-nav .owl-next:hover,
.product_images_list .owl-nav .owl-next:hover {
  background: #d6a20e;
  color: #fff;
}
.carousel_js_element .owl-nav .owl-prev:before,
.product_images_list .owl-nav .owl-prev:before {
  content: '\e805';
}
.carousel_js_element .owl-nav .owl-next,
.product_images_list .owl-nav .owl-next {
  float: right;
}
.carousel_js_element .owl-nav .owl-next:before,
.product_images_list .owl-nav .owl-next:before {
  content: '\e806';
}
.carousel_js_element_wrapper.zoomed,
.product_images_list.zoomed {
  position: fixed;
  top: 0;
  left: 50%;
  margin-left: -616px;
  width: 100%;
  max-width: 1232px;
  z-index: 10000;
  background: #fff;
  padding-top: 10px;
}
.carousel_js_element_wrapper.zoomed DIV.owl-item .product_image,
.product_images_list.zoomed DIV.owl-item .product_image {
  cursor: pointer;
}
.carousel_js_element_wrapper.zoomed DIV.owl-item .product_image:after,
.product_images_list.zoomed DIV.owl-item .product_image:after {
  display: none;
}
@media only screen and (max-width: 1232px) {
  .carousel_js_element_wrapper.zoomed,
  .product_images_list.zoomed {
    left: 0;
    margin-left: 0;
  }
}
.carousel_js_element_wrapper.zoomed .carousel_js_element,
.product_images_list.zoomed .carousel_js_element {
  z-index: 10001;
  background: #fff;
  padding-top: 60px;
}
.carousel_js_element_wrapper.zoomed .owl-stage-outer .owl-item .item img,
.product_images_list.zoomed .owl-stage-outer .owl-item .item img {
  height: auto;
  width: auto;
}
.carousel_js_element_wrapper.zoomed .owl-controls,
.product_images_list.zoomed .owl-controls {
  z-index: 10002;
  margin: 0;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav,
.product_images_list.zoomed .owl-controls .owl-nav {
  display: block;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .pagination-number,
.product_images_list.zoomed .owl-controls .owl-nav .pagination-number {
  display: none;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next {
  display: block;
  position: fixed;
  left: 34px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  margin: 0;
  margin-top: -17.5px;
  text-align: center;
  color: #d6a20e;
  border-style: solid;
  border-width: 1px;
  z-index: 10002;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 0;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:before,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:before,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:hover,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:hover,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:hover,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:hover,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:focus,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:focus,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:focus,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:focus,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:active,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:active,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:active,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:active {
  text-decoration: none;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:before,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:before {
  font-size: 20px;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:hover,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:hover,
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:hover,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:hover {
  background: #d6a20e;
  color: #fff;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-prev:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-prev:before {
  content: '\e805';
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next {
  left: auto;
  right: 34px;
}
.carousel_js_element_wrapper.zoomed .owl-controls .owl-nav .owl-next:before,
.product_images_list.zoomed .owl-controls .owl-nav .owl-next:before {
  content: '\e806';
}
.carousel_js_element_wrapper.zoomed .thumb-nav,
.product_images_list.zoomed .thumb-nav {
  display: block;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  background: #fff;
  position: relative;
  z-index: 10002;
}
.carousel_js_element_wrapper.zoomed .thumb-nav .thumb,
.product_images_list.zoomed .thumb-nav .thumb {
  display: inline-block;
  height: 100px;
  width: 100px;
  margin-left: -1px;
  border: 1px solid #c5c5c5;
  vertical-align: middle;
}
.carousel_js_element_wrapper.zoomed .thumb-nav .thumb.active,
.product_images_list.zoomed .thumb-nav .thumb.active {
  box-shadow: inset 0px 0px 0px 2px #c5c5c5;
}
.carousel_js_element_wrapper.zoomed .thumb-nav .thumb img,
.product_images_list.zoomed .thumb-nav .thumb img {
  max-width: 90px;
  max-height: 90px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.carousel_js_element_wrapper.zoomed .dark-bg,
.product_images_list.zoomed .dark-bg,
.carousel_js_element_wrapper.zoomed .dark-bg-carousel,
.product_images_list.zoomed .dark-bg-carousel {
  display: block;
}
.carousel_js_element_wrapper.zoomed .close-carousel,
.product_images_list.zoomed .close-carousel {
  display: block;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 35px;
  height: 35px;
  line-height: 34px;
  overflow: hidden;
  margin: 0;
  text-align: center;
  color: #d6a20e;
  border-style: solid;
  border-width: 1px;
  z-index: 10003;
  background: #fff;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 0;
  font-weight: 200;
}
.carousel_js_element_wrapper.zoomed .close-carousel:before,
.product_images_list.zoomed .close-carousel:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.carousel_js_element_wrapper.zoomed .close-carousel:before,
.product_images_list.zoomed .close-carousel:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.carousel_js_element_wrapper.zoomed .close-carousel:before,
.product_images_list.zoomed .close-carousel:before {
  content: '\e811';
}
.carousel_js_element_wrapper.zoomed .close-carousel:hover,
.product_images_list.zoomed .close-carousel:hover,
.carousel_js_element_wrapper.zoomed .close-carousel:focus,
.product_images_list.zoomed .close-carousel:focus,
.carousel_js_element_wrapper.zoomed .close-carousel:active,
.product_images_list.zoomed .close-carousel:active {
  text-decoration: none;
}
.carousel_js_element_wrapper.zoomed .close-carousel:before,
.product_images_list.zoomed .close-carousel:before {
  font-size: 20px;
}
.carousel_js_element_wrapper.zoomed .close-carousel:hover,
.product_images_list.zoomed .close-carousel:hover {
  background: #d6a20e;
  color: #fff;
}
span.field_container img.ui-datepicker-trigger {
  margin: -5px 6px 0 11px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
span.field_container.active {
  background: #ffffff url('/_cms-img/time20250725085903/mennica/x-icon.png') no-repeat 205px center !important;
}
span.field_container.active img.ui-datepicker-trigger {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
/**
 *	CSS wszystkich komponentów do jednego pliku
 */
.component_wrapper > .component.header {
  padding-top: 0;
}
@media only screen and (max-width: 960px) {
  .component.header {
    height: 60px;
  }
}
header nav {
  text-align: right;
  position: relative;
}
@media only screen and (max-width: 960px) {
  header {
    margin: -20px -30px;
    padding: 20px 30px 0;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 3000;
    /*MPDEV-395 - musi być owerflow bo nie widac menusa na Internet*/
    overflow: hidden;
  }
  header nav {
    padding: 0 55px 0 0;
    margin: 20px -15px 20px 0;
    font-size: 0;
    height: 35px;
    overflow: hidden;
  }
  header nav > * {
    font-size: 16px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  header nav {
    padding: 0 55px 0 0;
    margin: 20px 0;
    height: 35px;
  }
}
@media only screen and (min-width: 961px) {
  header {
    padding-bottom: 142px;
    border-bottom: 1px solid #ededed;
    margin-left: -30px;
    margin-right: -30px;
  }
  header nav {
    padding-right: 50px;
    min-height: 48px;
    background: #f9f9f9;
    border-bottom: 1px solid #ededed;
  }
}
.float-menu-wrapper.floated {
  position: fixed;
  top: 0;
  z-index: 2040;
  width: 100%;
  max-width: 1232px;
  margin-left: -30px;
}
@media only screen and (max-width: 960px) {
  .float-menu-wrapper.floated {
    display: none !important;
  }
}
.float-menu-wrapper.floated header.float-menu {
  opacity: 1;
  margin: 0;
  -webkit-transition: opacity 1s ease 0s;
  -moz-transition: opacity 1s ease 0s;
  -ms-transition: opacity 1s ease 0s;
  -o-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
  background-color: #fff;
  padding-bottom: 0;
  border-bottom: none;
}
.float-menu-wrapper.floated header.float-menu .nav-logo {
  top: 0;
  margin: 6px 0 0 24px;
  height: 36px;
  width: 36px;
  overflow: hidden;
}
.float-menu-wrapper.floated header.float-menu .nav-logo img.hidden-lg {
  display: block !important;
  width: 100%;
}
.float-menu-wrapper.floated header.float-menu .nav-logo img.hidden-xs {
  display: none !important;
}
.float-menu-wrapper.floated.show-submenu header.float-menu {
  padding-bottom: 142px;
  border-bottom: 1px solid #ededed;
}
.float-menu-wrapper.floated .nav-pages .nav-item-content {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .nav-logo {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    margin: 0;
    text-align: center;
    cursor: pointer;
  }
  .nav-logo:before {
    font-size: 35px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .nav-logo {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
@media only screen and (max-width: 960px) {
  .nav-logo {
    float: left;
    position: relative;
    z-index: 2;
    text-align: left;
  }
  .nav-logo img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .nav-menus-active .nav-logo img {
    top: auto;
    bottom: 0;
  }
}
@media only screen and (min-width: 961px) {
  .nav-logo {
    position: absolute;
    left: 0;
    top: 100%;
    margin: 24px 0 0 30px;
  }
}
@media only screen and (max-width: 960px) {
  .nav-menus-container {
    position: absolute;
    left: -999em;
    width: 0;
    height: 0;
    overflow: hidden;
    color: #fff;
  }
  .nav-menus-container a {
    color: inherit;
  }
  .nav-menus-container a:hover {
    color: inherit;
  }
}
@media only screen and (min-width: 961px) {
  .nav-menus-container {
    display: inline;
  }
}
.nav-pages {
  margin: 0;
}
.nav-pages ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-pages .nav-item-name,
.nav-pages a {
  cursor: pointer;
}
.nav-pages .nav-item-name:hover,
.nav-pages a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 960px) {
  .nav-pages {
    padding: 20px 0 0 0;
    text-align: left;
  }
  .nav-pages .nav-item-name,
  .nav-pages a {
    display: block;
    padding: 12px 0;
    border-top: 1px solid #217c6b;
    font-size: 22px;
    font-family: lora_italic, serif;
  }
  .nav-pages li {
    width: 100% !important;
  }
  .nav-pages li .nav-item-content {
    display: none;
  }
  .nav-pages li.active .nav-item-name {
    color: #d6a20e;
  }
  .nav-pages li.active .nav-item-content {
    display: block;
    position: relative;
  }
  .nav-pages li.active .nav-item-content:before {
    width: 50px;
    content: "";
    display: block;
    position: absolute;
    top: -0.5em;
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: #d6a20e;
  }
  .section-header .nav-pages li.active .nav-item-content:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .nav-pages li.active .nav-item-content:before {
    left: 0;
  }
  .nav-pages li.active .nav-item-content a {
    position: relative;
    padding: 6px 0 6px 24px;
    border: none;
    font-size: 18px;
    font-family: robotoCondensedLight, sans-serif;
    color: #d6a20e;
  }
  .nav-pages li.active .nav-item-content a span {
    color: #fff;
  }
  .nav-pages li.active .nav-item-content a:hover span {
    color: inherit;
  }
  .nav-pages li.active .nav-item-content a:after {
    position: absolute;
    left: 0;
    top: 50%;
    margin: -4px 0 0 4px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 4px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: inherit;
  }
  .nav-pages li.active .menu_list {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .nav-pages .nav-offer .nav-item-content {
    display: block;
  }
  .nav-pages .nav-offer .nav-item-content li.active {
    color: #d6a20e;
  }
  .nav-pages .nav-offer .nav-item-name,
  .nav-pages .nav-offer small {
    display: none;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .nav-pages {
    padding: 20px 0 0 0;
  }
}
@media only screen and (min-width: 961px) {
  .nav-pages {
    display: inline;
  }
  .nav-pages > ul {
    display: inline-block;
  }
  .nav-pages > ul li {
    display: inline-block;
  }
  .nav-pages > ul li .nav-item-name {
    display: inline-block;
    margin: 0;
    padding: 14px 12px;
    line-height: 20px;
    color: inherit;
  }
  .nav-pages > ul li .nav-item-content {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
    left: 280px;
    bottom: -142px;
    text-align: left;
  }
  .nav-pages > ul li.active .nav-item-name {
    color: #046e5a;
    position: relative;
  }
  .nav-pages > ul li.active .nav-item-name:after {
    position: absolute;
    left: 50%;
    top: 100%;
    margin: -8px 0 0 -4px;
    content: "";
    color: #333333;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 4px;
    border-right-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: inherit;
  }
  .nav-pages > ul li.active .nav-item-content {
    display: block;
  }
  .nav-pages .nav-item-content .menu_list {
    padding: 20px 0 0 38px;
  }
  .nav-pages .nav-item-content .menu_list li {
    float: left;
    width: 33%;
  }
  .nav-pages .nav-item-content .menu_list li.active a {
    color: #046e5a;
  }
  .nav-pages .nav-item-content .menu_list a {
    display: block;
    position: relative;
    color: #333333;
    box-sizing: content-box;
    font-family: lora_italic, serif;
    padding: 5px 0 4px 14px;
    min-height: 22px;
  }
  .nav-pages .nav-item-content .menu_list a:hover,
  .nav-pages .nav-item-content .menu_list a:focus,
  .nav-pages .nav-item-content .menu_list a:active {
    text-decoration: none;
  }
  .nav-pages .nav-item-content .menu_list a:hover,
  .nav-pages .nav-item-content .menu_list a.active {
    color: #046e5a;
  }
  .nav-pages .nav-item-content .menu_list a:before {
    position: absolute;
    left: 0;
    top: 50%;
    margin: -4px 0 0 0;
    content: "";
    color: #333333;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 4px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: inherit;
  }
  .nav-pages .nav-offer .nav-item-content {
    overflow: hidden;
    margin: 0 0 0 35px;
  }
  .nav-pages .nav-offer .nav-item-content > * {
    float: left;
    width: 20%;
  }
  .nav-pages .nav-offer .nav-item-content a {
    display: block;
    position: relative;
    color: #333333;
    box-sizing: content-box;
    font-family: lora_italic, serif;
    padding: 25px 40px 0 0;
    font-size: 20px;
    line-height: 1.2em;
    height: 2.6em;
  }
  .nav-pages .nav-offer .nav-item-content a:hover,
  .nav-pages .nav-offer .nav-item-content a:focus,
  .nav-pages .nav-offer .nav-item-content a:active {
    text-decoration: none;
  }
  .nav-pages .nav-offer .nav-item-content a:hover,
  .nav-pages .nav-offer .nav-item-content a.active {
    color: #046e5a;
  }
  .nav-pages .nav-offer small {
    display: block;
    position: absolute;
    top: 77px;
    right: 25px;
    left: 0;
    color: #7f7d7e;
    font-family: robotoCondensedLight, sans-serif;
    font-style: normal;
    font-size: 0.7em;
    line-height: normal;
  }
  .nav-pages .nav-offer li.active a {
    color: #046e5a;
  }
}
@le-large {
  ul li {
    width: 100% !important;
  }
}
.nav-toggle {
  font-weight: 200;
}
@media only screen and (max-width: 960px) {
  .nav-toggle {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    margin: 0;
    text-align: center;
    cursor: pointer;
  }
  .nav-toggle:before {
    font-size: 35px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .nav-toggle {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.nav-toggle:before {
  content: '\e80f';
}
@media only screen and (max-width: 960px) {
  .nav-toggle {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #d6a20e;
  }
}
@media only screen and (max-width: 960px) {
  html.nav-menus-active {
    height: 100%;
    overflow: hidden;
  }
  html.nav-menus-active header {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    padding-bottom: 3em;
    overflow-y: auto;
    height: 100%;
    margin: 0;
    background: rgba(0, 0, 0, 0.75);
  }
  html.nav-menus-active nav {
    height: auto;
    overflow: visible;
    margin: 0;
    padding: 20px 55px 0 30px;
    background: #046e5a;
  }
  html.nav-menus-active .nav-menus-container {
    left: auto;
    position: relative;
    clear: both;
    width: auto;
    height: auto;
    margin-right: -35px;
    overflow: visible;
  }
  html.nav-menus-active .nav-toggle {
    top: 20px;
    right: 20px;
    color: #d6a20e;
    font-weight: 200;
  }
  html.nav-menus-active .nav-toggle:before {
    content: '\e811';
  }
  html.nav-menus-active .nav-languages {
    position: absolute;
    top: -35px;
    right: 35px;
    background: #046e5a;
    z-index: 1;
  }
  html.nav-menus-active .nav-search .nav-item-name {
    display: none;
  }
  html.nav-menus-active .nav-search .submit {
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  html.nav-menus-active .nav-search > form {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  html.nav-menus-active nav {
    padding: 20px 55px 0 15px;
  }
  html.nav-menus-active .nav-menus-container {
    margin-right: -35px;
  }
  html.nav-menus-active .nav-languages {
    top: -35px;
    right: 35px;
  }
  html.nav-menus-active .nav-toggle {
    top: 20px;
    right: 20px;
  }
  html.nav-menus-active .nav-search > form {
    padding-top: 20px;
  }
}
.nav-languages ul {
  margin: 0;
  list-style: none;
}
.nav-languages abbr {
  cursor: pointer !important;
  border-bottom: none !important;
  margin-right: 16px;
  width: 95px;
}
.nav-languages .active {
  cursor: pointer;
}
@media only screen and (max-width: 960px) {
  .nav-languages {
    margin: 0 16px 0 0;
    padding: 0 16px;
    height: 35px;
    overflow: hidden;
    text-align: left;
    border-style: solid;
    border-width: 1px;
    border-color: transparent #378b7c transparent transparent;
  }
  .nav-languages ul {
    padding: 35px 0 0 0;
    position: relative;
  }
  .nav-languages ul li {
    display: block;
    overflow: hidden;
  }
  .nav-languages ul li > a,
  .nav-languages ul li .active {
    display: block;
    height: 35px;
    font-family: robotoCondensed, sans-serif;
    line-height: 35px;
    font-size: 18px;
    cursor: pointer;
    color: #d6a20e;
  }
  .nav-languages ul li .active {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  .nav-languages ul li .active abbr:after {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 8px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-top-color: inherit;
  }
  .nav-languages ul li + li {
    border-top: 1px solid #378b7c;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .nav-languages {
    height: 35px;
  }
  .nav-languages ul {
    padding: 35px 0 0 0;
  }
  .nav-languages ul li > a,
  .nav-languages ul li .active {
    height: 35px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 961px) {
  .nav-languages {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    height: 48px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    text-align: left;
  }
  .nav-languages ul {
    position: relative;
    padding: 48px 0 0 0;
  }
  .nav-languages ul li {
    display: inline;
  }
  .nav-languages ul li > a {
    display: inline-block;
    margin: 0;
    padding: 14px 12px;
    line-height: 20px;
    color: inherit;
    display: block;
    color: #333333;
  }
  .nav-languages ul li .active {
    display: inline-block;
    margin: 0;
    padding: 14px 12px;
    line-height: 20px;
    color: inherit;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  .nav-languages ul li .active:before {
    position: absolute;
    left: 0;
    top: 50%;
    margin: -8px 0 0 14px;
    content: "";
    width: 16px;
    height: 16px;
    background: url('/_cms-img/time20250725085903/mennica/comp/header/globe.gif') center no-repeat;
  }
  .nav-languages ul li .active:after {
    position: absolute;
    right: 0;
    top: 50%;
    margin: -4px 16px 0 0;
    content: "";
    color: #333333;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 4px;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-top-color: inherit;
  }
  .nav-languages .nav-item-content {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
  }
  .nav-languages abbr {
    margin: 0 -12px;
    padding: 0 37px;
    display: block;
    border-style: solid;
    border-width: 0 1px;
    border-color: #ededed;
  }
  .nav-languages a abbr {
    padding-left: 37px;
    padding-right: 28px;
  }
}
@media only screen and (max-width: 960px) {
  html.nav-languages-active .nav-languages {
    border-color: #378b7c;
    height: auto;
  }
}
@media only screen and (min-width: 961px) {
  html.nav-languages-active .nav-languages {
    overflow: visible;
  }
  html.nav-languages-active .nav-languages .nav-item-content {
    margin-top: 6px;
    padding-top: 42px;
    border-color: #d6a20e;
    background: #fff;
  }
  html.nav-languages-active .nav-languages .active {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  html.nav-languages-active .nav-languages a {
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  html.nav-languages-active .nav-languages a:hover {
    color: #d6a20e;
    background: #f9f9f9;
    text-decoration: none;
  }
}
.nav-search .nav-item-name {
  font-weight: 200;
}
@media only screen and (max-width: 960px) {
  .nav-search .nav-item-name {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    margin: 0;
    text-align: center;
    cursor: pointer;
  }
  .nav-search .nav-item-name:before {
    font-size: 35px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .nav-search .nav-item-name {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.nav-search .nav-item-name:before {
  content: '\e810';
}
.nav-search .submit {
  font-weight: 200;
}
@media only screen and (max-width: 960px) {
  .nav-search .submit {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    margin: 0;
    text-align: center;
    cursor: pointer;
  }
  .nav-search .submit:before {
    font-size: 35px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .nav-search .submit {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
.nav-search .submit:before {
  content: '\e810';
}
.nav-search a {
  border-radius: 0;
}
.nav-search input[type="search"],
.nav-search input[type="text"] {
  font-family: lora_italic, serif;
  line-height: normal;
  border-radius: 0;
}
.nav-search input[type="search"]:focus,
.nav-search input[type="text"]:focus {
  outline: none;
}
@media only screen and (max-width: 960px) {
  .nav-search {
    margin: 0 -55px 0 -30px;
    clear: both;
    padding: 20px 0 0 0;
    text-align: left;
  }
  .nav-search .nav-item-name {
    position: absolute;
    top: 0;
    right: 55px;
    cursor: pointer;
    color: #c5c5c5;
  }
  .nav-search .nav-item-content {
    clear: both;
    position: relative;
  }
  .nav-search p {
    margin: 0;
  }
  .nav-search form {
    margin: 0;
    padding: 20px 30px 30px;
    background: #d6a20e;
  }
  .nav-search form:after {
    clear: both;
    display: block;
    content: "";
  }
  .nav-search input:focus,
  .nav-search a:focus,
  .nav-search button:focus {
    outline: none;
  }
  .nav-search input[type="search"],
  .nav-search a[type="search"],
  .nav-search button[type="search"],
  .nav-search input[type="text"],
  .nav-search a[type="text"],
  .nav-search button[type="text"] {
    float: left;
    width: 90%;
    height: 35px;
    padding: 0;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #fff;
    background: #d6a20e;
    color: #fff;
    font-size: 16px;
  }
  .nav-search input[type="search"]::-webkit-input-placeholder,
  .nav-search a[type="search"]::-webkit-input-placeholder,
  .nav-search button[type="search"]::-webkit-input-placeholder,
  .nav-search input[type="text"]::-webkit-input-placeholder,
  .nav-search a[type="text"]::-webkit-input-placeholder,
  .nav-search button[type="text"]::-webkit-input-placeholder {
    font-style: normal;
    color: #ebd187;
  }
  .nav-search input[type="search"]:-moz-placeholder,
  .nav-search a[type="search"]:-moz-placeholder,
  .nav-search button[type="search"]:-moz-placeholder,
  .nav-search input[type="text"]:-moz-placeholder,
  .nav-search a[type="text"]:-moz-placeholder,
  .nav-search button[type="text"]:-moz-placeholder {
    font-style: normal;
    color: #ebd187;
  }
  .nav-search input[type="search"]::-moz-placeholder,
  .nav-search a[type="search"]::-moz-placeholder,
  .nav-search button[type="search"]::-moz-placeholder,
  .nav-search input[type="text"]::-moz-placeholder,
  .nav-search a[type="text"]::-moz-placeholder,
  .nav-search button[type="text"]::-moz-placeholder {
    font-style: normal;
    color: #ebd187;
  }
  .nav-search input[type="search"]:-ms-input-placeholder,
  .nav-search a[type="search"]:-ms-input-placeholder,
  .nav-search button[type="search"]:-ms-input-placeholder,
  .nav-search input[type="text"]:-ms-input-placeholder,
  .nav-search a[type="text"]:-ms-input-placeholder,
  .nav-search button[type="text"]:-ms-input-placeholder {
    font-style: normal;
    color: #ebd187;
  }
  .nav-search input[type=submit],
  .nav-search a[type=submit],
  .nav-search button[type=submit] {
    width: 10%;
    background-color: transparent;
    border: 0 none;
    display: inline-block;
    box-shadow: none;
    height: 35px;
    padding: 0;
    float: left;
    border-bottom: 1px solid #fff;
  }
  .nav-search input[type=submit] span,
  .nav-search a[type=submit] span,
  .nav-search button[type=submit] span {
    display: none;
  }
  .nav-search input[type=submit]:before,
  .nav-search a[type=submit]:before,
  .nav-search button[type=submit]:before {
    content: "\e810";
    color: white;
    position: relative;
    display: block;
    font-size: 30px;
    bottom: 10px;
    right: 0;
    font-family: "fontello_mennica";
  }
  .nav-search .submit {
    padding: 0;
    border: none;
    position: absolute;
    top: 0;
    left: 100%;
    color: #c5c5c5;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .nav-search {
    margin: 0 -55px 0 -20px;
    padding: 20px 0 0 0;
  }
  .nav-search input[type="search"],
  .nav-search a[type="search"],
  .nav-search input[type="text"],
  .nav-search a[type="text"] {
    height: 35px;
  }
  .nav-search .nav-item-name {
    right: 55px;
  }
}
@media only screen and (min-width: 961px) {
  .nav-search {
    display: inline-block;
    vertical-align: top;
    height: 48px;
    overflow: hidden;
  }
  .nav-search p {
    margin: 0;
  }
  .nav-search form {
    display: inline;
  }
  .nav-search .submit {
    display: none;
  }
  .nav-search .nav-item-name {
    display: inline-block;
    margin: 0;
    padding: 14px 12px;
    line-height: 20px;
    color: inherit;
    cursor: pointer;
    position: relative;
    padding-right: 32px;
    font-size: 16px;
  }
  .nav-search .nav-item-name:before {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
  }
  .nav-search .nav-item-content {
    display: none;
    position: absolute;
    padding: 43px 150px 30px 34px;
    top: 49px;
    right: 0;
    left: 280px;
    text-align: left;
    background-color: #FFF;
  }
  .nav-search input[type="search"],
  .nav-search a[type="search"],
  .nav-search button[type="search"],
  .nav-search input[type="text"],
  .nav-search a[type="text"],
  .nav-search button[type="text"] {
    width: 97%;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #333333;
    background: #fff;
    color: #333333;
    font-size: 35px;
    padding-left: 10px;
  }
  .nav-search input[type="search"]::-webkit-input-placeholder,
  .nav-search a[type="search"]::-webkit-input-placeholder,
  .nav-search button[type="search"]::-webkit-input-placeholder,
  .nav-search input[type="text"]::-webkit-input-placeholder,
  .nav-search a[type="text"]::-webkit-input-placeholder,
  .nav-search button[type="text"]::-webkit-input-placeholder {
    font-style: normal;
    color: #c5c5c5;
  }
  .nav-search input[type="search"]:-moz-placeholder,
  .nav-search a[type="search"]:-moz-placeholder,
  .nav-search button[type="search"]:-moz-placeholder,
  .nav-search input[type="text"]:-moz-placeholder,
  .nav-search a[type="text"]:-moz-placeholder,
  .nav-search button[type="text"]:-moz-placeholder {
    font-style: normal;
    color: #c5c5c5;
  }
  .nav-search input[type="search"]::-moz-placeholder,
  .nav-search a[type="search"]::-moz-placeholder,
  .nav-search button[type="search"]::-moz-placeholder,
  .nav-search input[type="text"]::-moz-placeholder,
  .nav-search a[type="text"]::-moz-placeholder,
  .nav-search button[type="text"]::-moz-placeholder {
    font-style: normal;
    color: #c5c5c5;
  }
  .nav-search input[type="search"]:-ms-input-placeholder,
  .nav-search a[type="search"]:-ms-input-placeholder,
  .nav-search button[type="search"]:-ms-input-placeholder,
  .nav-search input[type="text"]:-ms-input-placeholder,
  .nav-search a[type="text"]:-ms-input-placeholder,
  .nav-search button[type="text"]:-ms-input-placeholder {
    font-style: normal;
    color: #c5c5c5;
  }
  .nav-search input[type="submit"],
  .nav-search a[type="submit"],
  .nav-search button[type="submit"],
  .nav-search input[type="button"],
  .nav-search a[type="button"],
  .nav-search button[type="button"] {
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: inline-block;
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
    padding: 10px 35px;
    font-family: robotoCondensed;
    -webkit-box-shadow: inset 0 0 0 1px #ffffff;
    -moz-box-shadow: inset 0 0 0 1px #ffffff;
    box-shadow: inset 0 0 0 1px #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    padding-top: 17px;
    padding-bottom: 17px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    background: #d6a20e;
    color: #fff;
    width: 133px;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .nav-search input[type="submit"]:focus,
  .nav-search a[type="submit"]:focus,
  .nav-search button[type="submit"]:focus,
  .nav-search input[type="button"]:focus,
  .nav-search a[type="button"]:focus,
  .nav-search button[type="button"]:focus {
    outline: 0;
  }
  .nav-search input[type="submit"]:before,
  .nav-search a[type="submit"]:before,
  .nav-search button[type="submit"]:before,
  .nav-search input[type="button"]:before,
  .nav-search a[type="button"]:before,
  .nav-search button[type="button"]:before,
  .nav-search input[type="submit"]:after,
  .nav-search a[type="submit"]:after,
  .nav-search button[type="submit"]:after,
  .nav-search input[type="button"]:after,
  .nav-search a[type="button"]:after,
  .nav-search button[type="button"]:after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    -webkit-transform: translateX(-100px) skewX(-15deg);
    -moz-transform: translateX(-100px) skewX(-15deg);
    -o-transform: translateX(-100px) skewX(-15deg);
    -ms-transform: translateX(-100px) skewX(-15deg);
    transform: translateX(-100px) skewX(-15deg);
  }
  .nav-search input[type="submit"]:before,
  .nav-search a[type="submit"]:before,
  .nav-search button[type="submit"]:before,
  .nav-search input[type="button"]:before,
  .nav-search a[type="button"]:before,
  .nav-search button[type="button"]:before {
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    left: 0;
    opacity: 0.5;
    filter: blur(5px);
  }
  .nav-search input[type="submit"]:after,
  .nav-search a[type="submit"]:after,
  .nav-search button[type="submit"]:after,
  .nav-search input[type="button"]:after,
  .nav-search a[type="button"]:after,
  .nav-search button[type="button"]:after {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    left: 30px;
    opacity: 0;
    filter: blur(10px);
  }
  .nav-search input[type="submit"]:hover,
  .nav-search a[type="submit"]:hover,
  .nav-search button[type="submit"]:hover,
  .nav-search input[type="button"]:hover,
  .nav-search a[type="button"]:hover,
  .nav-search button[type="button"]:hover,
  .nav-search input[type="submit"]:focus,
  .nav-search a[type="submit"]:focus,
  .nav-search button[type="submit"]:focus,
  .nav-search input[type="button"]:focus,
  .nav-search a[type="button"]:focus,
  .nav-search button[type="button"]:focus {
    cursor: pointer;
    background: #fab914 !important;
  }
  .nav-search input[type="submit"]:hover:before,
  .nav-search a[type="submit"]:hover:before,
  .nav-search button[type="submit"]:hover:before,
  .nav-search input[type="button"]:hover:before,
  .nav-search a[type="button"]:hover:before,
  .nav-search button[type="button"]:hover:before,
  .nav-search input[type="submit"]:focus:before,
  .nav-search a[type="submit"]:focus:before,
  .nav-search button[type="submit"]:focus:before,
  .nav-search input[type="button"]:focus:before,
  .nav-search a[type="button"]:focus:before,
  .nav-search button[type="button"]:focus:before,
  .nav-search input[type="submit"]:hover:after,
  .nav-search a[type="submit"]:hover:after,
  .nav-search button[type="submit"]:hover:after,
  .nav-search input[type="button"]:hover:after,
  .nav-search a[type="button"]:hover:after,
  .nav-search button[type="button"]:hover:after,
  .nav-search input[type="submit"]:focus:after,
  .nav-search a[type="submit"]:focus:after,
  .nav-search button[type="submit"]:focus:after,
  .nav-search input[type="button"]:focus:after,
  .nav-search a[type="button"]:focus:after,
  .nav-search button[type="button"]:focus:after {
    -webkit-transform: translateX(300px) skewX(-15deg);
    -moz-transform: translateX(300px) skewX(-15deg);
    -o-transform: translateX(300px) skewX(-15deg);
    -ms-transform: translateX(300px) skewX(-15deg);
    transform: translateX(300px) skewX(-15deg);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  .nav-search input[type="submit"]:hover:before,
  .nav-search a[type="submit"]:hover:before,
  .nav-search button[type="submit"]:hover:before,
  .nav-search input[type="button"]:hover:before,
  .nav-search a[type="button"]:hover:before,
  .nav-search button[type="button"]:hover:before,
  .nav-search input[type="submit"]:focus:before,
  .nav-search a[type="submit"]:focus:before,
  .nav-search button[type="submit"]:focus:before,
  .nav-search input[type="button"]:focus:before,
  .nav-search a[type="button"]:focus:before,
  .nav-search button[type="button"]:focus:before {
    opacity: 0.6;
  }
  .nav-search input[type="submit"]:hover:after,
  .nav-search a[type="submit"]:hover:after,
  .nav-search button[type="submit"]:hover:after,
  .nav-search input[type="button"]:hover:after,
  .nav-search a[type="button"]:hover:after,
  .nav-search button[type="button"]:hover:after,
  .nav-search input[type="submit"]:focus:after,
  .nav-search a[type="submit"]:focus:after,
  .nav-search button[type="submit"]:focus:after,
  .nav-search input[type="button"]:focus:after,
  .nav-search a[type="button"]:focus:after,
  .nav-search button[type="button"]:focus:after {
    opacity: 1;
  }
}
@media only screen and (min-width: 961px) and only screen and (max-width: 767px) {
  .nav-search input[type="submit"],
  .nav-search a[type="submit"],
  .nav-search button[type="submit"],
  .nav-search input[type="button"],
  .nav-search a[type="button"],
  .nav-search button[type="button"] {
    padding: 7px 21px;
  }
}
@media only screen and (max-width: 960px) {
  html.nav-search-active header {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    padding-bottom: 3em;
    overflow-y: auto;
    height: 100%;
    margin: 0;
    background: rgba(0, 0, 0, 0.75);
  }
}
@media only screen and (max-width: 960px) {
  html.nav-search-active header nav {
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  html.nav-search-active .nav-logo {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  html.nav-search-active .nav-toggle {
    font-weight: 200;
    color: #d6a20e;
    top: 20px;
    right: 20px;
  }
  html.nav-search-active .nav-toggle:before {
    content: '\e811';
  }
  html.nav-search-active .nav-search {
    margin: 0px -10px;
    padding-top: 70px;
    background-color: #046e5a;
  }
  html.nav-search-active .nav-search .nav-item-content {
    margin-right: 0;
  }
  html.nav-search-active .nav-search > form {
    padding: 0;
    background: transparent;
  }
  html.nav-search-active .nav-search .nav-item-name {
    display: none;
  }
  html.nav-search-active .submit {
    border-bottom: 1px solid #000;
  }
}
@media only screen and (min-width: 961px) {
  html.nav-search-active .nav-search {
    overflow: visible;
  }
  html.nav-search-active .nav-search .nav-item-name {
    color: #046e5a;
  }
  html.nav-search-active .nav-search .nav-item-name:after {
    position: absolute;
    left: 50%;
    top: 100%;
    margin: -8px 0 0 0;
    content: "";
    color: #333333;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    border-style: solid;
    border-width: 4px;
    border-right-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: inherit;
  }
  html.nav-search-active .nav-search .nav-item-content {
    display: block;
  }
}
footer .nav-item-content li {
  width: 100% !important;
}
@media only screen and (min-width: 961px) and (max-width: 1210px) {
  .nav-pages > ul li.active .nav-item-content {
    margin-left: 0;
  }
  .nav-pages .nav-offer small {
    font-size: 0.6em;
  }
  .nav-pages .nav-offer .nav-item-content a {
    padding-right: 20px;
  }
  .nav-pages .nav-offer .nav-item-content {
    left: 260px;
  }
  .nav-pages .nav-offer .nav-item-content > * {
    width: 20% !important;
  }
}
.component_wrapper > .component.footer {
  padding-top: 0;
}
.component_wrapper > .component.footer {
  padding-bottom: 0;
}
footer {
  margin-left: -30px;
  margin-right: -30px;
  background: #006553 url('/_cms-img/time20250725085903/mennica/comp/footer/footer_background.png') top right no-repeat;
  color: #fff;
  margin-top: 20px;
}
footer nav small {
  display: none;
}
footer .container-fluid {
  background: none;
}
footer .additional-info {
  position: relative;
  font-size: 0;
  overflow: hidden;
  line-height: 18px;
}
footer .additional-info > * {
  line-height: inherit;
}
footer .additional-info ul {
  margin: 0;
  padding: 0;
  display: inline;
}
footer .additional-info li {
  display: inline-block;
  vertical-align: top;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
footer .additional-info li a {
  padding: 0 1.4rem;
  border-left: 1px solid #378b7c;
}
footer .copyright {
  margin: 0;
  color: #649389;
}
footer a {
  color: #fff;
}
footer a:hover,
footer a:focus {
  color: #fff;
}
footer .social-links {
  margin: 0;
}
footer .social-links a {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 42px;
  height: 42px;
  line-height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #378b7c;
}
footer .social-links a:before {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 42px;
  height: 42px;
}
@media only screen and (max-width: 767px) {
  footer .social-links a {
    width: 84px;
    height: 84px;
    line-height: 88px;
  }
  footer .social-links a:before {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 84px;
    height: 84px;
  }
}
footer .social-links a:hover,
footer .social-links a:focus,
footer .social-links a:active {
  text-decoration: none;
}
footer .social-links a:hover {
  color: #378b7c;
  background: #fff;
}
footer .designed-by {
  width: 54px;
  height: 42px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: left;
  text-indent: -999em;
  overflow: hidden;
}
footer .designed-by a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: 0 -13px;
  background-image: url('/_cms-img/time20250725085903/mennica/comp/footer/designer.png');
}
footer .designed-by a:hover {
  background-position: 0 -73px;
}
@media only screen and (max-width: 480px) {
  footer .additional-info li {
    display: block;
  }
  footer .additional-info li a {
    border: none;
    position: relative;
  }
  footer .additional-info li a:before {
    width: 50px;
    content: "";
    display: block;
    position: absolute;
    top: -0.5em;
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: #378b7c;
  }
  .section-header footer .additional-info li a:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  footer .additional-info li a:before {
    left: 50%;
    margin-left: -25px;
  }
  footer .additional-info .is_last {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 30px 20px;
    text-align: center;
  }
  footer .social-links {
    margin: 2rem 0;
  }
  footer .social-links a {
    margin: 0 1rem;
  }
  footer .additional-info > * {
    font-size: 16px;
  }
  footer .additional-info ul {
    display: block;
    margin: 1.6rem 0;
  }
  footer .additional-info li:first-child a {
    border: none;
  }
  footer .is_last {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  footer {
    padding: 30px 30px 15px 15px;
  }
  footer nav ul {
    margin: 0;
    padding: 0 0 2em 0;
    list-style: none;
  }
  footer .nav-item-name {
    display: block;
    padding-bottom: 0.9em;
    font-size: 18px;
    font-family: robotoCondensed, sans-serif;
  }
  footer .nav-item-content {
    font-weight: 200;
  }
  footer .nav-item-content li {
    padding-bottom: 5px;
    font-size: 15px;
  }
  footer .copyrigh-and-menu {
    float: left;
    display: inline-block;
  }
  footer .additional-info {
    padding: 12px 75px 12px 146px;
    margin: 0 15px;
    border-top: 1px solid #378b7c;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url('/_cms-img/time20250725085903/mennica/comp/footer/footer_logo.png');
  }
  footer .additional-info > * {
    font-size: 14px;
  }
  footer .social-links {
    float: right;
    display: inline-block;
  }
  footer .social-links a {
    margin: 0 0 0 4px;
  }
  footer .designed-by {
    position: absolute;
    top: 12px;
    right: 0;
    margin: 0;
  }
  footer .copyright {
    display: inline-block;
    vertical-align: top;
    padding: 1.2rem 1.4rem 1.2rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  footer .additional-info ul {
    display: block;
  }
  footer .additional-info li {
    padding-top: 0;
  }
  footer .additional-info li:first-child a {
    border: none;
    padding-left: 0;
  }
}
.component_wrapper > .component.breadcrumb {
  padding-top: 0;
}
.breadcrumb {
  background: none;
  color: #333333;
  margin-bottom: 0;
  padding: 8px 0;
}
.breadcrumb_container {
  padding-left: 0;
  margin-bottom: 0;
}
.breadcrumb li[itemprop="itemListElement"] {
  display: inline;
}
.breadcrumb a {
  color: inherit;
  cursor: pointer;
}
.breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumb .home {
  display: inline-block;
  margin: 0;
  padding: 14px 12px;
  line-height: 20px;
  color: inherit;
  position: relative;
  color: #999798;
  font-size: 0;
  font-size: 1.2em;
}
.breadcrumb .home:after {
  content: "/";
  position: absolute;
  right: -3px;
  color: #999798 !important;
}
.breadcrumb .home:hover {
  color: #d6a20e;
}
.breadcrumb .home:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.breadcrumb .home:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.breadcrumb .home:before {
  content: '\e802';
}
.breadcrumb .home span {
  position: absolute;
  top: -9999em;
  left: -9999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .breadcrumb .home {
    padding: 0px 12px 0 0;
  }
}
.breadcrumb .breadcrumb_element,
.breadcrumb strong {
  display: inline-block;
  margin: 0;
  padding: 14px 12px;
  line-height: 20px;
  color: inherit;
  position: relative;
  color: #999798;
}
.breadcrumb .breadcrumb_element:after,
.breadcrumb strong:after {
  content: "/";
  position: absolute;
  right: -3px;
  color: #999798 !important;
}
.breadcrumb .breadcrumb_element:hover,
.breadcrumb strong:hover {
  color: #d6a20e;
}
@media only screen and (max-width: 480px) {
  .breadcrumb .breadcrumb_element,
  .breadcrumb strong {
    padding: 0px 12px;
    font-size: 12px;
  }
}
.breadcrumb .current_element {
  color: #999798;
}
.breadcrumb .current_element:hover {
  color: #d6a20e;
}
.breadcrumb .breadcrumb_item:last-of-type .breadcrumb_element,
.breadcrumb .breadcrumb_item:last-of-type strong {
  color: #c5c5c5;
}
.breadcrumb .breadcrumb_item:last-of-type .breadcrumb_element:after,
.breadcrumb .breadcrumb_item:last-of-type strong:after {
  content: "";
}
.teaser {
  max-width: 100%;
  margin-top: 15px;
  margin-bottom: 30px;
}
.teaser .content_graphics.content_area {
  border: 1px solid #ededed;
  background: #fff;
  overflow: hidden;
}
.teaser .content_graphics.content_area .content-wrapper {
  width: 50%;
  float: left;
  padding: 48px 60px;
  background-color: #FFF;
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .teaser .content_graphics.content_area .content-wrapper {
    padding: 30px 40px;
  }
}
.teaser .content_graphics.content_area .content-wrapper h2 {
  color: #d6a20e;
  margin-top: 0;
}
.teaser .content_graphics.content_area .content-wrapper .buttons {
  display: inline-block;
  margin: 20px 20px 0 0;
}
.teaser .content_graphics.content_area .content-wrapper .buttons a {
  border-color: #d6a20e;
  border-width: 1px;
  padding: 7px 25px;
}
.teaser .content_graphics.content_area .img {
  width: 50%;
  float: right;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .teaser .content_graphics.content_area .img {
    min-height: 320px;
  }
}
.teaser .content_graphics.content_area .img img {
  display: none;
}
@media only screen and (min-width: 768px) {
  .teaser .content_graphics.content_area .img img {
    min-width: 100%;
    min-height: 100%;
    position: relative;
  }
}
.teaser .content_graphics.content_area .img:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.teaser .content_graphics.content_area.img_left .content-wrapper {
  float: right;
}
.teaser .content_graphics.content_area.img_left .img {
  float: left;
}
@media only screen and (min-width: 768px) {
  .teaser .content_graphics.content_area.img_left .img img {
    float: right;
  }
}
.teaser .content_graphics.content_area.img_left .img:before {
  left: auto;
  right: 0;
  margin: -14px -14px 0 0;
}
@media only screen and (max-width: 767px) {
  .teaser {
    text-align: center;
    position: relative;
    margin: 1em auto;
    padding: 20px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 1px #ededed;
    -moz-box-shadow: 0 0 0 1px #ededed;
    box-shadow: 0 0 0 1px #ededed;
    padding-top: 200px;
    padding-bottom: 96px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .teaser h2 {
    font-size: 27px;
    position: relative;
    margin: 0;
    padding: 15px 0;
  }
  .teaser h2:before {
    content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
    display: block;
    width: 28px;
    height: 28px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 50%;
    margin: -14px 0 0 -14px;
    color: #ededed;
    background: #fff;
    text-align: center;
    line-height: 28px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .teaser .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
    margin: 0;
    border: none;
    text-align: center;
    height: 200px;
  }
  .component.blocks_in_4_columns_with_accordion .teaser .img {
    height: 180px;
  }
  .teaser .img img {
    height: auto !important;
    width: auto !important;
    max-width: 100%;
    vertical-align: bottom;
  }
  .teaser .buttons {
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 30px;
    left: 20px;
  }
  .teaser.active,
  .teaser:hover {
    -webkit-box-shadow: 0 0 0 3px #d6a20e;
    -moz-box-shadow: 0 0 0 3px #d6a20e;
    box-shadow: 0 0 0 3px #d6a20e;
  }
  [class*=col-md-3] .teaser,
  [class*=col-lg-3] .teaser {
    padding-top: 130px;
  }
  [class*=col-md-3] .teaser .img,
  [class*=col-lg-3] .teaser .img {
    height: 130px;
  }
  .component.blocks_in_4_columns_with_accordion [class*=col-md-3] .teaser,
  .component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .teaser {
    padding-top: 180px;
  }
  .teaser .content_graphics.content_area,
  .teaser .content_graphics.content_area.img_left {
    border: none;
  }
  .teaser .content_graphics.content_area .content-wrapper,
  .teaser .content_graphics.content_area.img_left .content-wrapper {
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    margin-top: 180px;
  }
  .teaser .content_graphics.content_area .img,
  .teaser .content_graphics.content_area.img_left .img {
    float: none;
    width: auto;
    position: absolute;
  }
  .teaser .content_graphics.content_area .img:before,
  .teaser .content_graphics.content_area.img_left .img:before {
    display: none;
  }
}
@media only screen and (max-width: 767px) and only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .teaser .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
@media only screen and (max-width: 767px) and only screen and (max-width: 480px) {
  .teaser .content_graphics.content_area .content-wrapper,
  .teaser .content_graphics.content_area.img_left .content-wrapper {
    padding-top: 170px;
  }
}
@media only screen and (max-width: 480px) {
  .teaser .img img {
    max-width: none;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: relative;
  }
}
.teaser_carousel .owl-stage-outer {
  margin-top: 30px;
  z-index: 2;
}
.teaser_carousel .owl-dots {
  position: absolute;
  top: 0;
  z-index: 1;
}
.teaser_carousel .owl-dots .owl-dot:after {
  -webkit-box-shadow: 0px 0px 1px 0px #c5c5c5;
  -moz-box-shadow: 0px 0px 1px 0px #c5c5c5;
  box-shadow: 0px 0px 1px 0px #c5c5c5;
}
.stores_list {
  padding: 2.2rem 0 1px 2.2rem;
  border: 1px solid #ededed;
  font-family: robotoCondensed, sans-serif;
  font-size: 18px;
  background: #fff;
}
.stores_list h3 {
  margin: 0;
  padding: 0 0 0 50px;
  min-height: 44px;
  background-image: url('/_cms-img/time20250725085903/mennica/comp/stores_list/stores_list.png');
  background-position: left center;
  background-repeat: no-repeat;
}
.stores_list h3 small {
  display: block;
  font-family: robotoCondensedLight, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.stores_list a {
  color: #333333;
}
.stores_list a:hover,
.stores_list a:focus,
.stores_list a:active {
  text-decoration: none;
}
.stores_list a span {
  display: block;
  font-size: 14px;
  color: #d6a20e;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .stores_list a span {
    font-size: 11px;
  }
}
.stores_list a:hover span,
.stores_list a:focus span,
.stores_list a:active span {
  text-decoration: underline;
}
.stores_list p {
  margin: 0;
  position: relative;
  line-height: normal;
}
.stores_list p:before {
  content: url('/_cms-img/time20250725085903/mennica/slash_separator.png');
  position: absolute;
  display: block;
  width: 20px;
  height: 46px;
  top: 0;
  left: -40px;
}
@media only screen and (max-width: 767px) {
  .stores_list p {
    padding-left: 50px;
    margin: 1.5em 0;
    line-height: normal;
  }
  .stores_list p:before {
    left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .stores_list p {
    padding-left: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .stores_list {
    padding: 2.2rem 0 1px 9rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .stores_list {
    padding: 2.2rem 0 3rem 1rem;
  }
  .stores_list p:before {
    left: -30px;
  }
}
/**
 * Kreacja wiodąca z zielonym tłem, obrazkiem oraz białym tekstem.
 */
.hero {
  padding: 3rem;
  min-height: 3rem;
  line-height: 3rem;
  font-size: 3rem;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 0;
  background: url('/_file/time20190322124250/site/comp/hero/hero-bg-large.png') no-repeat center center;
  color: #fff;
  text-align: center;
  font-family: lora_italic, serif;
}
.hero > * {
  margin-bottom: 0;
}
@media only screen and (max-width: 960px) {
  .hero {
    background: url('/_file/time20190322124250/site/comp/hero/hero-bg-large.png') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}
.component_wrapper > .recent_reports,
.component_wrapper > .reports_presentation {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
}
.component_wrapper > .recent_reports .buttons,
.component_wrapper > .reports_presentation .buttons {
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  margin-bottom: 24px;
  text-align: center;
}
.component_wrapper > .recent_reports .buttons a,
.component_wrapper > .reports_presentation .buttons a {
  padding: 9px 33px;
}
.component_wrapper > .recent_reports .buttons a.button,
.component_wrapper > .reports_presentation .buttons a.button {
  float: left;
}
.component_wrapper > .recent_reports h3,
.component_wrapper > .reports_presentation h3 {
  margin-top: 0.35em;
  margin-bottom: 0.8em;
  padding: 0;
  font-size: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .component_wrapper > .recent_reports h3,
  .component_wrapper > .reports_presentation h3 {
    font-size: 27px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .component_wrapper > .recent_reports h3,
  .component_wrapper > .reports_presentation h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .component_wrapper > .recent_reports h3,
  .component_wrapper > .reports_presentation h3 {
    font-size: 21px;
  }
}
.component_wrapper > .recent_reports p,
.component_wrapper > .reports_presentation p {
  margin: 0;
  padding: 1.1rem 0 0.5rem 0;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #ededed;
}
.component_wrapper > .recent_reports p a,
.component_wrapper > .reports_presentation p a {
  display: block;
  color: #333333;
  line-height: 1.2em;
}
.component_wrapper > .recent_reports p a:hover,
.component_wrapper > .reports_presentation p a:hover {
  text-decoration: none;
  color: #d6a20e;
}
.component_wrapper > .recent_reports p.img,
.component_wrapper > .reports_presentation p.img {
  border: none;
}
.component_wrapper > .recent_reports p:last-of-type,
.component_wrapper > .reports_presentation p:last-of-type {
  padding: 1.1rem 0;
  border-width: 1px 0;
}
.component_wrapper > .recent_reports .item_date,
.component_wrapper > .reports_presentation .item_date {
  display: block;
  margin-top: 0.4rem;
  font-size: 14px;
  color: #7f7d7e;
}
.component_wrapper > .recent_reports a[class*=link_to_],
.component_wrapper > .reports_presentation a[class*=link_to_] {
  display: block;
  padding-right: 20px;
}
.reports_periodical {
  position: relative;
  margin: 1em auto;
  padding: 20px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #ededed;
  -moz-box-shadow: 0 0 0 1px #ededed;
  box-shadow: 0 0 0 1px #ededed;
  padding-top: 200px;
  padding-bottom: 96px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding-top: 300px;
  padding-bottom: 40px;
  margin-left: 3px;
  margin-right: 2px;
  text-align: center;
}
.reports_periodical h3 {
  font-size: 27px;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
.reports_periodical h3:before {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -14px 0 0 -14px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.reports_periodical .img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  margin: 0;
  border: none;
  text-align: center;
  height: 200px;
}
.component.blocks_in_4_columns_with_accordion .reports_periodical .img {
  height: 180px;
}
@media only screen and (max-width: 480px) {
  .component.blocks_in_4_columns_with_accordion .reports_periodical .img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 405px;
  }
}
.reports_periodical .img img {
  height: auto !important;
  width: auto !important;
  max-width: 100%;
  vertical-align: bottom;
}
.reports_periodical .buttons {
  margin: 0;
  position: absolute;
  right: 20px;
  bottom: 30px;
  left: 20px;
}
.reports_periodical.active,
.reports_periodical:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
.reports_periodical:hover {
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
}
[class*=col-md-3] .reports_periodical,
[class*=col-lg-3] .reports_periodical {
  padding-top: 130px;
}
[class*=col-md-3] .reports_periodical .img,
[class*=col-lg-3] .reports_periodical .img {
  height: 130px;
}
.component.blocks_in_4_columns_with_accordion [class*=col-md-3] .reports_periodical,
.component.blocks_in_4_columns_with_accordion [class*=col-lg-3] .reports_periodical {
  padding-top: 180px;
}
.reports_periodical h3 {
  padding: 20px 0;
}
.reports_periodical .img {
  height: 300px;
}
@media only screen and (max-width: 480px) {
  .reports_periodical .img {
    width: 368px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1240px) {
  .reports_periodical {
    padding-top: 220px;
  }
  .reports_periodical .img {
    height: 220px;
    width: 320px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.component.reports_list {
  margin-bottom: 40px;
}
.component.reports_list table .item_name,
.component.reports_list table .item_type {
  width: 170px;
  vertical-align: top;
  text-align: center;
  color: #999798;
}
@media only screen and (min-width: 768px) {
  .component.reports_list table .item_name,
  .component.reports_list table .item_type {
    float: left;
  }
}
.component.reports_list table .item_summary {
  display: block;
  vertical-align: top;
  margin-left: 45px;
}
@media only screen and (max-width: 767px) {
  .component.reports_list .report_tab_wrapper {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .component.reports_list .report_tab_content_wrapper .report_tab {
    display: none;
  }
}
.component.reports_list .report_tab {
  position: relative;
  cursor: pointer;
  border: 1px solid #f1f1f1;
  margin: 5px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .component.reports_list .report_tab h3 {
    margin: 15px 15px;
    font-family: robotoCondensed, sans-serif;
    color: #d6a20e;
  }
  .component.reports_list .report_tab:after {
    content: '';
    position: absolute;
    top: 28px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #d6a20e;
  }
  .component.reports_list .report_tab.active h3 {
    color: #000;
  }
  .component.reports_list .report_tab.active:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 0;
    border-bottom: 6px solid #000;
  }
}
.component.reports_list .report_tab_content {
  display: none;
}
@media only screen and (min-width: 768px) {
  .component.reports_list .report_tab_content {
    border-top: 1px solid #ededed;
  }
}
.component.reports_list .report_tab_content.show_mobile h3 {
  color: #000;
}
.component.reports_list .report_tab_content .table_norows_info {
  margin: 40px 0;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.component.reports_list .report_tab_content .box_table td {
  border: none;
  vertical-align: middle;
}
.component.reports_list .report_tab_content .box_table td div a {
  display: inline;
}
.component.reports_list .report_tab_content .box_table td.row_number {
  vertical-align: top;
}
.component.reports_list .report_tab_content .box_table .table_row_odd td,
.component.reports_list .report_tab_content .box_table .table_row_even td {
  border-bottom: 1px solid #ededed;
}
.component.reports_list .raport_biezacy_row,
.component.reports_list .raport_okresowy_row {
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .component.reports_list .raport_biezacy_row .item_summary,
  .component.reports_list .raport_okresowy_row .item_summary {
    margin-left: 215px;
  }
}
.component.reports_list .raport_biezacy_row .item_summary:hover,
.component.reports_list .raport_okresowy_row .item_summary:hover {
  color: #d6a20e;
}
.component.reports_list .report_details_box {
  padding: 0;
}
.component.reports_list .report_details_box > div {
  padding: 26px 20px;
  border-style: solid;
  border-width: 0 1px 1px 1px;
  border-color: #ededed;
  background: #f9f9f9;
}
.component.reports_list a {
  color: #d6a20e;
}
.component.reports_list a:hover,
.component.reports_list a.button {
  color: #d6a20e;
}
.component.reports_list .table_pager_number {
  color: #c5c5c5;
  display: inline-block;
  border: 1px solid #f1f1f1;
  padding: 8px 15px;
  margin-left: 8px;
  cursor: default;
}
.component.reports_list .link_to_pdf {
  display: block;
  margin: 0.3em auto 0 auto;
  height: 1em;
}
.component.reports_list .link_to_pdf:after {
  right: 50%;
  margin-right: -12px;
}
@media only screen and (min-width: 768px) {
  .component.reports_list .report_tabs {
    text-align: center;
  }
  .component.reports_list .report_tab {
    display: inline-block;
    margin: 2px 1px 0 1px;
    padding: 9px 15px;
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-color: #ededed;
    cursor: pointer;
    background: #fff;
    color: #d6a20e;
  }
  .component.reports_list .report_tab.active {
    margin-top: 0;
    margin-bottom: -1px;
    padding-top: 11px;
    padding-bottom: 10px;
    color: #333333;
  }
  .component.reports_list .report_tab h3 {
    margin: 0;
    font-family: robotoCondensed, sans-serif;
    font-size: 18px;
  }
  .component.reports_list table .button {
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .component.reports_list table .item_name,
  .component.reports_list table .item_type,
  .component.reports_list table .item_summary {
    width: auto;
    display: block;
    margin-left: 0;
    text-align: left;
  }
  .component.reports_list .raport_biezacy_row .item_summary {
    margin-top: 0;
  }
}
.report_filter {
  margin: 1em auto;
  padding: 20px;
  border-style: solid;
  border-width: 1px;
  border-color: #ededed;
  background: #f9f9f9;
}
.report_filter .field_label {
  display: inline-block;
  margin: 0 18px 0 33px;
}
.report_filter .field_label:first-of-type {
  padding: 17px 0;
  margin: 0 16px 0 0;
  font-family: robotoCondensed, sans-serif;
  color: #046e5a;
}
.report_filter .field_container {
  display: inline-block;
  vertical-align: top;
  padding: 14px 0 12px 33px;
  border-style: solid;
  border-width: 0 1px;
  border-color: transparent;
  line-height: 1.7em;
}
.report_filter .field_container .range-label {
  margin-right: 10px;
  color: #999798;
}
.report_filter .field_container .field_label:first-of-type {
  margin-left: 0;
}
.report_filter input[type="text"] {
  border-width: 1px;
  border-style: solid;
  border-color: #ededed;
  width: 160px;
}
.report_filter input[type="text"]:focus {
  outline: none;
}
.report_filter .date_picker_field {
  text-align: center;
}
.report_filter .ui-datepicker-trigger {
  margin: 0 8px 0 11px;
}
@media only screen and (min-width: 768px) {
  .report_filter {
    padding-top: 0;
    padding-bottom: 0;
    margin: 45px 0;
  }
  .report_filter .field_container.active {
    background: #fff;
    border-color: #ededed;
  }
}
@media only screen and (max-width: 767px) {
  .report_filter .field_label:first-of-type {
    padding: 0;
  }
  .report_filter .field_container {
    display: block;
    padding: 12px 0 0 0;
  }
}
.report_filter#sprawozdanie_rn {
  display: none;
}
.report_filter#sprawozdanie_rn + div {
  margin-top: -1px;
}
@media only screen and (max-width: 767px) {
  .report_filter#sprawozdanie_rn + div {
    margin-top: -6px;
  }
}
@media only screen and (min-width: 768px) {
  .report_filter .field_container {
    width: 272px;
  }
}
@media only screen and (min-width: 768px) {
  .show-desktop {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .show-mobile {
    display: block !important;
  }
}
.component.recent_reports h3 a {
  color: inherit;
}
.component.recent_reports h3 a:hover {
  text-decoration: none;
}
.news_medium_list .row {
  border: 1px solid #f1f1f1;
  margin-bottom: 35px;
  display: table;
}
@media only screen and (max-width: 767px) {
  .news_medium_list .row {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .news_medium_list [class*="col-"] {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
  .news_medium_list [class*="col-"] .vertical_line {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    border-left: 1px solid #ededed;
    top: 0;
    left: 50%;
  }
}
.news_medium_list h2 {
  font-family: lora_italic, serif;
  line-height: 1.2em;
  font-size: 3.5rem;
  margin: 0.6em 0 1.6em;
  position: relative;
  text-align: center;
}
.news_medium_list h2:after {
  width: 76px;
  content: '';
  display: block;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  margin-left: -38px;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #d6a20e;
}
.news_medium_list .news_medium_list_wrapper {
  padding: 37px 30px;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news img {
  float: right;
  max-width: 226px;
  margin-left: 10px;
}
@media only screen and (max-width: 960px) {
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news img {
    float: none;
    text-align: center;
    margin: 0 auto 18px;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news img {
    max-width: 113px;
  }
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .publication_cell .publication_date {
  font-size: 1.6rem;
  color: #7f7d7e;
  padding-bottom: 10px;
  display: inline-block;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .publication_cell .publication_date + .social_media_sharing_buttons {
  border-left: 1px solid #f1f1f1;
  margin-left: 18px;
  padding-left: 18px;
}
@media only screen and (max-width: 480px) {
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .publication_cell .publication_date + .social_media_sharing_buttons {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: 0 none;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 990px) {
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .publication_cell .publication_date + .social_media_sharing_buttons {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: 0 none;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1140px) {
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .publication_cell .publication_date + .social_media_sharing_buttons {
    margin-left: 12px;
    padding-left: 12px;
  }
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .publication_cell .publication_date + .social_media_sharing_buttons > a {
    margin-left: 6px;
  }
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news h3.title_news {
  padding-bottom: 15px;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news h3.title_news a {
  font-size: 3.0rem;
  font-family: lora_italic, serif;
  line-height: 3.6rem;
  margin: 0;
  color: #333333;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news h3.title_news a:hover {
  text-decoration: none;
  color: #d6a20e;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .title_news {
  font-size: 3.0rem;
  font-family: lora_italic, serif;
  line-height: 3.6rem;
  margin: 0;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .title_news a {
  font-size: 1.6rem;
  font-family: robotoCondensed, sans-serif;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .title_summary {
  font-size: 1.6rem;
  font-family: robotoCondensedLight, sans-serif;
  padding-bottom: 10px;
}
@media only screen and (min-width: 960px) {
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .title_summary {
    padding-right: 240px;
  }
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .title_summary p {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .news_medium_list .news_medium_list_wrapper .news_medium_list_latest_news .title_summary {
    padding-right: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .news_medium_list .news_medium_list_wrapper .line .vertical_line {
    border-bottom: 1px solid #ededed;
    margin: 20px -45px 26px;
  }
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_content .publication_cell .publication_date {
  font-size: 1.4rem;
  color: #7f7d7e;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_content .table_news {
  padding: 15px 0 17px;
  border-bottom: 1px solid #ededed;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_content .table_news.first_news {
  padding-top: 0;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_content .title_news .link_style_10 {
  color: #333333;
}
.news_medium_list .news_medium_list_wrapper .news_medium_list_content .title_news .link_style_1 {
  margin-top: 22px;
  display: block;
  line-height: 1.6rem;
  font-weight: 700;
}
.news_large_list .news_large_list_wrapper {
  border-top: 1px solid #f1f1f1;
}
.news_large_list .news_large_list_item_wrapper {
  padding: 41px 36px 41px 45px;
  border: 1px solid #f1f1f1;
  border-top: none;
}
@media only screen and (max-width: 767px) {
  .news_large_list .news_large_list_item_wrapper {
    padding: 19px;
  }
}
.news_large_list .news_large_list_item_wrapper .news-large-image {
  float: right;
}
@media only screen and (max-width: 961px) {
  .news_large_list .news_large_list_item_wrapper .news-large-image {
    float: none;
    text-align: center;
    margin-bottom: 16px;
  }
}
.news_large_list .news_large_list_item_wrapper .news-large-image img {
  max-height: 238px;
  margin-left: 30px;
  max-width: 100%;
}
@media only screen and (max-width: 961px) {
  .news_large_list .news_large_list_item_wrapper .news-large-image img {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .news_large_list .news_large_list_item_wrapper .news-large-image img {
    max-height: 140px;
  }
}
.news_large_list .news_large_list_item_wrapper .news-large-date {
  font-size: 1.6rem;
  color: #7f7d7e;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .news_large_list .news_large_list_item_wrapper .news-large-date .month.short {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .news_large_list .news_large_list_item_wrapper .news-large-date .month.full {
    display: none;
  }
}
.news_large_list .news_large_list_item_wrapper .news-large-date .date {
  display: inline-block;
}
.news_large_list .news_large_list_item_wrapper .news-large-date .date + .social_media_sharing_buttons {
  border-left: 1px solid #f1f1f1;
  margin-left: 18px;
  padding-left: 18px;
}
@media only screen and (max-width: 480px) {
  .news_large_list .news_large_list_item_wrapper .news-large-date .date + .social_media_sharing_buttons {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: 0 none;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 961px) and (max-width: 990px) {
  .news_large_list .news_large_list_item_wrapper .news-large-date .date + .social_media_sharing_buttons {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: 0 none;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1140px) {
  .news_large_list .news_large_list_item_wrapper .news-large-date .date + .social_media_sharing_buttons {
    margin-left: 12px;
    padding-left: 12px;
  }
  .news_large_list .news_large_list_item_wrapper .news-large-date .date + .social_media_sharing_buttons > a {
    margin-left: 6px;
  }
}
.news_large_list .news_large_list_item_wrapper .news-title {
  font-size: 3rem;
  font-family: lora_italic,serif;
  line-height: 3.6rem;
  padding-bottom: 20px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .news_large_list .news_large_list_item_wrapper .news-title {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}
.news_large_list .news_large_list_item_wrapper .news-title a {
  color: #333333;
}
.news_large_list .news_large_list_item_wrapper .news-title a:hover {
  text-decoration: none;
  color: #d6a20e;
}
.news_large_list .news_content {
  margin-top: 15px;
}
.news_large_list .news_content .publication_date {
  color: #7f7d7e;
  font-weight: bold;
  margin-bottom: 36px;
}
.news_large_list .news_content .content-wrapper {
  padding-bottom: 20px;
}
.news_large_list .news_content .content-wrapper h2 {
  margin: 0 0 23px;
}
.news_large_list .news_content .content-wrapper .content_area .headline {
  font-weight: bold;
}
.news_large_list .news_content .nav_news_details {
  position: absolute;
  top: -20px;
  right: 0;
}
.news_large_list .news_content .nav_news_details .cell {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  float: left;
}
.news_large_list .news_content .nav_news_details .cell a span {
  display: none;
}
.news_large_list .news_content .nav_news_details .cell a:after {
  padding: 0 10px;
  color: #333333;
  height: 22px;
  line-height: 22px;
}
.news_large_list .news_content .nav_news_details .cell a:hover {
  text-decoration: none;
}
.news_large_list .news_content .nav_news_details .cell a:hover:after {
  color: #d6a20e;
}
.news_large_list .news_content .nav_news_details .cell.prev a:before {
  display: inline-block;
  margin-top: -7px;
  padding: 0 10px;
  content: '\e808';
  font-size: 2.6rem;
  border-right: 1px solid #f9f9f9;
  color: #333333;
  height: 22px;
  line-height: 22px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .news_large_list .news_content .nav_news_details .cell.prev a:before {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .news_large_list .news_content .nav_news_details .cell.prev a:before {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .news_large_list .news_content .nav_news_details .cell.prev a:before {
    line-height: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .news_large_list .news_content .nav_news_details .cell.prev a .shortTitle {
    display: inline-block;
    color: #333333;
    font-family: lora_italic, serif;
    padding: 0 12px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 961px) {
  .news_large_list .news_content .nav_news_details .cell.prev a .shortTitle {
    display: inline-block;
    color: #333333;
    font-family: lora_italic, serif;
    padding: 0 20px;
    font-size: 20px;
  }
}
.news_large_list .news_content .nav_news_details .cell.center.return_to_list {
  line-height: 28px;
}
.news_large_list .news_content .nav_news_details .cell.center.return_to_list a:after {
  content: '\e809';
  font-size: 1.6rem;
  padding-top: 2px;
  border-right: 1px solid #f9f9f9;
  border-left: 1px solid #f9f9f9;
}
.news_large_list .news_content .nav_news_details .cell.next a:after {
  content: '\e807';
  font-size: 2.6rem;
  border-left: 1px solid #f9f9f9;
  color: #333333;
  height: 22px;
  line-height: 22px;
}
@media only screen and (max-width: 767px) {
  .news_large_list .news_content .nav_news_details .cell.next a:after {
    line-height: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .news_large_list .news_content .nav_news_details .cell.next a:after {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .news_large_list .news_content .nav_news_details .cell.next a .shortTitle {
    display: inline-block;
    color: #333333;
    font-family: lora_italic, serif;
    padding: 0 12px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 961px) {
  .news_large_list .news_content .nav_news_details .cell.next a .shortTitle {
    display: inline-block;
    color: #333333;
    font-family: lora_italic, serif;
    padding: 0 20px;
    font-size: 20px;
  }
}
.pagination {
  margin-top: 43px;
  display: block;
}
.pagination .table_pager,
.pagination .pager {
  margin: 0 auto;
  text-align: center;
}
.pagination .table_pager > *:not(script),
.pagination .pager > *:not(script) {
  margin-bottom: 10px;
  display: inline-block;
}
.pagination .table_pager .spacer,
.pagination .pager .spacer {
  margin-left: 8px;
}
.pagination .table_pager .button_b,
.pagination .pager .button_b {
  color: #d6a20e;
  display: inline-block;
  border: 1px solid #f1f1f1;
  padding: 8px 15px;
  margin-left: 8px;
  cursor: pointer;
}
.pagination .table_pager .button_b.page_current,
.pagination .pager .button_b.page_current {
  color: #c5c5c5;
}
.pagination .table_pager .button_b:first-of-type,
.pagination .pager .button_b:first-of-type {
  margin-left: 0;
}
.pagination .table_pager .button_b.pager_prev,
.pagination .pager .button_b.pager_prev {
  margin-right: 35px;
}
@media only screen and (max-width: 480px) {
  .pagination .table_pager .button_b.pager_prev,
  .pagination .pager .button_b.pager_prev {
    margin-right: 10px;
  }
}
.pagination .table_pager .button_b.pager_prev span,
.pagination .pager .button_b.pager_prev span {
  display: none;
}
.pagination .table_pager .button_b.pager_prev:after,
.pagination .pager .button_b.pager_prev:after {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  content: '\e805';
  font-size: 1.6rem;
}
.pagination .table_pager .button_b.pager_next,
.pagination .pager .button_b.pager_next {
  margin-left: 35px;
}
@media only screen and (max-width: 480px) {
  .pagination .table_pager .button_b.pager_next,
  .pagination .pager .button_b.pager_next {
    margin-left: 10px;
  }
}
.pagination .table_pager .button_b.pager_next span,
.pagination .pager .button_b.pager_next span {
  display: none;
}
.pagination .table_pager .button_b.pager_next:after,
.pagination .pager .button_b.pager_next:after {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  content: '\e806';
  font-size: 1.6rem;
}
.component.mennica_contact_form a {
  cursor: pointer;
}
.component.mennica_contact_form .popup {
  padding: 20px 50px;
}
.popup_cover {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 450px;
  background: #fff;
  z-index: 1002;
  padding: 50px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .popup {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 767px) {
  .popup {
    width: 100%;
    top: 0;
    margin-top: 120px;
    left: 0;
    margin-left: 0;
    height: auto;
  }
}
@media only screen and (max-height: 670px) {
  .popup {
    position: absolute;
    top: 0;
    margin-top: 0;
  }
}
.popup #contact-form-header {
  margin-top: 0;
  position: relative;
  margin-bottom: 18px;
}
.popup #contact-form-header:after {
  width: 75px;
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5em;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #d6a20e;
}
.popup .button:first-child {
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 32px;
  overflow: hidden;
  margin: 0;
  text-align: center;
  color: #d6a20e;
  border-style: solid;
  border-width: 1px;
  border-color: #d6a20e;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-shadow: none;
  height: 33px;
  width: 33px;
  padding: 0;
  font-size: 0;
  font-weight: 200;
}
.popup .button:first-child:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  content: '\e811';
  font-size: 20px;
}
.popup .button:first-child span {
  display: none;
}
.popup .button.primary {
  bottom: 28px;
  cursor: pointer;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.s-hidden {
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.mennica-form-wrapper .field,
.gold_application_form .field {
  position: relative;
  padding-bottom: 8px;
}
.mennica-form-wrapper .field .label.subject,
.gold_application_form .field .label.subject {
  color: #a8a8a8;
}
.mennica-form-wrapper .field input,
.gold_application_form .field input,
.mennica-form-wrapper .field .styledSelect,
.gold_application_form .field .styledSelect {
  width: 100%;
  border: 1px solid #ededed;
  background: #f9f9f9;
  padding: 8px 12px;
  position: relative;
  margin-bottom: 8px;
}
.mennica-form-wrapper .field input.field_error,
.gold_application_form .field input.field_error,
.mennica-form-wrapper .field .styledSelect.field_error,
.gold_application_form .field .styledSelect.field_error {
  border: 1px solid #ec1500;
  color: #ec1500;
  background: #ffeceb;
}
.mennica-form-wrapper .field .styledSelect:after,
.gold_application_form .field .styledSelect:after {
  font-family: 'fontello_mennica';
  content: '\e80a';
  height: 10px;
  width: 10px;
  position: absolute;
  top: 6px;
  right: 14px;
}
.mennica-form-wrapper .field .select,
.gold_application_form .field .select {
  position: relative;
}
.mennica-form-wrapper .field .textarea,
.gold_application_form .field .textarea {
  height: 98px;
}
.mennica-form-wrapper .field .textarea textarea,
.gold_application_form .field .textarea textarea {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  border: 1px solid #ededed;
  background: #f9f9f9;
  padding: 10px;
}
.mennica-form-wrapper .field .textarea textarea.field_error,
.gold_application_form .field .textarea textarea.field_error {
  border: 1px solid #ec1500;
  color: #ec1500;
  background: #ffeceb;
}
.mennica-form-wrapper .field .field_error_container,
.gold_application_form .field .field_error_container {
  position: absolute;
  top: 100%;
  right: 0;
  font-size: 10px;
  margin-top: -2px;
  color: #ec1500;
}
.mennica-form-wrapper .field .mandatory,
.gold_application_form .field .mandatory {
  display: inline-block;
  position: absolute;
  color: #ec1500 !important;
  left: -15px;
}
.mennica-form-wrapper .field input[type=checkbox],
.gold_application_form .field input[type=checkbox] {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.mennica-form-wrapper .field input[type=checkbox] + label,
.gold_application_form .field input[type=checkbox] + label {
  margin-bottom: 0;
  font-size: 15px;
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.mennica-form-wrapper .field input[type=checkbox] + label:before,
.gold_application_form .field input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 19px;
  height: 19px;
  margin-right: 0.5em;
  background-image: url('/_cms-img/time20250725085903/mennica/checkbox.png');
  background-repeat: no-repeat;
  background-position: 0 0;
}
.mennica-form-wrapper .field input[type=checkbox]:checked + label:before,
.gold_application_form .field input[type=checkbox]:checked + label:before {
  background-position: 0px -19px;
}
.mennica-form-wrapper .field.gold-weight span:nth-of-type(2),
.gold_application_form .field.gold-weight span:nth-of-type(2),
.mennica-form-wrapper .field.date span:nth-of-type(2),
.gold_application_form .field.date span:nth-of-type(2),
.mennica-form-wrapper .field.gold-weight img,
.gold_application_form .field.gold-weight img,
.mennica-form-wrapper .field.date img,
.gold_application_form .field.date img {
  display: inline-block;
  position: absolute;
  color: #7f7d7e;
  right: -18px;
  margin-top: 10px;
}
.mennica-form-wrapper .field.gold-weight img,
.gold_application_form .field.gold-weight img,
.mennica-form-wrapper .field.date img,
.gold_application_form .field.date img {
  right: -22px;
}
.mennica-form-wrapper .agreement_field,
.gold_application_form .agreement_field {
  margin-top: 14px;
  position: relative;
}
.mennica-form-wrapper .agreement_field input.checkbox_field,
.gold_application_form .agreement_field input.checkbox_field {
  display: inline-block;
}
.mennica-form-wrapper .agreement_field .field_label,
.gold_application_form .agreement_field .field_label {
  color: #333;
  font-weight: normal;
  white-space: normal;
  text-align: left;
  margin-left: 10px;
  vertical-align: top;
  line-height: 1.4;
  font-size: 14px;
  width: calc(100% - 23px);
}
.mennica-form-wrapper .agreement_field .field_error_container,
.gold_application_form .agreement_field .field_error_container {
  display: block;
  position: absolute;
  color: red;
  font-weight: normal;
  left: 27px;
  font-size: 11px;
  top: -12px;
}
.mennica-form-wrapper .information,
.gold_application_form .information {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #b3b3b3;
  font-size: 15px;
}
.mennica-form-wrapper .g-recaptcha,
.gold_application_form .g-recaptcha {
  width: 304px;
  height: 78px;
  -webkit-transform: scale(1) !important;
  -moz-transform: scale(1) !important;
  -o-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
}
.gold_application_form .form_footer .field span.mandatory {
  margin-top: 0;
}
.gold_application_form .form_footer .field .field_error_container {
  margin-top: 5px;
  position: relative;
  margin-left: 27px;
  white-space: nowrap;
}
@media only screen and (max-width: 480px) {
  .gold_application_form .form_footer .field .field_error_container {
    margin-left: 0;
  }
}
.gold_application_form .field .field_error_container {
  margin-top: -20px;
  width: 100%;
  text-align: left;
  background-color: #fff;
}
.gold_application_form .note {
  margin-top: 15px;
  color: #b3b3b3;
  font-size: 14px;
}
.gold_application_form .center_buttons_panel {
  margin: 30px 0;
}
#gold_application_form_user_form_password_error_container {
  margin-top: -12px;
}
#gold_application_form_send {
  cursor: pointer;
}
#mennica_contact_form_popup {
  display: none;
}
.mennica_contact_form .mennica-form-wrapper .field .label span.mandatory {
  display: none;
}
.mennica_contact_form .mennica-form-wrapper .field.half {
  width: 50%;
  display: inline-block;
}
.mennica_contact_form .mennica-form-wrapper .field.half:nth-of-type(2n-1) {
  padding-right: 10px;
}
.mennica_contact_form .mennica-form-wrapper .field.half:nth-of-type(2n) {
  padding-left: 10px;
}
@media only screen and (max-width: 480px) {
  .mennica_contact_form .mennica-form-wrapper .field.half {
    width: 100%;
    display: block;
  }
  .mennica_contact_form .mennica-form-wrapper .field.half:nth-of-type(2n-1),
  .mennica_contact_form .mennica-form-wrapper .field.half:nth-of-type(2n) {
    padding: 0;
  }
}
.mennica_contact_form .mennica-form-wrapper .g-recaptcha {
  margin: 35px 0 45px;
}
.col-md-4 .mennica_contact_form .mennica-form-wrapper .field.half {
  width: 100%;
  display: inline-block;
}
.col-md-4 .mennica_contact_form .mennica-form-wrapper .field.half:nth-of-type(2n-1),
.col-md-4 .mennica_contact_form .mennica-form-wrapper .field.half:nth-of-type(2n) {
  padding: 0;
}
.col-md-4 .mennica_contact_form .mennica-form-wrapper .g-recaptcha {
  margin: 15px auto 0;
}
.gold_application_form .field input {
  display: inline-block;
  margin-bottom: 16px;
}
.gold_application_form .field .address {
  display: inline-block;
}
.gold_application_form .field .address.street {
  width: 49%;
  margin-right: 2%;
}
.gold_application_form .field .address.house {
  width: 27%;
  margin-right: 2%;
}
.gold_application_form .field .address.code {
  width: 23%;
  margin-right: 2%;
}
.gold_application_form .field .address.city {
  width: 75%;
}
.gold_application_form .field .address.flat {
  width: 20%;
}
.gold_application_form .field.pesel,
.gold_application_form .field.id-card,
.gold_application_form .field.gold-weight,
.gold_application_form .field.date {
  width: 60%;
}
.gold_application_form .field.pesel .field_error_container,
.gold_application_form .field.id-card .field_error_container,
.gold_application_form .field.gold-weight .field_error_container,
.gold_application_form .field.date .field_error_container {
  width: 200%;
  margin-right: -100%;
  text-align: left;
}
.gold_application_form .field .password {
  position: relative;
}
.gold_application_form .field .password input {
  width: 49%;
}
.gold_application_form .field .password input:first-of-type {
  margin-right: 2%;
}
.services_home .col-md-4 {
  border: 1px solid #ededed;
  border-bottom: none;
  margin-bottom: -1px;
  margin-left: -1px;
}
.services_home .row:first-child .col-md-4 {
  border-top: 0;
}
.services_home .row:first-child .col-md-4 .service-wrapper {
  padding-top: 1px;
}
.services_home .row:last-child {
  border-bottom: none;
}
.services_home .row:last-child .col-md-4 {
  border-bottom: 0;
}
.services_home .row {
  border-bottom: 1px solid #ededed;
  margin-top: -1px;
}
.services_home .row .col-md-4:first-child {
  border-left: 0;
  margin-left: 0;
}
.services_home .row .col-md-4:first-child .service-wrapper {
  padding-left: 0;
}
.services_home .row .col-md-4:last-child {
  border-right: 0;
}
.services_home .row .col-md-4:last-child .service-wrapper {
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .services_home .row .col-md-4 {
    border: none;
    border-top: 1px solid #ededed;
  }
  .services_home .row .col-md-4 .service-wrapper {
    padding-left: 0;
    margin-left: -15px;
  }
  .services_home .row:first-child {
    margin-bottom: 0;
  }
  .services_home .row:first-child .col-md-4 {
    border-top: 1px solid #ededed;
  }
  .services_home .row:first-child .col-md-4 .service-wrapper {
    padding-top: 27px;
  }
  .services_home .row:first-child .col-md-4:first-child {
    border: none;
  }
}
.services_home .content-block {
  padding-top: 40px;
  padding-bottom: 40px;
}
.services_home .service-wrapper {
  padding: 27px 12px 29px 12px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .services_home .service-wrapper {
    padding: 27px 12px 19px 12px;
  }
}
.services_home .service-wrapper .image {
  float: left;
}
.services_home .service-wrapper .image img {
  margin-right: 20px;
}
@media only screen and (max-width: 480px) {
  .services_home .service-wrapper .image img {
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .services_home .service-wrapper .image {
    float: none;
  }
  .services_home .service-wrapper .image img {
    margin-right: 0;
  }
}
.services_home .service-wrapper .content {
  margin-left: 126px;
}
@media only screen and (max-width: 480px) {
  .services_home .service-wrapper .content {
    margin-left: 116px;
  }
}
.services_home .service-wrapper .content .content-box {
  min-height: 83px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .services_home .service-wrapper .content .content-box {
    min-height: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .services_home .service-wrapper .content .service-title {
    margin-top: 20px;
  }
}
.services_home .service-wrapper .content .service-title h3 {
  margin-top: 0;
  margin-bottom: 5px;
  line-height: 22px;
}
@media only screen and (max-width: 480px) {
  .services_home .service-wrapper .content .service-title h3 {
    font-size: 23px;
  }
}
.services_home .service-wrapper .content .desc {
  color: #d6a20e;
  padding-bottom: 5px;
}
.services_home .service-wrapper .content .read-more {
  color: #d6a20e;
  position: relative;
  bottom: 0;
  line-height: 20px;
  display: inline-block;
  font-size: 0;
  font-size: 13px;
}
.services_home .service-wrapper .content .read-more:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.services_home .service-wrapper .content .read-more:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.services_home .service-wrapper .content .read-more:before {
  content: '\e806';
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .services_home .service-wrapper .content {
    margin-left: 0px;
  }
}
.investor-relations-contact .investor-wrapper {
  padding: 35px 42px;
}
@media only screen and (max-width: 961px) {
  .investor-relations-contact .investor-wrapper {
    padding: 35px 0;
  }
}
@media only screen and (max-width: 767px) {
  .investor-relations-contact .investor-wrapper {
    padding: 35px 0;
  }
}
@media only screen and (max-width: 767px) {
  .investor-relations-contact .investor-wrapper h2 {
    text-align: center;
  }
}
.investor-relations-contact .investor-wrapper .information-wrapper {
  border-bottom: 1px solid #ededed;
  padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .investor-relations-contact .investor-wrapper .information-wrapper p {
    text-align: center;
  }
}
.investor-relations-contact .investor-wrapper .information-wrapper .image {
  padding-right: 15px;
}
.investor-relations-contact .investor-wrapper .information-wrapper .separator {
  margin-bottom: 7px;
}
.investor-relations-contact .investor-wrapper .address-wrapper {
  padding-top: 22px;
}
@media only screen and (min-width: 768px) {
  .investor-relations-contact .investor-wrapper .lead:before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .investor-relations-contact .investor-wrapper .lead:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.stocks-exchange-logo {
  margin-top: 22px;
  margin-bottom: 60px;
}
.stocks-exchange-logo .section-header {
  margin-bottom: 67px;
}
.stocks-exchange-logo .logo-section {
  display: table;
  width: 100%;
}
.stocks-exchange-logo .logo-section .item {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #ededed;
  padding: 0 20px;
}
.stocks-exchange-logo .logo-section .item img {
  margin: -15px 0;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .stocks-exchange-logo .logo-section .item img {
    width: 100%;
  }
}
.stocks-exchange-logo .logo-section .item:last-child {
  border: none;
}
@media only screen and (max-width: 767px) {
  .stocks-exchange-logo .logo-section {
    display: block;
  }
  .stocks-exchange-logo .logo-section .item {
    display: block;
    border: none;
    margin-bottom: 56px;
  }
  .stocks-exchange-logo .logo-section .item img {
    margin: 0;
  }
}
.white-box {
  background: #fff;
  border: 1px solid #ededed;
  padding: 36px 40px;
  margin-top: 41px;
  margin-bottom: 55px;
}
.white-box h3 {
  margin-top: 0;
  margin-bottom: 39px;
  line-height: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .white-box {
    padding: 15px;
  }
  .white-box a[href^="mailto:"] {
    font-size: 13px;
  }
}
.media-contact,
.investors-contact,
.numismatic-collection {
  font-size: 1.6rem;
}
.media-contact .person img,
.investors-contact .person img,
.numismatic-collection .person img {
  max-width: 67px;
  max-height: 67px;
  float: left;
}
.media-contact .person p,
.investors-contact .person p,
.numismatic-collection .person p {
  margin: 0 0 3px 81px;
}
.media-contact .person p.small,
.investors-contact .person p.small,
.numismatic-collection .person p.small {
  font-size: 1.4rem;
}
.media-contact p,
.investors-contact p,
.numismatic-collection p {
  margin: 0 0 20px 0;
}
.media-contact .separator,
.investors-contact .separator,
.numismatic-collection .separator {
  margin-bottom: 7px;
}
.media-contact .separator img,
.investors-contact .separator img,
.numismatic-collection .separator img {
  margin-right: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .media-contact .separator img,
  .investors-contact .separator img,
  .numismatic-collection .separator img {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .media-contact .separator a[href^="mailto:"],
  .investors-contact .separator a[href^="mailto:"],
  .numismatic-collection .separator a[href^="mailto:"] {
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .media-contact .separator,
  .investors-contact .separator,
  .numismatic-collection .separator {
    overflow: hidden;
  }
  .media-contact .separator .image,
  .investors-contact .separator .image,
  .numismatic-collection .separator .image {
    float: left;
  }
  .media-contact .separator .image + a,
  .investors-contact .separator .image + a,
  .numismatic-collection .separator .image + a {
    word-break: break-all;
    display: inline-block;
    width: calc(100% - 44px);
    float: left;
  }
}
.intro_creation {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
}
.component_wrapper > .intro_creation {
  padding-top: 0;
}
.intro_creation .item {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.intro_creation .foreground {
  padding: 20px 50px 30px 50px;
  float: left;
  width: 100%;
  position: relative;
  z-index: 3;
}
.intro_creation .background {
  position: absolute;
  width: 100%;
  min-height: 100%;
}
@media only screen and (max-width: 767px) {
  .no_bg_mobile.intro_creation .background img {
    display: none;
  }
}
.intro_creation .background img {
  display: block;
}
.intro_creation h1 a {
  color: inherit;
}
.intro_creation h1 a:hover {
  text-decoration: none;
}
.intro_creation h2 {
  font-size: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .intro_creation h2 {
    font-size: 27px;
  }
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .intro_creation h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .intro_creation h2 {
    font-size: 21px;
  }
}
.intro_creation h2.lead {
  margin-left: 0;
}
.intro_creation .lead {
  max-width: 560px;
  margin: 28px auto;
}
.intro_creation .buttons {
  margin-bottom: 10px;
}
.intro_creation_large .foreground {
  width: auto;
  padding-right: 5px;
  margin: 0 0 0 55px;
  position: relative;
  background-color: #046e5a;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .intro_creation_large .foreground {
    padding: 20px;
  }
}
.intro_creation_large .foreground > * {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .intro_creation_large .foreground .with-img {
    margin-right: 400px !important;
  }
}
@media only screen and (max-width: 767px) {
  .intro_creation_large .foreground .with-img {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .intro_creation_large .foreground .lead:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.intro_creation_large .item_with_no_background DIV.foreground {
  min-width: 400px;
  max-width: 500px;
  padding-right: 20px;
}
.intro_creation_large .item_with_no_background DIV.foreground > div {
  margin-right: 0 !important;
}
.intro_creation_large .item_with_no_background DIV.foreground:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* nie działa przez to compressor css
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);*/
  background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(30%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0.3)));
  background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
html.ie-gt9 .intro_creation_large .item_with_no_background DIV.foreground:after {
  filter: none;
}
@media only screen and (max-width: 767px) {
  .intro_creation_large .item_with_no_background DIV.foreground {
    margin-left: 20px;
    min-width: 90%;
  }
}
.intro_creation_large .item_with_no_background .background {
  min-height: 600px;
}
.intro_creation_large .item_with_background DIV.foreground {
  background: transparent;
}
@media only screen and (max-width: 767px) {
  .intro_creation_large .item_with_background DIV.foreground {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.intro_creation_large .item_with_background .background {
  background: #046e5a;
}
.intro_creation_large .item_with_background .background img {
  opacity: 0.1;
}
.intro_creation_large .item_with_background .background:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* nie działa przez to compressor css
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);*/
  background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(30%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0.3)));
  background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
html.ie-gt9 .intro_creation_large .item_with_background .background:after {
  filter: none;
}
.intro_creation_large .item_with_background .img img {
  min-height: 0 !important;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .intro_creation_large .item_with_background .img img {
    width: 400px !important;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
  }
  .intro_creation_large .item_with_background .img img img {
    max-width: 100%;
    position: static;
  }
}
.intro_creation_large .img {
  float: right;
}
.intro_creation_large .img img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}
.intro_creation_medium .lead {
  margin: 16px 0 16px 0;
  max-width: none;
}
.intro_creation_medium .img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 520px;
  text-align: center;
}
@media only screen and (min-width: 961px) {
  .intro_creation_medium .img {
    width: 520px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .intro_creation_medium .img {
    width: 400px;
  }
}
.intro_creation_medium .img img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.intro_creation_medium .item_with_no_background .foreground {
  color: #333333;
}
.intro_creation_medium .item_with_background .foreground {
  color: #fff;
}
.intro_creation_medium .item_with_background .background {
  background: #046e5a;
}
.intro_creation_medium .item_with_background .background:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 33%;
  content: "";
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
}
.intro_creation_medium .item_with_background .background img {
  opacity: 0.1;
}
.intro_creation_medium .foreground h1 {
  margin-top: 33px;
  font-size: 35px;
}
@media only screen and (min-width: 961px) {
  .intro_creation_medium .foreground .with-img {
    margin-right: 520px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .intro_creation_medium .foreground .with-img {
    margin-right: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .intro_creation_medium .owl-stage-outer {
    padding-bottom: 20px;
  }
  .intro_creation_medium .owl-controls {
    bottom: 0;
  }
}
.intro_creation_small .lead {
  margin: 16px auto 0;
}
.intro_creation_small .lead:before {
  left: 50%;
  top: -0.75em;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.intro_creation_small .item_with_no_background .foreground {
  display: table;
  color: #333333;
}
.intro_creation_small .item_with_no_background .foreground > div {
  display: table-cell;
  vertical-align: middle;
}
.intro_creation_small .item_with_no_background .foreground h1 {
  margin-top: 0;
}
.intro_creation_small .item_with_no_background .background {
  min-height: 240px;
}
.intro_creation_small .item_with_background .foreground {
  display: table;
  color: #fff;
}
.intro_creation_small .item_with_background .foreground > div {
  display: table-cell;
  vertical-align: middle;
}
.intro_creation_small .item_with_background .background {
  background: #046e5a;
}
.intro_creation_small .item_with_background .background:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 33%;
  content: "";
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
  background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
}
.intro_creation_small .item_with_background .background img {
  opacity: 0.1;
}
.intro_creation_small .foreground {
  text-align: center;
}
.intro_creation_small .foreground h1 {
  margin-top: 33px;
  font-size: 35px;
}
@media only screen and (min-width: 768px) {
  .intro_creation_large .lead {
    margin-top: 25px;
  }
  .intro_creation .buttons a {
    padding-right: 70px;
    padding-left: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .intro_creation_large .foreground {
    min-width: 0;
    max-width: none;
    margin-left: 40px;
    margin-right: 40px;
    margin-bottom: 30px;
    padding-left: 40px;
  }
  .intro_creation_large .item_with_no_background .foreground {
    min-width: 0;
    max-width: none;
  }
  .intro_creation_large .item_with_background .foreground {
    min-width: 0;
    max-width: none;
    margin-left: 40px;
    margin-right: 40px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
  }
  .intro_creation_large .item_with_background .foreground h2.lead:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .intro_creation_large .item_with_background .img {
    display: none;
  }
  .intro_creation_medium {
    text-align: center;
  }
  .intro_creation_medium .img {
    display: none;
  }
  .intro_creation_medium h1,
  .intro_creation_medium .lead {
    margin-right: 0;
  }
  .intro_creation_medium .lead:before {
    left: 50%;
    top: -0.75em;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .intro_creation_large .foreground,
  .intro_creation_medium .foreground,
  .intro_creation_small .foreground {
    padding: 10px 50px 15px 50px;
  }
  .intro_creation_large .foreground .inner_box,
  .intro_creation_medium .foreground .inner_box,
  .intro_creation_small .foreground .inner_box {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 480px) {
  .intro_creation .foreground {
    padding: 10px 20px 15px;
  }
  .intro_creation .foreground h1 {
    font-size: 32px;
  }
}
.how-to-rss {
  text-align: center;
  padding-top: 76px;
  padding-bottom: 76px;
  margin-top: 0;
}
.how-to-rss .lead:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
/**
 * Import funkcji wykorzystywanych w komponentach.
 */
.search_results .gsc-control-cse {
  font-family: robotoCondensedLight, sans-serif;
  font-weight: 200;
  border: none;
}
.search_results .gsc-control-cse .gsc-table-result {
  font-family: robotoCondensedLight, sans-serif;
  font-weight: 200;
}
.search_results a:visited,
.search_results a:visited b {
  color: #333333 !important;
}
.search_results TABLE.gsc-search-box {
  display: none;
}
.search_results .gsc-above-wrapper-area,
.search_results .gsc-table-result {
  border: none;
}
.search_results .gsc-result-info-container {
  text-align: center;
}
.search_results .gsc-result-info {
  margin: -20px 0 20px;
  text-align: center;
  line-height: 1.5em;
  font-size: 16px;
  position: relative;
}
.search_results .gsc-result-info:before {
  width: 50px;
  content: "";
  display: block;
  position: absolute;
  top: -0.5em;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #d6a20e;
}
.section-header .search_results .gsc-result-info:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.search_results .gsc-result-info:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
}
.search_results .gsc-table-cell-snippet-close {
  padding: 30px 0;
}
.search_results DIV.gs-title {
  margin-bottom: 12px;
}
.search_results A.gs-title {
  font-family: robotoCondensed, sans-serif;
  font-weight: 400;
}
.search_results .gs-webResult.gs-result a.gs-title:link,
.search_results .gs-webResult.gs-result a.gs-title:link b,
.search_results .gs-imageResult a.gs-title:link,
.search_results .gs-imageResult a.gs-title:link b {
  color: #000 !important;
  text-decoration: none;
  font-weight: 400;
}
.search_results .gs-result .gs-title,
.search_results .gs-result .gs-title * {
  text-decoration: none;
}
.search_results .gs-webResult div.gs-visibleUrl,
.search_results .gs-imageResult div.gs-visibleUrl {
  color: #d6a20e;
  font-size: 15px;
}
.search_results .gs-webResult .gs-snippet,
.search_results .gs-imageResult .gs-snippet,
.search_results .gs-fileFormatType {
  color: #333333;
  font-size: 16px;
  font-weight: 200;
}
.search_results TD > DIV.gs-bidi-start-align {
  margin-bottom: 12px;
}
.search_results .cse .gsc-webResult.gsc-result,
.search_results .gsc-webResult.gsc-result,
.search_results .gsc-imageResult-column,
.search_results .gsc-imageResult-classic {
  margin: 0;
  padding: 0;
}
.search_results .gsc-results .gsc-cursor-box {
  margin-top: 30px;
  text-align: center;
}
.search_results .gsc-cursor-box div.gsc-cursor-page {
  color: #d6a20e;
  display: inline-block;
  border: 1px solid #f1f1f1;
  padding: 8px 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  width: 40px;
  outline-color: #d6a20e;
}
.search_results .gsc-cursor-box div.gsc-cursor-page.gsc-cursor-current-page {
  color: #c5c5c5;
}
.search_results .gsc-cursor-box div.gsc-cursor-page:first-of-type {
  margin-left: 0;
}
.search_results .gsc-above-wrapper-area table tbody tr {
  border: none;
}
.search_results .gsc-above-wrapper-area table tbody tr td {
  padding: 0;
}
.search_results .gsc-result .gs-title {
  height: auto;
}
.search_results .gcsc-branding {
  display: none;
}
.content_area table.gsc-branding tbody tr,
.content_area table.gsc-search-box tbody tr,
.content_area table.gsc-table-result tbody tr {
  border-bottom: 0 none;
}
.component.small_gold_price_chart .small-chart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 10px 10px 45px;
  color: #ffffff;
  font-weight: bold;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .component.small_gold_price_chart .small-chart-header {
    display: block;
  }
}
.component.small_gold_price_chart .small-chart-header .title {
  margin: 0;
  font-size: 1.3em;
}
.component.small_gold_price_chart .small-chart-header .price {
  margin: 0;
  font-size: 1.9em;
}
.component.small_gold_price_chart .small-chart-header .small_gold_price_chart_actual_price {
  position: relative;
}
.component.small_gold_price_chart .small-chart-header #price_gradient {
  position: absolute;
  top: 25px;
  left: -20px;
  width: 0;
  height: 0;
}
.component.small_gold_price_chart .small-chart-header #price_gradient.gradient_down {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}
.component.small_gold_price_chart .small-chart-header #price_gradient.gradient_up {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
}
.component.small_gold_price_chart .small-chart-header .small_gold_price_chart_last_date {
  font-size: 14px;
}
.events_calendar {
  padding: 20px;
  position: relative;
  background: url(/_cms-img/time20250725085903/mennica/comp/event-calendar/kalendarium_background.png) no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .events_calendar {
    padding: 0;
  }
}
.events_calendar .left-arrow,
.events_calendar .right-arrow {
  top: 40%;
  position: absolute;
  cursor: pointer;
  font-size: 50px;
  z-index: 22;
  color: #eeeeee;
  transition: color, 0.2s ease-in;
}
.events_calendar .left-arrow:hover,
.events_calendar .right-arrow:hover {
  color: #ccc;
}
.events_calendar .left-arrow:before,
.events_calendar .right-arrow:before {
  font-family: "fontello_mennica";
}
@media only screen and (max-width: 767px) {
  .events_calendar .left-arrow,
  .events_calendar .right-arrow {
    display: none;
  }
}
.events_calendar .right-arrow {
  right: 30px;
}
.events_calendar .right-arrow:before {
  content: '\e807';
}
.events_calendar .left-arrow {
  left: 30px;
}
.events_calendar .left-arrow:before {
  content: '\e808';
}
.events_calendar .events-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.events_calendar .events-header .events-calendar-header {
  margin-top: 0;
}
.events_calendar .events-header .desc-title {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .events_calendar .events-header .desc-title {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .events_calendar .events-header .select-event {
    display: none;
  }
}
.events_calendar .events-header .select-event span {
  margin-right: 15px;
}
.events_calendar .events-header .events-calendar-time-window {
  background: transparent;
  padding: 7px;
  width: 110px;
  border: solid 1px #eee;
}
.events_calendar .scrollbar-outer.scroll-content {
  white-space: nowrap;
}
.events_calendar .event-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 30px 10px;
}
.events_calendar .event-wrapper .month-box {
  position: relative;
  padding-top: 10px;
  margin-top: 100px;
}
.events_calendar .events-calendar-event-container {
  display: none;
  font-weight: bold;
  min-width: 320px;
  min-height: 110px;
  z-index: 22;
  padding: 20px;
  position: absolute;
  color: #fff;
  background: #006553;
  bottom: 35px;
  left: 7px;
}
.events_calendar .events-calendar-event-container.past {
  background: #7f7f7f;
}
.events_calendar .events-calendar-event-container.past:after {
  border-left-color: #7f7f7f;
}
@media only screen and (min-width: 768px) {
  .events_calendar .events-calendar-event-container {
    max-width: 370px;
  }
}
@media only screen and (max-width: 767px) {
  .events_calendar .events-calendar-event-container {
    position: fixed;
    width: 100%;
    z-index: 20022;
    height: 100vh;
    left: 0;
    top: 0;
  }
}
.events_calendar .events-calendar-event-container:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 20px solid #006553;
  border-bottom: 17px solid transparent;
  position: absolute;
  left: 0;
  bottom: -15px;
}
.events_calendar .events-calendar-event-container:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* nie działa przez to compressor css
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);*/
  background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(30%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0.3)));
  background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
html.ie-gt9 .events_calendar .events-calendar-event-container:before {
  filter: none;
}
.events_calendar .events-calendar-event-container.active {
  display: block;
}
.events_calendar .events-calendar-event-container .exit {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 5;
}
.events_calendar .events-calendar-event-container .exit:before {
  content: '\e811';
  font-family: "fontello_mennica";
  font-size: 11px;
  position: absolute;
  border: solid 1px #fff;
  padding: 7px;
  line-height: 11px;
  border-radius: 50%;
  right: -8px;
  top: -10px;
  cursor: pointer;
}
.events_calendar .events-calendar-event-container .event-date {
  position: relative;
  padding-bottom: 20px;
}
.events_calendar .events-calendar-event-container .event-date:after {
  content: "";
  width: 25px;
  display: block;
  position: absolute;
  top: 1.8em;
  border: solid 1px #d6a20e;
}
.events_calendar .events-calendar-event-container .event-description {
  margin-bottom: 10px;
  white-space: initial;
}
.events_calendar .month-box {
  display: inline-block;
  width: calc(100% / 6);
  margin-bottom: 50px;
  margin-top: 200px;
}
@media only screen and (max-width: 480px) {
  .events_calendar .month-box {
    margin-top: 90px;
    width: calc(100% / 3);
  }
}
.events_calendar .month-box.twelve {
  width: calc(100% / 12);
}
.events_calendar .month-box.twelve .events-calendar-week-box {
  width: 50%;
}
.events_calendar .month-box .month-name {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 5px;
  position: relative;
}
.events_calendar .month-box .month-name:after {
  content: ' ';
  height: calc(100% - -10px);
  border-right: 1px solid #eee;
  position: absolute;
  right: 0;
  bottom: 0;
}
.events_calendar .month-box .month-name .year {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.events_calendar .month-box .week-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #eeeeee;
}
.events_calendar .month-box .events-calendar-week-box {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 5px;
}
.events_calendar .month-box .events-calendar-week-box:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #eeeeee;
  bottom: -10px;
  left: 0;
}
.events_calendar .month-box .events-calendar-week-box:first-child:after {
  background-color: transparent;
}
.events_calendar .month-box .events-calendar-week-box .events-calendar-dot {
  width: 20px;
  height: 20px;
  border: solid 2px #e8e8e8;
  border-radius: 50%;
  position: relative;
  background: #d6a20e;
  margin: 3px auto;
  transition: width .3s, height .3s, border .3s;
}
.events_calendar .month-box .events-calendar-week-box .events-calendar-dot.past {
  background: #c7c6c4;
}
.events_calendar .month-box .events-calendar-week-box .events-calendar-dot.past:hover,
.events_calendar .month-box .events-calendar-week-box .events-calendar-dot.past.active {
  border: solid 2px #c7c6c4;
}
.events_calendar .month-box .events-calendar-week-box .events-calendar-dot:hover,
.events_calendar .month-box .events-calendar-week-box .events-calendar-dot.active {
  border: solid 2px #d6a20e;
  cursor: pointer;
}
.events_calendar .month-box .events-calendar-week-box .events-calendar-dot.active {
  cursor: default;
}
.why-gold,
.why-mennica {
  margin: 46px 0;
  padding: 0 46px;
}
@media only screen and (max-width: 767px) {
  .why-gold,
  .why-mennica {
    margin: 26px 0;
    padding: 0;
    text-align: center;
  }
  .why-gold p,
  .why-mennica p {
    text-align: left;
  }
  .why-gold p:before,
  .why-mennica p:before {
    left: 50%;
    margin-left: -37px;
  }
}
.why-gold .button,
.why-mennica .button {
  padding: 9px 33px;
}
.why-mennica {
  margin-left: -15px;
  padding-left: 61px;
  border-left: 1px solid #ededed;
}
@media only screen and (max-width: 767px) {
  .why-mennica {
    border-left: none;
    border-bottom: 1px solid #ededed;
    margin-left: 0;
    padding: 0 0 30px 0;
  }
}
.blocks_in_3_or_4_columns {
  padding-bottom: 45px;
}
.blocks_in_3_or_4_columns .teaser_block_small h3 a {
  color: inherit;
}
.blocks_in_3_or_4_columns .teaser_block_small h3 a:hover {
  text-decoration: none;
  color: #d6a20e;
}
.blocks_in_3_or_4_columns .with_no_img .teaser_block_small {
  padding-top: 70px;
}
.blocks_in_3_or_4_columns .with_no_img .teaser_block_small h3:before {
  margin: -40px 0 0 -14px;
}
.blocks_in_3_or_4_columns .with_no_img .teaser_block_small_animated {
  padding-top: 90px;
}
@media only screen and (max-width: 480px) {
  .blocks_in_3_or_4_columns .with_no_img .teaser_block_small_animated {
    padding-top: 40px;
    padding-bottom: 90px;
  }
}
.blocks_in_3_or_4_columns .with_no_img .teaser_block_small_animated:hover {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 480px) {
  .blocks_in_3_or_4_columns .with_no_img .teaser_block_small_animated:hover {
    padding-top: 40px;
    padding-bottom: 90px;
  }
}
.blocks_in_3_or_4_columns .with_no_img .teaser_block_small_animated:hover h3:before {
  margin: -25px 0 0 -14px;
}
.blocks_in_3_or_4_columns .with_no_img .teaser_block_small_animated h3:before {
  margin: -40px 0 0 -14px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 480px) {
  .blocks_in_3_or_4_columns .with_no_img .teaser_block_small_animated h3:before {
    margin: -25px 0 0 -14px;
  }
}
.block_with_accordion_column .img img {
  max-width: none;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .block_with_accordion_column .img img {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: 0;
  }
}
.block_with_accordion_column h3 {
  margin-left: -20px;
  margin-right: -20px;
}
.block_with_accordion_column .desc {
  color: #d6a20e;
}
.block_with_accordion_column .buttons .icon {
  color: #d6a20e;
  position: absolute;
  bottom: 0;
  left: 50%;
  line-height: 30px;
  font-size: 0;
  font-size: 13px;
  transition: 0.5s ease all;
}
.block_with_accordion_column .buttons .icon:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.block_with_accordion_column .buttons .icon:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.block_with_accordion_column .buttons .icon:before {
  content: '\e806';
}
.block_with_accordion_column .active .buttons .icon {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.block_with_accordion_column .teaser_block:hover .buttons .icon {
  -webkit-transform: rotateZ(90deg);
  -moz-transform: rotateZ(90deg);
  -o-transform: rotateZ(90deg);
  -ms-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.block_with_accordion_content .block_with_accordion_content_wrapper {
  position: relative;
  padding: 60px 30px 30px 30px;
  border-top: 1px solid #ededed;
  margin-top: 15px;
  margin-left: -30px;
  margin-right: -30px;
  box-sizing: content-box;
  background-color: #f9f9f9;
  z-index: 2039;
}
@media only screen and (max-width: 767px) {
  .block_with_accordion_content .block_with_accordion_content_wrapper {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media only screen and (min-width: 768px) {
  .block_with_accordion_content {
    top: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .block_with_accordion_content {
    position: absolute;
    width: 100%;
  }
  .block_with_accordion_content .dark-bg {
    display: block;
  }
}
.block_with_accordion_component {
  position: relative;
  padding: 60px 30px 30px 30px;
  border-top: 1px solid #ededed;
  margin-top: 15px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  z-index: 2039;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .block_with_accordion_component {
    width: calc(100% + 30px);
  }
}
.block_with_accordion_close_button_wrapper {
  position: absolute;
  top: 15px;
  right: 30px;
}
.block_with_accordion_close_button_wrapper a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  margin: 0;
  text-align: center;
  color: #d6a20e;
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 0;
  font-weight: 200;
}
.block_with_accordion_close_button_wrapper a:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.block_with_accordion_close_button_wrapper a:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.block_with_accordion_close_button_wrapper a:before {
  content: '\e811';
}
.block_with_accordion_close_button_wrapper a:hover,
.block_with_accordion_close_button_wrapper a:focus,
.block_with_accordion_close_button_wrapper a:active {
  text-decoration: none;
}
.block_with_accordion_close_button_wrapper a:before {
  font-size: 20px;
}
.block_with_accordion_close_button_wrapper a span {
  display: none;
}
.block_with_accordion_close_button_wrapper_ontop {
  z-index: 10000;
  right: 30px;
}
.figure_presentation .portrait {
  z-index: 1;
  position: relative;
  margin: 20px 0 40px 0;
}
.figure_presentation .portrait:after {
  content: url('/_cms-img/time20250725085903/mennica/icon_mint.png');
  display: block;
  width: 28px;
  height: 28px;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0 -14px -14px 0;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.figure_presentation .portrait img {
  width: 100%;
}
.figure_presentation h3 {
  color: #d6a20e;
  line-height: 23px;
}
.figure_presentation p {
  line-height: 18px;
  font-size: 1.8rem;
  font-family: robotoCondensed, sans-serif;
}
.figure_presentation table {
  margin-bottom: 28px;
}
.figure_presentation table td {
  font-weight: 200;
  padding-bottom: 14px;
}
.figure_presentation table .date-col {
  width: 123px;
  padding-left: 5px;
  vertical-align: top;
  font-family: robotoCondensed, sans-serif;
}
.figure_presentation .disclaimer {
  color: #7f7d7e;
  font-size: 1.3rem;
  font-family: robotoCondensedLight, sans-serif;
}
.sitemap {
  margin-top: -20px;
}
.sitemap ul.menu_list {
  margin: 0;
  padding: 0;
}
.sitemap ul.menu_list li.lv_0 {
  display: block;
  float: left;
  width: 25%;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .sitemap ul.menu_list li.lv_0 {
    float: none;
    width: auto;
  }
}
.sitemap ul.menu_list li.lv_0:nth-child(4n+1) {
  clear: left;
}
.sitemap ul.menu_list li.lv_0 > a {
  font-family: robotoCondensed, sans-serif;
  color: #333333;
  padding-bottom: 12px;
  position: relative;
}
.sitemap ul.menu_list li.lv_0 > a:after {
  width: 25px;
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5em;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #d6a20e;
}
.sitemap ul.menu_list li.lv_0 > ul.tree_lv_0 {
  margin: 0.75em 0;
  margin-top: 40px;
  padding: 0 1em;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .sitemap ul.menu_list li.lv_0 > ul.tree_lv_0 {
    margin-top: 20px;
  }
}
.sitemap ul.menu_list li.lv_0 li.lv_1:before {
  content: "";
  border-color: transparent #d6a20e;
  border-style: solid;
  border-width: 0.2em 0 0.2em 0.25em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 1.1em;
  position: relative;
}
.sitemap ul.menu_list li.lv_0 li.lv_1 a {
  font-family: robotoCondensedLight, sans-serif;
  color: #333333;
  line-height: 1.7em;
}
.rss_channels .rss_channel {
  border-top: 1px solid #ededed;
  padding: 28px 0;
}
.rss_channels .rss_channel.first_channel {
  border: none;
}
.rss_channels .rss_channel span {
  font-family: robotoCondensed, sans-serif;
}
@media only screen and (max-width: 767px) {
  .rss_channels .rss_channel {
    text-align: center;
  }
}
.error-404 h1 {
  color: #d6a20e;
  font-size: 64px;
  margin-bottom: 38px;
}
.error-404 h2 {
  position: relative;
  padding-top: 12px;
  font-size: 40px;
  margin-bottom: 20px;
}
.error-404 h2.lead-center:before {
  width: 76px;
  content: "";
  display: block;
  position: absolute;
  top: -0.5em;
  left: 50%;
  margin-left: -38px;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #d6a20e;
}
.monets_blocks {
  position: relative;
  padding: 20px 62px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI2OCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZWNlY2VjIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(top, #ffffff 68%, #ececec 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68%, #ffffff), color-stop(100%, #ececec));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 68%, #ececec 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 68%, #ececec 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 68%, #ececec 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 68%, #ececec 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ececec', GradientType=0);
  /* IE6-8 */
}
@media only screen and (max-width: 480px) {
  .monets_blocks {
    padding: 0px 10px;
  }
}
.monets_blocks h2 {
  color: #d6a20e;
  margin-bottom: 0.5em;
}
.monets_blocks .button {
  font-family: robotoCondensed, sans-serif;
  padding: 11px 35px;
}
.monets_blocks img {
  max-width: 100%;
}
.mennica_points_of_sale {
  padding: 30px 0;
}
.mennica_points_of_sale .tabs-panel {
  border-bottom: 1px solid #ededed;
  text-align: center;
  margin-bottom: 40px;
}
.mennica_points_of_sale .tabs-panel .mennica_points_of_sale_tabs {
  background: #fff;
  display: inline-block;
}
.mennica_points_of_sale .tile {
  display: inline-block;
  margin: 2px 1px 0 1px;
  padding: 9px 15px;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: #ededed;
  cursor: pointer;
  background: #fff;
  color: #d6a20e;
}
.mennica_points_of_sale .tile.active {
  margin-top: 0;
  margin-bottom: -1px;
  padding-top: 11px;
  padding-bottom: 10px;
}
.mennica_points_of_sale .tile.active a {
  color: #333333;
  text-decoration: none;
}
.mennica_points_of_sale .tile span {
  margin: 0;
  font-family: robotoCondensed, sans-serif;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .mennica_points_of_sale .tile span {
    font-size: 15px;
  }
}
.mennica_points_of_sale .filter-form-inner-select select {
  width: 150px;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .mennica_points_of_sale .mennica_points_of_sale_contents .row .col-sm-6:nth-child(2n+1) {
    clear: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .mennica_points_of_sale .mennica_points_of_sale_contents .row .col-md-4:nth-child(3n+1) {
    clear: left;
  }
}
@media only screen and (min-width: 961px) {
  .mennica_points_of_sale .mennica_points_of_sale_contents .row .col-lg-3:nth-child(4n+1) {
    clear: left;
  }
}
.mennica_points_of_sale .mennica_points_of_sale_contents .row > div {
  margin-top: 30px;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .desc {
  margin-bottom: 40px;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .filter-form {
  background: #f9f9f9;
  border: 1px solid #ededed;
  padding: 14px 20px;
  margin-bottom: 10px;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .col-md-3 {
  margin-bottom: 40px;
}
.mennica_points_of_sale .mennica_points_of_sale_contents select {
  font-family: robotoCondensed, sans-serif;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #ededed;
  color: #333333;
  padding: 5px 8px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 480px) {
  .mennica_points_of_sale .mennica_points_of_sale_contents select {
    width: 100%;
  }
}
.mennica_points_of_sale .mennica_points_of_sale_contents .open-hours {
  padding: 8px 0;
  min-width: 195px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .mennica_points_of_sale .mennica_points_of_sale_contents .open-hours {
    min-width: 125px;
  }
}
.mennica_points_of_sale .mennica_points_of_sale_contents .map-button {
  min-width: 172px;
}
@media only screen and (max-width: 960px) {
  .mennica_points_of_sale .mennica_points_of_sale_contents .map-button {
    min-width: 105px;
  }
  .mennica_points_of_sale .mennica_points_of_sale_contents .map-button a.button {
    padding: 10px 10px;
  }
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper {
  border: 1px solid #ededed;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .header_wrapper {
  text-align: center;
  background: #f9f9f9;
  padding: 30px 0;
  border-bottom: 1px solid #ededed;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .header_wrapper .city {
  color: #d6a20e;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper {
  padding: 30px 30px 100px 30px;
  position: relative;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper:before {
  content: url('/_cms-img/time20250725085903/mennica/mint-icon-white.png');
  display: block;
  width: 32px;
  height: 32px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -16px 0 0 -16px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .phone_fax > div {
  white-space: nowrap;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .buttons.bottom {
  position: absolute;
  bottom: 40px;
  text-align: center;
  width: 100%;
  left: 0;
}
@media only screen and (max-width: 480px) {
  .mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .buttons.bottom {
    position: relative;
    margin-top: 20px;
    bottom: auto;
  }
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .localization {
  position: absolute;
  top: 30px;
  right: 0;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .localization .button {
  border: none;
  box-shadow: none;
  padding: 5px 15px;
  border-left: 1px solid #ededed;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .localization .button:after {
  content: url('/_cms-img/time20250725085903/mennica/localization-marker.png');
  height: 27px;
  width: 18px;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .localization .button:hover,
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .localization .button:focus {
  background: transparent !important;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .bottom-margin {
  margin-bottom: 10px;
  max-width: 83%;
}
.mennica_points_of_sale .mennica_points_of_sale_contents .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper .bottom-margin .mulit_phone_fax {
  margin-left: 22px;
}
.mennica_points_of_sale .sklep_firmowy_mennicy .mennica_points_of_sale_wrapper .points_of_sale_content_wrapper:before {
  content: url('/_cms-img/time20250725085903/mennica/mint-icon-orange.png');
  display: block;
  width: 32px;
  height: 32px;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  margin: -16px 0 0 -16px;
  color: #ededed;
  background: #fff;
  text-align: center;
  line-height: 16px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.mennica_points_of_sale .box_table table {
  table-layout: auto;
}
.mennica_points_of_sale .table_header a {
  color: #333333;
}
.mennica_points_of_sale th img {
  margin-left: 10px;
}
.box_table .first_col_adress {
  width: 320px;
}
@media only screen and (max-width: 767px) {
  .box_table .first_col_adress {
    width: 510px;
  }
}
@media only screen and (max-width: 767px) {
  .box_table .mennica_points_of_sale_map_button {
    max-width: 190px;
    margin-top: 10px;
    text-align: center;
  }
}
.box_table td {
  padding: 26px 18px;
}
@media only screen and (max-width: 960px) {
  .box_table td {
    padding: 26px 5px;
  }
}
@media only screen and (max-width: 480px) {
  .box_table td {
    font-size: 14px;
  }
}
.box_table td.nowrap div {
  white-space: nowrap;
}
.box_table td div a {
  display: block;
}
.box_table td div a.mennica_points_of_sale_map_button {
  display: block;
}
.box_table td div .mulit_phone_fax {
  margin-left: 22px;
}
.box_table th {
  padding: 26px 18px;
}
@media only screen and (max-width: 960px) {
  .box_table th {
    padding: 26px 5px;
  }
}
.notoria_rates_chart {
  padding: 0 15px;
}
.grey-bg {
  background: #f9f9f9;
  padding: 30px 45px 0;
  margin: 0 -45px;
}
.metal_currency_chart .col-md-9,
.notoria_rates_chart .col-md-9,
.metal_currency_chart .col-md-8,
.notoria_rates_chart .col-md-8 {
  padding-left: 0;
  margin-bottom: 40px;
  border: 1px solid #e8e8e8;
  background: #fff;
}
.metal_currency_chart .col-md-3,
.notoria_rates_chart .col-md-3,
.metal_currency_chart .col-md-4,
.notoria_rates_chart .col-md-4 {
  padding-right: 0;
  margin-bottom: 40px;
}
@media only screen and (max-width: 960px) {
  .metal_currency_chart .col-md-3,
  .notoria_rates_chart .col-md-3,
  .metal_currency_chart .col-md-4,
  .notoria_rates_chart .col-md-4 {
    padding-left: 0;
  }
}
.metal_currency_chart .show-data-from,
.notoria_rates_chart .show-data-from {
  display: block;
  margin-bottom: 10px;
}
.metal_currency_chart .show-data-from,
.notoria_rates_chart .show-data-from,
.metal_currency_chart .chart-zoom,
.notoria_rates_chart .chart-zoom,
.metal_currency_chart .chart-range,
.notoria_rates_chart .chart-range {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .metal_currency_chart .show-data-from,
  .notoria_rates_chart .show-data-from,
  .metal_currency_chart .chart-zoom,
  .notoria_rates_chart .chart-zoom,
  .metal_currency_chart .chart-range,
  .notoria_rates_chart .chart-range {
    text-align: center;
  }
}
.metal_currency_chart .show-data-from .current,
.notoria_rates_chart .show-data-from .current,
.metal_currency_chart .chart-zoom .current,
.notoria_rates_chart .chart-zoom .current,
.metal_currency_chart .chart-range .current,
.notoria_rates_chart .chart-range .current {
  color: #d6a20e;
}
.metal_currency_chart .show-data-from,
.notoria_rates_chart .show-data-from {
  margin-right: 10px;
  color: #c5c5c5;
}
.metal_currency_chart hr,
.notoria_rates_chart hr {
  border-color: #489084;
}
.metal_currency_chart .date,
.notoria_rates_chart .date,
.metal_currency_chart .time,
.notoria_rates_chart .time {
  font-size: 1.4rem;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .metal_currency_chart .time_details,
  .notoria_rates_chart .time_details {
    text-align: center;
  }
}
.metal_currency_chart .calculated_info,
.notoria_rates_chart .calculated_info {
  margin-top: 20px;
  font-size: 13px;
  margin: 50px -22px;
  color: #d6a20e;
  text-align: center;
}
.metal_currency_chart .calculated_info h6,
.notoria_rates_chart .calculated_info h6 {
  font-size: 3rem;
  font-family: lora_italic, serif;
}
.metal_currency_chart .currency,
.notoria_rates_chart .currency {
  color: #d6a20e;
  font-size: 3.4rem;
  text-align: center;
  font-family: lora_italic, serif;
}
.metal_currency_chart .currency h1,
.notoria_rates_chart .currency h1 {
  font-size: 3.5rem;
}
.metal_currency_chart .currency-large,
.notoria_rates_chart .currency-large {
  color: #d6a20e;
  font-size: 5.2rem;
  text-align: right;
  font-family: lora_italic, serif;
}
.metal_currency_chart .currency h6,
.notoria_rates_chart .currency h6 {
  text-align: justify;
  font-style: italic;
}
.metal_currency_chart .currency h6:first-of-type,
.notoria_rates_chart .currency h6:first-of-type {
  text-align: right;
  font-style: normal;
}
.metal_currency_chart .change,
.notoria_rates_chart .change {
  font-family: lora_italic, serif;
  text-align: right;
}
.metal_currency_chart .time-select,
.notoria_rates_chart .time-select {
  border: 1px solid #ededed;
  padding: 5px 20px;
  margin-right: 10px;
  cursor: pointer;
  width: 56px;
  display: inline-block;
  margin-bottom: 10px;
}
.metal_currency_chart .time-select:hover,
.notoria_rates_chart .time-select:hover {
  color: #d6a20e;
}
@media only screen and (max-width: 767px) {
  .metal_currency_chart .time-select,
  .notoria_rates_chart .time-select {
    display: inline-block;
    margin-bottom: 6px;
  }
}
.metal_currency_chart .chart-range-separator,
.notoria_rates_chart .chart-range-separator {
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .metal_currency_chart .chart-range-separator,
  .notoria_rates_chart .chart-range-separator {
    display: block;
  }
}
.metal_currency_chart .chart-controls,
.notoria_rates_chart .chart-controls {
  padding: 40px 10px 40px 40px;
  font-size: 1.5rem;
}
.metal_currency_chart .chart-controls .chart-range,
.notoria_rates_chart .chart-controls .chart-range {
  display: block;
  margin-top: 15px;
  margin-left: 87px;
}
.metal_currency_chart .chart-controls .chart-range input,
.notoria_rates_chart .chart-controls .chart-range input {
  border: 1px solid #ededed;
  padding: 5px 10px;
  margin-right: 6px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .metal_currency_chart .chart-controls .chart-range input,
  .notoria_rates_chart .chart-controls .chart-range input {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .metal_currency_chart .chart-controls .chart-range,
  .notoria_rates_chart .chart-controls .chart-range {
    text-align: center;
    margin-left: 0;
  }
}
.metal_currency_chart .additional-info,
.notoria_rates_chart .additional-info {
  line-height: 1.6em;
}
.metal_currency_chart .additional-info .col-xs-7,
.notoria_rates_chart .additional-info .col-xs-7 {
  color: #d6a20e;
}
.metal_currency_chart .additional-info .col-xs-7 span,
.notoria_rates_chart .additional-info .col-xs-7 span {
  font-size: 0.8em;
}
.tab-panel {
  margin-bottom: 30px;
  margin-right: -15px;
}
.tab-panel .nav-tabs {
  border-bottom: 1px solid #e8e8e8;
}
.tab-panel .nav-tabs a {
  border-radius: 0;
  cursor: pointer;
}
.tab-panel .nav-tabs li {
  border-right: 1px solid #e8e8e8;
}
.tab-panel .nav-tabs li a {
  margin-right: 0;
}
.tab-panel .nav-tabs li.active {
  border-right: 1px solid #e8e8e8;
}
.tab-panel .nav-tabs li.active a,
.tab-panel .nav-tabs li.active a:hover,
.tab-panel .nav-tabs li.active a:focus {
  border: 0 none;
  margin-right: 0;
}
.tab-panel .nav-tabs li.active:last-child {
  border-right-color: #e8e8e8;
}
.tab-panel .nav-tabs li:last-child {
  border-right-color: transparent;
}
.tab-panel .nav-tabs li.active a,
.tab-panel .nav-tabs li.active a:hover,
.tab-panel .nav-tabs li.active a:focus {
  border: 1px solid transparent;
}
.tab-panel .nav-tabs li a,
.tab-panel .nav-tabs li a:hover,
.tab-panel .nav-tabs li a:focus {
  border: 1px solid transparent;
}
#metalCurrencyChartContainer,
#notoriaRatesChartContainer {
  overflow: hidden;
}
#notoriaRatesChartBottomPanel {
  margin-top: 30px;
}
#metalCurrencyChartRightPanel .aside-container,
#notoriaRatesChartRightPanel .aside-container {
  padding: 40px;
  background-color: #046e5a !important;
  color: #fff !important;
}
#metalCurrencyChartRightPanel .aside-container:after,
#notoriaRatesChartRightPanel .aside-container:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* nie działa przez to compressor css
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);*/
  background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(30%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 0.3)));
  background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}
html.ie-gt9 #metalCurrencyChartRightPanel .aside-container:after,
html.ie-gt9 #notoriaRatesChartRightPanel .aside-container:after {
  filter: none;
}
@media only screen and (max-width: 960px) {
  #metalCurrencyChartRightPanel .aside-container,
  #notoriaRatesChartRightPanel .aside-container {
    padding: 20px;
  }
}
.notoria_rates_chart_bottom_panel .col-md-4 {
  padding: 0 15px;
}
.notoria_rates_chart_bottom_panel table {
  width: 100%;
}
.notoria_rates_chart_bottom_panel table tr {
  border-bottom: 1px solid #ededed;
}
.notoria_rates_chart_bottom_panel table tr:last-of-type {
  border: none;
}
.notoria_rates_chart_bottom_panel table tr td {
  padding: 6px 10px;
}
.notoria_rates_chart_bottom_panel table tr td.orange {
  color: #d6a20e;
}
@media only screen and (max-width: 767px) {
  .notoria_rates_chart_bottom_panel table tr td {
    width: 50%;
  }
}
.modal_popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
}
.product_list .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product_list .list > DIV {
  transition: all 0.2s ease-in-out;
  padding-bottom: 20px;
}
.product_list .list > DIV:hover {
  box-shadow: 0 0 0 3px #d6a20e;
}
.product_list .list > DIV.item .inner:hover {
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .product_list .filters {
    margin-bottom: 20px;
  }
  .product_list .filters.mobile_close .filters_buttons,
  .product_list .filters.mobile_close .categories {
    display: none;
  }
  .product_list .filters > .title {
    display: none;
  }
  .product_list .filters .filters_open {
    font-size: 75%;
    margin: 20px 0;
  }
  .product_list .filters .filters_open .button {
    display: block;
    border-color: #ededed;
    border-width: 1px;
    background-color: #f9f9f9;
    text-align: center;
    color: #046e5a;
    text-transform: uppercase;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .product_list .filters .filters_buttons {
    position: fixed;
    z-index: 20;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px 0;
    background: #f9f9f9;
    text-align: center;
  }
  .product_list .filters .filters_buttons .button {
    background: #fff;
    border: 1px solid #ededed;
    color: #006553;
    box-shadow: none;
    display: inline-block;
    margin-left: 8px;
  }
  .product_list .filters .filters_buttons .button:first-of-type {
    margin-left: 0;
  }
  .product_list .filters > UL.categories > LI .used_filters {
    display: block;
    font-size: 0.9em;
    color: #c5c5c5;
    margin-top: -10px;
    margin-bottom: 10px;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 385px;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI {
    white-space: nowrap;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI > SPAN.count:before {
    content: "(";
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI > SPAN.count:after {
    content: ")";
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox] {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox] + label {
    padding-left: 26px;
    height: 19px;
    display: block;
    line-height: 19px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 15px;
    vertical-align: middle;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 20px;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox] + label .count {
    color: #c5c5c5;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox]:checked + label {
    background-position: 0 -19px;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI label {
    background-image: url('/_cms-img/time20250725085903/mennica/checkbox.png');
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}
@media only screen and (min-width: 768px) {
  .product_list .filters {
    margin-bottom: 1em;
    border: 1px solid #ededed;
    padding: 0.5em 22px 0.4em 28px;
    background-color: #f6f6f6;
  }
  .product_list .filters .filters_open,
  .product_list .filters .filters_buttons {
    display: none;
  }
  .product_list .filters:after {
    content: "";
    clear: both;
    display: table;
  }
  .product_list .filters .chosen_filters {
    display: none;
  }
  .product_list .filters .online_only {
    float: right;
    margin-bottom: 0;
    margin-top: 0.5em;
  }
  .product_list .filters .online_only A {
    color: #333333;
  }
  .product_list .filters > .title {
    float: left;
    padding: 0.45454545em 28px 0 0;
    font-size: 1.1em;
    line-height: 1.25;
    font-weight: bold;
    color: #046e5a;
  }
  .product_list .filters > UL.categories {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .product_list .filters > UL.categories > LI {
    float: left;
    position: relative;
    border: solid 1px transparent;
  }
  .product_list .filters > UL.categories > LI:hover,
  .product_list .filters > UL.categories > LI.dictionary_filter-scroll {
    background: #fff;
    border: 1px solid #ededed;
    border-bottom-color: transparent;
  }
  .product_list .filters > UL.categories > LI > SPAN.name {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0.5em 20px;
    border-bottom: solid 1px transparent;
  }
  .product_list .filters > UL.categories > LI > SPAN.name i:before {
    content: "";
    width: 0;
    height: 0;
    top: 15px;
    position: relative;
    margin-left: 5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #d6a20e;
  }
  .product_list .filters > UL.categories > LI .used_filters {
    display: none;
    font-size: 0.9em;
    color: #ededed;
  }
  .product_list .filters > UL.categories > LI .body-wrapper {
    display: none;
    position: absolute;
    z-index: 2002;
    margin: -2.5em 0 0 -1px;
    border: 1px solid #ededed;
    background-color: white;
    margin-left: -1px;
    margin-top: -1px;
    list-style: none;
    padding: 1em 0 0.8em 0;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body {
    margin: 0;
    padding: 0;
    list-style-type: none;
    max-height: 288px;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI {
    padding: 0 20px;
    white-space: nowrap;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI > SPAN.count:before {
    content: "(";
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI > SPAN.count:after {
    content: ")";
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox] {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox] + label {
    padding-left: 26px;
    height: 19px;
    display: block;
    line-height: 19px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 15px;
    vertical-align: middle;
    cursor: pointer;
    font-weight: normal;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox] + label .count {
    color: #c5c5c5;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox]:checked + label {
    background-position: 0 -19px;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI input[type=checkbox]:disabled + label {
    cursor: not-allowed;
    color: #c5c5c5;
  }
  .product_list .filters > UL.categories > LI .body-wrapper .body LI label {
    background-image: url('/_cms-img/time20250725085903/mennica/checkbox.png');
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .product_list .filters > UL.categories > LI:hover > SPAN.name,
  .product_list .filters > UL.categories > LI.dictionary_filter-scroll > SPAN.name {
    z-index: 2003;
    border-bottom: #fff solid 1px;
  }
  .product_list .filters > UL.categories > LI:hover .body-wrapper,
  .product_list .filters > UL.categories > LI.dictionary_filter-scroll .body-wrapper {
    display: block;
  }
}
.product_list .selected_filters #chosen_filters {
  display: inline-block;
  margin-left: 0;
  padding-left: 0;
}
.product_list .selected_filters #chosen_filters > div {
  border: 1px solid #ededed;
  font-weight: bold;
  font-size: 0.9em;
  padding: 4px 8px;
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 4px;
}
.product_list .selected_filters #chosen_filters > div .removeFilter {
  font-weight: 300;
  margin-left: 4px;
  color: #d6a20e;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .product_list .selected_filters {
    margin-bottom: 2em;
    padding: 0.5em 0;
  }
  .product_list .selected_filters > .title {
    display: inline-block;
    padding-right: 20px;
    font-weight: bold;
    color: #046e5a;
  }
  .product_list .selected_filters > UL.categories {
    margin: 0;
    padding: 0;
    list-style-type: none;
    float: left;
    margin-top: -0.25em;
    margin-right: 10px;
  }
  .product_list .selected_filters > UL.categories > LI {
    float: left;
    margin-right: 10px;
    border: 1px solid #ededed;
    padding: 0.25em 15px;
    font-weight: bold;
    cursor: pointer;
  }
  .product_list .selected_filters > UL.categories > LI i {
    font-size: 0;
    font-weight: 200;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: -5px;
    font-size: 0.5em;
    color: #d6a20e;
  }
  .product_list .selected_filters > UL.categories > LI i:before {
    font-family: "fontello_mennica";
    font-style: normal;
    font-weight: inherit;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
  }
  .product_list .selected_filters > UL.categories > LI i:before {
    font-family: "fontello_mennica";
    font-style: normal;
    font-weight: inherit;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
  }
  .product_list .selected_filters > UL.categories > LI i:before {
    content: '\e811';
  }
  .product_list .selected_filters .clear_filters {
    display: inline-block;
    margin-left: 12px;
  }
  .product_list .selected_filters .clear_filters a {
    cursor: pointer;
  }
}
.product_list #order_options {
  margin-left: 10px;
}
@media only screen and (min-width: 768px) {
  .product_list .displayed_info {
    margin-bottom: 2em;
    padding-left: 2px;
  }
  .product_list .displayed_info > SPAN {
    display: inline-block;
    border-left: 1px solid #ededed;
    padding: 0 15px;
  }
  .product_list .displayed_info > SPAN:first-child {
    border: none;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product_list .displayed_info {
    margin-bottom: 1.5em;
    text-align: center;
    font-size: 75%;
  }
  .product_list .displayed_info > SPAN {
    display: block;
    padding: 0.75em 0;
  }
  .product_list .displayed_info > SPAN:first-child {
    border: none;
  }
  .product_list .displayed_info > span.total_count {
    display: block;
    margin: 0;
    padding: 20px 30px;
    border-top: none;
    background: #f9f9f9;
  }
}
.product_list .displayed_info .total_count {
  font-weight: bold;
}
.product_list .displayed_info .sort i {
  font-size: 0;
  vertical-align: middle;
  margin-left: 6px;
  font-size: 0.5em;
}
.product_list .displayed_info .sort i:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .displayed_info .sort i:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .displayed_info .sort i:before {
  content: '\e804';
}
.product_list .displayed_info .sort .select {
  display: inline-block;
  margin-left: 6px;
  position: relative;
}
.product_list .displayed_info .sort .select .styledSelect {
  color: #d6a20e;
}
.product_list .list {
  margin-left: -15px;
  margin-right: -15px;
}
.product_list .list:after {
  content: "";
  clear: both;
  display: table;
}
.product_list .list > DIV {
  float: left;
  box-sizing: border-box;
  width: 25%;
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .product_list .list > DIV {
    width: 33.3333333%;
    font-size: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .product_list .list > DIV {
    width: 50%;
    font-size: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .product_list .list > DIV {
    width: 50%;
    font-size: 75%;
  }
  .product_list .list > DIV:nth-child(2n-1) {
    clear: left;
  }
}
.product_list .list > DIV.product_fancy {
  position: relative;
  padding: 0px 10px 0px 30px;
}
@media only screen and (max-width: 480px) {
  .product_list .list > DIV.product_fancy {
    padding-left: 20px;
  }
}
.product_list .list > DIV.product_fancy:before {
  content: "";
  border-left: 1px solid #D6A20E;
  bottom: 0;
  top: 0;
  position: absolute;
  left: 0;
}
.product_list .list > DIV.product_fancy:hover:after {
  display: none;
}
.product_list .list > DIV.product_fancy:after {
  background: url("/_cms-img/time20250725085903/mennica/prodlist_spout.jpg") no-repeat scroll 0 0 transparent;
  content: "";
  border-right: 1px solid white;
  position: absolute;
  left: -5px;
  width: 6px;
  height: 9px;
  top: 50%;
  transform: translateY(-50%);
}
.product_list .list > DIV.product_fancy h2.fancy_header {
  font-size: 30px;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .product_list .list > DIV.product_fancy h2.fancy_header {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .product_list .list > DIV.product_fancy h2.fancy_header {
    font-size: 18px;
  }
}
.product_list .list > DIV.product_fancy h2.fancy_header .decor {
  color: #d6a20e;
}
.product_list .list > DIV.product_fancy .fancy_description {
  color: #999;
  line-height: 1.5;
}
.product_list .list > DIV.product_fancy .fancy_description p {
  margin-bottom: 0;
}
.product_list .list > DIV.item > a {
  z-index: 2000;
  position: relative;
}
.product_list .list > DIV.item > a:hover {
  text-decoration: none;
}
.product_list .list > DIV.item .inner {
  position: relative;
  margin: 0 3%;
  height: 350px;
  z-index: 2;
  padding: 0 3% 6.62251656% 3%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .product_list .list > DIV.item .inner {
    height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .product_list .list > DIV.item .inner {
    height: auto;
  }
}
.product_list .list > DIV.item .inner .title p.product_name {
  color: #000;
}
.product_list .list > DIV.item .inner .title p.product_name span {
  white-space: nowrap;
}
.product_list .list > DIV.item .inner .navigation-container {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
.product_list .list > DIV.item .inner .navigation-container .go-left,
.product_list .list > DIV.item .inner .navigation-container .go-right {
  font-size: 0;
  font-size: 1em;
  display: inline-block;
  padding: 5px 8px 5px 0;
}
.product_list .list > DIV.item .inner .navigation-container .go-left:before,
.product_list .list > DIV.item .inner .navigation-container .go-right:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .list > DIV.item .inner .navigation-container .go-left:before,
.product_list .list > DIV.item .inner .navigation-container .go-right:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .list > DIV.item .inner .navigation-container .go-left:focus,
.product_list .list > DIV.item .inner .navigation-container .go-right:focus {
  text-decoration: none;
  color: inherit;
}
.product_list .list > DIV.item .inner .navigation-container .go-left:before {
  content: '\e805';
}
.product_list .list > DIV.item .inner .navigation-container .go-right {
  border-left: 1px solid #ededed;
  padding: 5px 0 5px 8px;
}
.product_list .list > DIV.item .inner .navigation-container .go-right:before {
  content: '\e806';
}
.product_list .list > DIV.item .inner .navigation-container a:hover {
  text-decoration: none;
}
.product_list .list > DIV.item .inner .product_images {
  overflow: hidden;
  z-index: 2000;
  position: relative;
  white-space: nowrap;
  height: 235px;
}
@media only screen and (min-width: 481px) and (max-width: 767px) {
  .product_list .list > DIV.item .inner .product_images {
    height: 200px;
  }
}
@media only screen and (max-width: 480px) {
  .product_list .list > DIV.item .inner .product_images {
    height: 160px;
  }
}
.product_list .list > DIV.item .inner .product_images .image {
  padding: 0;
  width: 100%;
  position: absolute;
  display: none;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
}
.product_list .list > DIV.item .inner .product_images .image.active {
  display: block;
}
.product_list .list > DIV.item .inner .product_images .image.left {
  margin-left: -100%;
}
.product_list .list > DIV.item .inner .product_images .image.right {
  margin-right: -100%;
}
@media only screen and (max-width: 360px) {
  .product_list .list > DIV.item .inner .product_images .image {
    padding: 20px 0;
  }
}
.product_list .list > DIV.item .inner .product_images .image img {
  max-height: 178px;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .product_list .list > DIV.item .inner .product_images .image img {
    max-height: 172px;
  }
}
@media only screen and (max-width: 480px) {
  .product_list .list > DIV.item .inner .product_images .image img {
    max-height: 100px;
  }
}
.product_list .list > DIV.item .inner DIV.title {
  display: table;
  width: 100%;
  height: 5em;
}
.product_list .list > DIV.item .inner DIV.title P {
  display: table-cell;
  vertical-align: top;
  padding: 0 3.31125828%;
  text-align: left;
  line-height: 1.375;
  font-weight: bold;
}
.product_list .list > DIV.item .inner DIV.title .subtitle {
  display: block;
  font-size: 0.75em;
  font-weight: normal;
}
.product_list .list > DIV.marketing {
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .product_list .list > DIV.marketing {
    display: none;
  }
}
.product_list .list > DIV.marketing .inner {
  position: relative;
  height: 310px;
  border-left: 1px solid #d6a20e;
  padding: 0 9.93377483%;
}
.product_list .list > DIV.marketing .inner .decor {
  position: absolute;
  left: -7px;
  top: 50%;
  margin-top: -3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #d6a20e;
}
.product_list .list > DIV.marketing .inner .decor:before {
  content: "";
  position: absolute;
  left: 1px;
  margin-top: -7px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid white;
}
.product_list .list > DIV.marketing .inner P {
  color: #7f7d7e;
}
.product_list .list > DIV.marketing .inner .title {
  font-family: lora_italic, serif;
  font-size: 1.8em;
  line-height: 1.25;
  color: #333333;
}
.product_list .list > DIV.marketing .inner .title SPAN {
  color: #d6a20e;
}
.product_list .pager {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .product_list .pager {
    font-size: 75%;
  }
}
.product_list .pager > span,
.product_list .pager a {
  display: inline-block;
  margin: 0 0.2em;
  border: 1px solid #ededed;
  width: 2.5em;
  height: 2.5em;
  padding-top: 0.75em;
  line-height: 1;
  color: #d6a20e;
  cursor: pointer;
  /*font-weight: bold;*/
}
.product_list .pager > span.page_active,
.product_list .pager a.page_active {
  color: #c5c5c5;
  cursor: default;
}
.product_list .pager .selected {
  color: #c5c5c5;
}
.product_list .pager .prev {
  font-size: 0;
  font-size: 1em;
  margin-right: 1.8em;
}
.product_list .pager .prev:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .pager .prev:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .pager .prev:before {
  content: '\e805';
}
@media only screen and (max-width: 480px) {
  .product_list .pager .prev {
    margin-right: 0;
  }
}
.product_list .pager .next {
  font-size: 0;
  font-size: 1em;
  margin-left: 1.8em;
}
.product_list .pager .next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .pager .next:before {
  font-family: "fontello_mennica";
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
}
.product_list .pager .next:before {
  content: '\e806';
}
@media only screen and (max-width: 480px) {
  .product_list .pager .next {
    margin-left: 0;
  }
}
.product_list .pager > * > SPAN {
  position: absolute;
  top: -9999em;
  left: -9999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media only screen and (max-width: 480px) {
  .product_list .pager #dotsLeft,
  .product_list .pager .first-page,
  .product_list .pager #dotsRight,
  .product_list .pager .last-page {
    visibility: hidden;
    width: 0;
    border: 0 none;
    margin: 0;
  }
}
.product_list .product_availability,
.product_list .product_price,
.product_list .buy_online_wrapper {
  padding: 0 3% 0 6%;
  margin: 0 3%;
}
.product_list .product_availability span {
  display: block;
  background: url("/_cms-img/time20250725085903/mennica/product-available.png") no-repeat scroll 0 50% transparent;
  background-size: 7%;
  padding-left: 25px;
  margin-bottom: 5px;
  color: #7f7d7e;
}
@media only screen and (max-width: 767px) {
  .product_list .product_availability span {
    background-size: 10%;
  }
}
.product_list .product_availability.archival_product span {
  background-image: url("/_cms-img/time20250725085903/mennica/archival_product.png");
}
.product_list .product_availability.product_inavailable span {
  background-image: url("/_cms-img/time20250725085903/mennica/product_unavailable.png");
}
.product_list .product_availability.product_temporarily_not_available span {
  background-image: url("/_cms-img/time20250725085903/mennica/product_unavailable.png");
}
.product_list .product_availability.product_in_preview span {
  background-image: url('/_cms-img/time20250725085903/mennica/zapowiedz.png');
}
.product_list .product_price {
  font-weight: 600;
  color: #d6a20e;
  font-size: 1.2em;
  line-height: 1;
}
.product_list .product_price_regular .product_price {
  font-weight: 600;
  color: #d6a20e;
  font-size: 1.2em;
  line-height: 1;
  display: inline-block;
  width: 100%;
}
.product_list .product_price_old .product_price {
  font-size: 1em;
  color: #c5c5c5;
  display: inline-block;
  width: 100%;
  padding: 0 3% 0 6%;
  margin: 0 3%;
  text-decoration: line-through;
  -moz-text-decoration-color: #333333;
  text-decoration-color: #333333;
}
.product_list .product_price_old .product_price .product_price_value {
  display: inline-block;
  margin-left: -5px;
  text-decoration: line-through;
  -moz-text-decoration-color: #333333;
  text-decoration-color: #333333;
}
.product_list .product_price_label {
  padding-right: 5px;
}
.product_list .buy_online_wrapper {
  margin-top: 8px;
}
.product_list .buy_online_wrapper .buy_online_button {
  padding: 8px 0;
  min-width: 170px;
}
@media only screen and (max-width: 480px) {
  .product_list .buy_online_wrapper .buy_online_button {
    min-width: 118px;
  }
}
.product_list .list > DIV.item .inner:hover {
  box-shadow: none;
}
.product_list .list > DIV.item a:focus {
  outline: none;
}
.product_list .list > DIV.item.product_fancy:focus,
.product_list .list > DIV.item.product_fancy:hover {
  box-shadow: none;
  outline: none;
}
.product_list .list > DIV.item.product_fancy:hover:after {
  display: block;
}
.product_list .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.product_list .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.product_list .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.product_list .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #d6a20e;
}
.mint_products_details {
  margin-bottom: 20px;
}
.mint_products_details .product_details .mobile_left {
  float: right;
  clear: right;
}
@media only screen and (max-width: 767px) {
  .mint_products_details .product_details .mobile_left {
    float: none;
  }
}
.mint_products_details .product_details .mobile_right {
  float: left;
  clear: left;
}
@media only screen and (max-width: 767px) {
  .mint_products_details .product_details .mobile_right {
    float: none;
  }
}
.mint_products_details .product_name_header h3,
.mint_products_details .product_name_header h1 {
  font-size: 3.5rem;
  margin-top: 0;
}
.mint_products_details .product_name_header h3 span,
.mint_products_details .product_name_header h1 span {
  white-space: nowrap;
}
.mint_products_details .product_images_list .product_image {
  text-align: center;
  cursor: -moz-zoom-in;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.mint_products_details .product_images_list div.product_image {
  width: 500px;
  height: 500px;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  .mint_products_details .product_images_list div.product_image {
    width: 330px;
    height: 330px;
  }
}
@media only screen and (max-width: 406px) {
  .mint_products_details .product_images_list div.product_image {
    width: 240px;
    height: 240px;
  }
}
.mint_products_details .product_images_list div.product_image > div {
  display: table-cell;
  vertical-align: middle;
  width: 500px;
  height: 500px;
  max-height: 500px;
  max-width: 500px;
}
@media only screen and (max-width: 1100px) {
  .mint_products_details .product_images_list div.product_image > div {
    width: 330px;
    height: 330px;
    max-height: 330px;
    max-width: 330px;
  }
}
@media only screen and (max-width: 406px) {
  .mint_products_details .product_images_list div.product_image > div {
    width: 240px;
    height: 240px;
    max-height: 240px;
    max-width: 240px;
  }
}
.mint_products_details .product_images_list div.product_image img.product_image {
  max-width: 100%;
  max-height: 100%;
}
.mint_products_details .product_images_list .zoom {
  background: url('/_cms-img/time20250725085903/mennica/loupe_zoom.png') no-repeat scroll 0 0 transparent;
  display: block;
  width: 39px;
  height: 38px;
  z-index: 2;
  position: absolute;
  bottom: 100px;
  right: 5%;
  cursor: -moz-zoom-in;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
@media only screen and (max-width: 480px) {
  .mint_products_details .product_images_list .zoom {
    bottom: 70px;
  }
}
.mint_products_details .product_images_list .owl-controls {
  display: none !important;
}
.mint_products_details .product_images_list .owl-stage {
  padding-bottom: 70px;
}
.mint_products_details .product_images_list.zoomed div.product_image {
  width: auto;
  height: auto;
}
.mint_products_details .product_images_list.zoomed div.product_image > div {
  display: block;
  width: auto;
  height: auto;
  max-height: inherit;
  max-width: inherit;
}
.mint_products_details .product_series {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.mint_products_details .product_series [class$="label"] {
  margin-right: 5px;
  max-width: 100px;
}
.mint_products_details .product_series > div {
  display: inline-block;
}
.mint_products_details .product_series + .social_media_sharing_buttons {
  border-left: 1px solid #f1f1f1;
  margin-left: 18px;
  padding-left: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 480px) {
  .mint_products_details .product_series + .social_media_sharing_buttons {
    display: block;
    padding-left: 0;
    margin-left: 0;
    border-left: 0 none;
    margin-top: 0;
  }
}
.mint_products_details .product_attributes_list UL {
  list-style-type: none;
  padding: 0;
}
.mint_products_details .product_attributes_list UL:after {
  content: "";
  display: table;
  clear: both;
}
.mint_products_details .product_attributes_list UL LI {
  float: left;
  width: 47%;
  padding: 10px 0;
}
.mint_products_details .product_attributes_list UL LI:after {
  content: "";
  display: table;
  clear: both;
}
.mint_products_details .product_attributes_list UL LI > div {
  float: left;
}
.mint_products_details .product_attributes_list UL LI [class$="label"] {
  width: 36%;
}
.mint_products_details .product_attributes_list UL LI [class$="value"] {
  width: 64%;
}
.mint_products_details .product_attributes_list UL LI:nth-child(odd) {
  margin-right: 6%;
}
@media only screen and (max-width: 960px) {
  .mint_products_details .product_attributes_list UL LI {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.mint_products_details .product_description {
  margin-bottom: 30px;
}
.mint_products_details .product_description ul {
  padding: 0;
  list-style-type: none;
}
.mint_products_details .product_description ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.mint_products_details .product_description ul li:before {
  content: "";
  background-color: #d6a20e;
  width: 5px;
  height: 5px;
  display: inline-block;
  position: absolute;
  left: 2px;
  border-radius: 50%;
  top: 8px;
}
.mint_products_details .thumb-nav {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.mint_products_details .thumb-nav .thumb {
  display: inline-block;
  border: 1px solid #ededed;
  height: 72px;
  width: 72px;
  vertical-align: middle;
  margin-left: -1px;
  text-align: center;
}
.mint_products_details .thumb-nav .thumb img {
  max-width: 68px;
  max-height: 68px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mint_products_details .downloadable_files {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ededed;
}
.mint_products_details .downloadable_file_list_header {
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
}
.mint_products_details .downloadable_file_list ul {
  padding-left: 0;
  margin-top: 25px;
}
.mint_products_details .downloadable_file_list .downloadable_file {
  list-style-type: none;
  line-height: 2;
}
.mint_products_details .downloadable_file_list .downloadable_file .file_desc {
  color: #999798;
}
.mint_products_details .downloadable_file_list .downloadable_file a {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .mint_products_details .downloadable_file_list .downloadable_file a {
    background: url("/_cms-img/time20250725085903/mennica/icon-download.png") no-repeat scroll 0 0 transparent;
    float: right;
    color: transparent;
    font-size: 0;
    height: 26px;
    width: 31px;
  }
}
@media only screen and (max-width: 767px) {
  .mint_products_details .downloadable_file_list .downloadable_file {
    display: block;
    border-bottom: 1px solid #ededed;
    padding: 10px 0;
  }
}
.mint_products_details .tabs-panel {
  border-bottom: 1px solid #ededed;
  text-align: left;
  margin-bottom: 40px;
  padding-left: 20px;
}
.mint_products_details .tabs-panel a {
  background: #fff;
  display: inline-block;
}
.mint_products_details .tab {
  display: inline-block;
  margin: 2px 1px 0 1px;
  padding: 9px 15px;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: #ededed;
  cursor: pointer;
  background: #fff;
  color: #d6a20e;
}
.mint_products_details .tab.active {
  margin-top: 0;
  margin-bottom: -1px;
  padding-top: 11px;
  padding-bottom: 10px;
}
.mint_products_details .tab.active a {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
}
.mint_products_details .tab span {
  margin: 0;
  font-family: robotoCondensed, sans-serif;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .mint_products_details .tab span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .mint_products_details .product_averse .img,
  .mint_products_details .product_reverse .img {
    text-align: center;
    display: block;
  }
}
.mint_products_details .product_averse img,
.mint_products_details .product_reverse img {
  max-width: 260px;
  margin-bottom: 20px;
}
.mint_products_details .product_averse ul,
.mint_products_details .product_reverse ul {
  padding: 0;
  list-style-type: none;
}
.mint_products_details .product_averse ul li,
.mint_products_details .product_reverse ul li {
  padding-left: 20px;
  position: relative;
}
.mint_products_details .product_averse ul li:before,
.mint_products_details .product_reverse ul li:before {
  content: "";
  background-color: #d6a20e;
  width: 5px;
  height: 5px;
  display: inline-block;
  position: absolute;
  left: 2px;
  border-radius: 50%;
  top: 8px;
}
.mint_products_details .product_averse ul li:empty:before,
.mint_products_details .product_reverse ul li:empty:before {
  display: none;
}
.mint_products_details .product_averse ol,
.mint_products_details .product_reverse ol {
  list-style-type: none;
  margin-left: 20px;
  counter-reset: section;
  padding-left: 0;
}
.mint_products_details .product_averse ol li,
.mint_products_details .product_reverse ol li {
  margin-bottom: 10px;
  position: relative;
}
.mint_products_details .product_averse ol li:before,
.mint_products_details .product_reverse ol li:before {
  counter-increment: section;
  content: counter(section) ".";
  color: #d6a20e;
  font-size: 0.9em;
  left: -20px;
  font-weight: bold;
  position: absolute;
}
.mint_products_details .product_images_list {
  margin-bottom: 20px;
}
.mint_products_details .product-info {
  margin: 35px 0 35px;
}
.mint_products_details .product-info .wrapper_product_availability {
  float: right;
  width: 50%;
}
@media only screen and (max-width: 480px) {
  .mint_products_details .product-info .wrapper_product_availability {
    width: 100%;
  }
}
.mint_products_details .product-info .product_availability {
  display: block;
}
.mint_products_details .product-info .product_availability div {
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  padding: 11px 35px;
  font-weight: 700;
  font-family: robotoCondensed;
  text-align: center;
  -webkit-box-shadow: inset 0 0 0 1px #ffffff;
  -moz-box-shadow: inset 0 0 0 1px #ffffff;
  box-shadow: inset 0 0 0 1px #ffffff;
  background: #e4e2e3;
  color: #999798;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .mint_products_details .product-info .product_availability div {
    padding: 11px 21px;
  }
}
.mint_products_details .product-info .product_availability.product_available {
  display: none;
}
.mint_products_details .product-info .wrapper_product_price,
.mint_products_details .product-info .wrapper_buy_online_button {
  width: 50%;
  float: left;
}
.mint_products_details .product-info .wrapper_buy_online_button {
  text-align: right;
  padding-top: 8px;
}
.mint_products_details .product-info .product_price_label {
  font-size: 1.8rem;
}
.mint_products_details .product-info .product_price_value {
  font-size: 35px;
  line-height: 35px;
}
.mint_products_details .product-info .product_price_value_old {
  margin-left: 15px;
  font-size: 0.7em;
  color: grey;
  text-decoration: line-through;
}
.mint_products_details .product-info .buy_online_button {
  padding: 11px 0;
  width: 100%;
}
.mint_products_details .product-info:after {
  clear: both;
  display: block;
  content: "";
}
@media only screen and (max-width: 480px) {
  .mint_products_details .product-info .wrapper_product_price,
  .mint_products_details .product-info .wrapper_buy_online_button {
    width: 100%;
    float: none;
  }
  .mint_products_details .product-info .wrapper_buy_online_button {
    text-align: center;
  }
  .mint_products_details .product-info > div > *:not(.where_to_buy) {
    margin-bottom: 12px;
  }
  .mint_products_details .product-info .product-buy {
    text-align: center;
  }
}
.mint_products_details .product-info .product_price_old {
  font-size: 1em;
  color: grey;
  text-decoration: line-through;
  margin-bottom: 6px;
}
.mint_products_details .product-info .product-about {
  margin-top: 35px;
}
.mint_products_details .product-info .product-about .wrapper-accordion .head {
  text-transform: uppercase;
  position: relative;
}
.mint_products_details .product-info .product-about .wrapper-accordion .body {
  font-weight: normal;
}
.mint_products_details .product-info .product-about .wrapper-accordion .head-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mint_products_details .product-info .product-about .wrapper-accordion .accordion_item .head-icon {
  background-image: url("/_cms-img/time20250725085903/mennica/plus.svg");
}
.mint_products_details .product-info .product-about .wrapper-accordion .accordion_item.accordion_item_active .head-icon {
  background-image: url("/_cms-img/time20250725085903/mennica/minus.svg");
}
.mint_products_details .social_media_sharing_buttons .facebook_button_share {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/FB_gray.svg");
}
.mint_products_details .social_media_sharing_buttons .facebook_button_share:hover,
.mint_products_details .social_media_sharing_buttons .facebook_button_share:focus {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/FB_color.svg");
}
.mint_products_details .social_media_sharing_buttons .twitter_button_share {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/Twitter_gray.svg");
}
.mint_products_details .social_media_sharing_buttons .twitter_button_share:hover,
.mint_products_details .social_media_sharing_buttons .twitter_button_share:focus {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/Twitter_color.svg");
}
.mint_products_details .social_media_sharing_buttons .google_button_share {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/Gplus_gray.svg");
}
.mint_products_details .social_media_sharing_buttons .google_button_share:hover,
.mint_products_details .social_media_sharing_buttons .google_button_share:focus {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/Gplus_color.svg");
}
.mint_products_details .social_media_sharing_buttons .mailto_button {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/mail_gray.svg");
}
.mint_products_details .social_media_sharing_buttons .mailto_button:hover,
.mint_products_details .social_media_sharing_buttons .mailto_button:focus {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/mail_color.svg");
}
.component.mennica_gold_calculator {
  padding: 40px 60px;
}
.component.mennica_gold_calculator h2:after {
  width: 50px;
  content: "";
  display: block;
  position: relative;
  margin-top: 10px;
  margin-left: 3px;
  border-style: solid;
  border-width: 1px 0 0 0;
  color: #d6a20e;
}
@media only screen and (max-width: 767px) {
  .component.mennica_gold_calculator {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .component.mennica_gold_calculator {
    padding: 40px 10px;
  }
}
@media only screen and (max-width: 480px) {
  .component.mennica_gold_calculator {
    padding: 40px 0px;
  }
}
.component.mennica_gold_calculator .field {
  padding-right: 20px;
  margin-bottom: 10px;
  overflow: hidden;
}
.component.mennica_gold_calculator .field .unit {
  width: 38%;
  display: inline-block;
}
.component.mennica_gold_calculator .field .weight {
  width: 38%;
  display: inline-block;
}
.component.mennica_gold_calculator .field input,
.component.mennica_gold_calculator .field .quantity {
  border: 1px solid #ededed;
  background: #f9f9f9;
  padding: 3px 12px;
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 93px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 960px) {
  .component.mennica_gold_calculator .field input,
  .component.mennica_gold_calculator .field .quantity {
    width: 70px;
  }
}
.component.mennica_gold_calculator .field .calculated-output {
  color: #d6a20e;
  display: inline-block;
  float: right;
}
.component.mennica_gold_calculator .field .calculated-output .price {
  font-size: 16px;
}
@media only screen and (max-width: 480px) {
  .component.mennica_gold_calculator .field {
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 20px;
    padding-right: 0px;
  }
  .component.mennica_gold_calculator .field:after {
    content: "";
    display: table;
    clear: both;
  }
  .component.mennica_gold_calculator .field .unit {
    width: 18%;
  }
}
.component.mennica_gold_calculator .field.header {
  padding: 14px 20px 14px 0;
  border-bottom: 1px solid #ededed;
}
.component.mennica_gold_calculator .field.header div {
  border: none;
  background: transparent;
  padding: 0;
  color: #c5c5c5;
}
.component.mennica_gold_calculator .small-config {
  position: relative;
}
.component.mennica_gold_calculator .small-config .unit {
  display: none;
}
.component.mennica_gold_calculator .small-config .g-unit {
  position: absolute;
  top: 2px;
  left: 100px;
}
.component.mennica_gold_calculator .additional-info {
  font-size: 14px;
}
.component.mennica_gold_calculator .additional-info .spacer-botton {
  margin-bottom: 6px;
}
.component.mennica_gold_calculator .additional-info .value {
  margin: 0 8px;
}
.component.mennica_gold_calculator .additional-info .grey {
  color: #c5c5c5;
}
.component.mennica_gold_calculator .calculated-output-wrapper {
  background: #f9f9f9;
  border-top: 1px solid #ededed;
  text-align: right;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.component.mennica_gold_calculator .calculated-output-wrapper .label {
  font-size: 100%;
  color: #333333;
  font-weight: 300;
}
.component.mennica_gold_calculator .calculated-output-wrapper .calculated-sum-output {
  font-weight: bold;
  color: #d6a20e;
}
.mint_products_recommended h3 {
  text-align: center;
}
.mint_products_recommended .description {
  position: relative;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.mint_products_recommended .description:before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #d6a20e;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.mint_products_recommended .product {
  text-align: center;
  position: relative;
  padding: 20px 40px;
  height: 100%;
}
.mint_products_recommended .product img {
  max-width: 100%;
  height: auto;
  max-height: 250px;
  margin-bottom: 80px;
  cursor: pointer;
}
.mint_products_recommended .product .product_name {
  font-weight: bold;
  position: absolute;
  height: 20px;
  overflow: visible;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 10%;
}
.mint_products_recommended .product .product_name a {
  color: #333333;
}
.mint_products_recommended .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}
.mint_products_recommended .owl-nav .owl-prev {
  float: left;
}
.mint_products_recommended .owl-nav .owl-prev:before {
  font-family: "fontello_mennica";
  content: '\e808';
  font-size: 30px;
}
.mint_products_recommended .owl-nav .owl-next {
  float: right;
}
.mint_products_recommended .owl-nav .owl-next:after {
  font-family: "fontello_mennica";
  content: '\e807';
  font-size: 30px;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -moz-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -moz-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -moz-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -moz-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -o-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -moz-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -moz-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -moz-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.mennica_history {
  background: url('/_cms-img/time20250725085903/mennica/background/bgr-mennica-history.jpg') repeat-y;
}
.mennica_history h2 {
  color: #d6a20e;
}
.mennica_history .top-menu {
  min-height: 150px;
  position: relative;
}
.mennica_history .top-menu.js-fixed {
  position: fixed !important;
  top: 0 !important;
  -webkit-box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 8px 15px -5px rgba(0, 0, 0, 0.75);
  z-index: 8999;
  background-color: #ededed;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: .75s;
  -moz-animation-duration: .75s;
  -o-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
.mennica_history .periods-list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
}
.mennica_history .periods-list li {
  cursor: pointer;
  padding: 0 20px;
  border-left: 1px solid #999798;
  font-weight: bold;
}
.mennica_history .periods-list li:first-child {
  border: none;
}
.mennica_history .periods-list li.first-in-line {
  border-left: none;
  padding: 0 20px 0 0;
}
.mennica_history .periods-list li.active {
  color: #d6a20e;
}
@media only screen and (max-width: 767px) {
  .mennica_history .periods-list {
    display: none;
  }
}
.mennica_history .periods-list2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  background-color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  color: #d6a20e;
  padding: 20px 45px 20px 20px;
  width: 80%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('/_cms-img/time20250725085903/mennica/icon-arrow-down.png') no-repeat 95% center;
}
@media only screen and (min-width: 768px) {
  .mennica_history .periods-list2 {
    display: none;
  }
}
.mennica_history .periods-list2 .active {
  color: #000;
}
.mennica_history .periods-wrapper {
  /* nothing*/
}
.mennica_history .period {
  border-left: 170px solid rgba(4, 110, 90, 0.75);
  width: 660px;
  padding: 20px 0;
}
@media only screen and (max-width: 767px) {
  .mennica_history .period {
    border-left: 150px solid rgba(4, 110, 90, 0.75);
  }
}
@media only screen and (max-width: 480px) {
  .mennica_history .period {
    border-left: 15px solid rgba(4, 110, 90, 0.75);
  }
}
@media only screen and (max-width: 960px) {
  .mennica_history .period {
    width: 100%;
  }
}
.mennica_history .period__title {
  margin-bottom: -85px;
  margin-left: 35px;
}
@media only screen and (max-width: 960px) {
  .mennica_history .period__title {
    margin-bottom: -76px;
  }
}
@media only screen and (max-width: 767px) {
  .mennica_history .period__title {
    margin-bottom: -68px;
  }
}
@media only screen and (max-width: 480px) {
  .mennica_history .period__title {
    margin-bottom: 0;
  }
}
.mennica_history .period__events {
  list-style-type: none;
}
.mennica_history .period__years-list {
  list-style-type: none;
  padding-left: 0;
}
.mennica_history .period__year {
  position: relative;
}
.mennica_history .period__year h2 {
  display: inline-block;
  min-width: 71px;
  margin-left: -115px;
}
@media only screen and (max-width: 480px) {
  .mennica_history .period__year h2 {
    margin-left: 25px;
  }
}
.mennica_history .period__year:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 6px solid #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #d6a20e;
  -webkit-box-shadow: 0 0 0 3px #d6a20e;
  -moz-box-shadow: 0 0 0 3px #d6a20e;
  box-shadow: 0 0 0 3px #d6a20e;
  margin-left: -10px;
}
.mennica_history .period__year:not(:first-child):after {
  content: "";
  position: absolute;
  top: 43px;
  left: 13px;
  width: -webkit-calc(100% - 13px);
  width: -moz-calc(100% - 13px);
  width: calc(100% - 13px);
  height: 1px;
  background-color: #7f7d7e;
}
@media only screen and (max-width: 960px) {
  .mennica_history .period__year:not(:first-child):after {
    top: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .mennica_history .period__year:not(:first-child):after {
    top: 31px;
  }
}
@media only screen and (max-width: 480px) {
  .mennica_history .period__year:not(:first-child):after {
    /*top: 27px;*/
    display: none;
  }
}
.mennica_history .period__events-list {
  list-style-type: none;
}
.mennica_history .period__event {
  position: relative;
  overflow: visible;
  margin-top: 50px;
  width: -webkit-calc(100% - 15px);
  width: -moz-calc(100% - 15px);
  width: calc(100% - 15px);
}
.mennica_history .period__event:first-child {
  margin-top: 30px;
}
.mennica_history .period__event:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #d6a20e;
  position: absolute;
  top: 0;
  left: -48px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
}
.mennica_history .period__event .img-wrapper {
  background-color: #ffffff;
  border: 10px solid #e5e5e5;
  position: relative;
  text-align: center;
  width: 320px;
  cursor: pointer;
  -webkit-box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 15px -5px rgba(0, 0, 0, 0.75);
}
.mennica_history .period__event .img-wrapper:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #e5e5e5;
  left: -37px;
  top: -13px;
  display: block;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mennica_history .period__event .img-wrapper:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
  left: -14px;
  top: -2px;
  display: block;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mennica_history .period__event .img-wrapper.last {
  -webkit-box-shadow: 5px -5px 15px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px -5px 15px -5px rgba(0, 0, 0, 0.75);
  box-shadow: 5px -5px 15px -5px rgba(0, 0, 0, 0.75);
}
.mennica_history .period__event .img-wrapper.last:before {
  top: -webkit-calc(100% - 7px);
  top: -moz-calc(100% - 7px);
  top: calc(100% - 7px);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mennica_history .period__event .img-wrapper.last:after {
  top: -webkit-calc(100% - 9px);
  top: -moz-calc(100% - 9px);
  top: calc(100% - 9px);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media only screen and (min-width: 961px) {
  .mennica_history .period__event .img-wrapper {
    position: absolute;
    top: 0;
    right: -230px;
    /*see in JS*/
    max-width: 55%;
  }
}
@media only screen and (min-width: 1232px) {
  .mennica_history .period__event .img-wrapper {
    max-width: none;
  }
}
@media only screen and (max-width: 960px) {
  .mennica_history .period__event .img-wrapper {
    margin-left: 35px;
    margin-bottom: 20px;
    max-width: 85%;
  }
}
@media only screen and (max-width: 480px) {
  .mennica_history .period__event .img-wrapper {
    margin-left: 15px;
    max-width: 95%;
  }
}
.mennica_history .period__event .img-wrapper img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.mennica_history .period__event .date {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}
.mennica_history .show-more {
  cursor: pointer;
  color: #d6a20e;
  display: inline-block;
  width: 100px;
  position: relative;
}
.mennica_history .show-more:after {
  font-family: "fontello_mennica";
  content: '\e807';
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  font-size: 22px;
  position: absolute;
  top: -5px;
  right: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.mennica_history .show-more.less:after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.mennica_history .periods-separator:not(:last-child) {
  height: 135px;
  position: relative;
}
.mennica_history .periods-separator:not(:last-child):after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.mennica_history .periods-separator:not(:last-child):before {
  content: url('/_cms-img/time20250725085903/mennica/mint-icon-white.png');
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
/* modal appended to body*/
.md-modal {
  max-width: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9001;
  visibility: hidden;
  -webkit-box-shadow: 0px 10px 27px 1px #000000;
  -moz-box-shadow: 0px 10px 27px 1px #000000;
  box-shadow: 0px 10px 27px 1px #000000;
}
.md-modal .md-content {
  background-color: #FFF;
}
.md-show {
  visibility: visible;
}
.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 9000;
  opacity: 0;
  background: rgba(117, 117, 117, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}
.md-effect {
  -webkit-transform: translateX(-50%) translateY(-25%);
  -moz-transform: translateX(-50%) translateY(-25%);
  -ms-transform: translateX(-50%) translateY(-25%);
  -o-transform: translateX(-50%) translateY(-25%);
  transform: translateX(-50%) translateY(-25%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.md-show.md-effect {
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}
.md-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #333333;
  background-color: #333333;
}
.md-close:before {
  font-family: "fontello_mennica";
  content: '\e811';
  color: #f9f9f9;
  font-style: normal;
  font-weight: inherit;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  font-size: 11px;
  position: absolute;
  top: 0;
  left: 2px;
}
.md-content {
  border: 5px solid #333333;
  background-color: #fff;
}
.md-content img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.component.related_news {
  position: relative;
  padding: 25px 15px;
}
@media only screen and (max-width: 960px) {
  .component.related_news {
    padding: 25px 0;
  }
}
.component.related_news .relaed-news-title {
  text-align: center;
  margin-bottom: 40px;
}
.component.related_news .related_news_box {
  position: relative;
  padding: 0 10px;
  height: 100%;
}
.component.related_news .related_news_box .content_area {
  padding: 41px 25px 25px 45px;
  border: 1px solid #f1f1f1;
  height: 100%;
  cursor: default;
}
@media only screen and (max-width: 960px) {
  .component.related_news .related_news_box .content_area {
    padding: 25px;
    padding-bottom: 50px;
  }
}
.component.related_news .related_news_box .content_area:hover {
  border-color: #d6a20e;
}
.component.related_news .related_news_box .content_area:hover .button {
  background-color: #d6a20e;
  color: #fff;
}
.component.related_news .related_news_box .content_area:after {
  content: '';
  clear: both;
  display: table;
}
@media only screen and (max-width: 960px) {
  .component.related_news .related_news_box .content_area .button {
    position: absolute;
    bottom: 20px;
  }
}
.component.related_news .related_news_box.with_image.is-first .thumbnail_container,
.component.related_news .related_news_box.with_image.is-first .inner {
  width: 50%;
}
@media only screen and (max-width: 960px) {
  .component.related_news .related_news_box.with_image.is-first .thumbnail_container,
  .component.related_news .related_news_box.with_image.is-first .inner {
    width: 100%;
  }
}
.component.related_news .related_news_box.with_image.is-first .thumbnail_container {
  float: right;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  .component.related_news .related_news_box.with_image.is-first .thumbnail_container {
    float: none;
    margin-bottom: 10px;
  }
}
.component.related_news .related_news_box.with_image.is-first .inner {
  float: left;
}
@media only screen and (max-width: 960px) {
  .component.related_news .related_news_box.with_image.is-first .inner {
    float: none;
  }
}
.component.related_news .related_news_box.with_image.is-first img {
  max-height: 238px;
}
@media only screen and (max-width: 960px) {
  .component.related_news .related_news_box.with_image.is-first img {
    max-height: 100px;
  }
}
.component.related_news img {
  max-width: 100%;
}
.component.related_news .see_more {
  margin-top: 30px;
}
@media only screen and (max-width: 960px) {
  .component.related_news .related_news_title,
  .component.related_news .related_news_tease {
    height: auto!important;
  }
}
.component.related_news .owl-nav .owl-prev,
.component.related_news .owl-nav .owl-next {
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -o-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  position: absolute;
  top: 50%;
  z-index: 1;
}
.component.related_news .owl-nav .owl-prev:before,
.component.related_news .owl-nav .owl-next:before {
  font-family: "fontello_mennica";
  font-size: 30px;
}
.component.related_news .owl-nav .owl-prev {
  left: -15px;
}
.component.related_news .owl-nav .owl-prev:before {
  content: '\e808';
}
.component.related_news .owl-nav .owl-prev.disabled {
  cursor: default;
  opacity: 0.3;
}
.component.related_news .owl-nav .owl-next {
  right: -25px;
}
.component.related_news .owl-nav .owl-next:before {
  content: '\e807';
}
.social_media_sharing_buttons {
  display: inline-block;
}
.social_media_sharing_buttons > a {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 8px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-size: 22px;
}
.social_media_sharing_buttons > a:first-child {
  margin-left: 0;
}
.social_media_sharing_buttons .facebook_button_share {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/FB_color.svg");
}
.social_media_sharing_buttons .twitter_button_share {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/Twitter_color.svg");
}
.social_media_sharing_buttons .google_button_share {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/Gplus_color.svg");
}
.social_media_sharing_buttons .mailto_button {
  background-image: url("/_cms-img/time20250725085903/mennica/socialmedia/mail_color.svg");
}

