@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* USAGE MEDIA QUERIES
  div {
    height: 390px;

    @include breakpoint(mobile) {
      margin-bottom: 15px;
    }
  }
*/
.listWithLinks {
  list-style: none;
  display: inline;
  margin: 0;
  padding: 0;
}
.listWithLinks li {
  display: inline;
}

.listWithLinksBlock {
  list-style: none;
  display: block;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.imgResponsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.withDot:after {
  content: "·";
  font-size: 20px;
  line-height: 12px;
  margin: 0 5px;
}

div.youtube {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
div.youtube .embed-responsive-item,
div.youtube iframe,
div.youtube embed,
div.youtube object,
div.youtube video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed, .embed-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.boxCN {
  text-align: center;
}

.bx-wrapper {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.bx-wrapper .bx-viewport {
  background: transparent;
  border: 0;
  left: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.bxslider-height .bx-wrapper {
  height: 100%;
}
.bxslider-height .bx-wrapper .bx-viewport {
  height: 100% !important;
}
.bxslider-height .bx-wrapper .bx-viewport ul,
.bxslider-height .bx-wrapper .bx-viewport ul > li {
  height: 100%;
}

.bx-wrapper .bx-controls-direction a {
  height: auto;
  width: auto;
  background: transparent;
  color: #fff;
  text-indent: 0;
  font-size: 100px;
  margin-top: -50px;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99;
  text-decoration: none;
}
.bx-wrapper .bx-controls-direction a:hover {
  color: #fe4e60;
  text-decoration: none;
}

.txtBold {
  font-weight: 700;
}

.frontpage_square {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}
.frontpage_square img {
  position: absolute;
}

.bgOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #0b2231;
  background: rgba(11, 34, 49, 0.9);
  z-index: 99;
}

.scrollbar-macosx .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
  opacity: 0.7;
}

#cookies-message {
  padding: 10px 0px;
  font-size: 12px;
  line-height: normal;
  border-top: 1px solid #d3d0d0;
  text-align: center;
  position: fixed;
  bottom: 0px;
  background-color: #124a6f;
  background-color: rgba(18, 74, 111, 0.8);
  width: 100%;
  z-index: 10000;
  color: #fff;
}
@media (max-width: 991px) {
  #cookies-message {
    padding: 10px;
  }
}
#cookies-message a {
  color: #fff;
  text-decoration: underline;
}

a#accept-cookies-checkbox {
  background-color: #fff;
  padding: 5px 10px;
  color: #124a6f;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  display: inline-block;
  margin-left: 10px;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 991px) {
  a#accept-cookies-checkbox {
    margin-top: 5px;
  }
}

.boxPager {
  display: block;
  margin: 40px 0;
  font-size: 18px;
  font-size: 1rem;
  font-family: "futura-pt";
  font-weight: 700;
  text-align: center;
}
.boxPager .pagination {
  display: block;
}
.boxPager .pagination li {
  display: inline-block;
  margin-right: 2px;
}
.boxPager .pagination li:last-child {
  margin-right: 0;
}
.boxPager .pagination li a {
  font-weight: 700;
  color: #000;
  display: block;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #eee;
}
@media (max-width: 767px) {
  .boxPager .pagination li a {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
  }
}
.boxPager .pagination li a.pager_now {
  background-color: #f4f4f4;
  color: #000;
}
.boxPager .pagination li a:hover {
  background-color: #124a6f;
  color: #fff;
  text-decoration: none;
}
.boxPager .pagination li.last {
  padding-right: 10px;
  padding-left: 7px;
}
.boxPager .pagination strong {
  font-family: "Museo-Sans";
  font-weight: 400;
  font-weight: 300;
  color: #ddd;
}
.boxPager .pagination-info {
  display: none;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
  -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

[class^=icon-]:before, [class*=" icon-"]:before {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

html, body {
  overflow: initial;
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  padding-right: 0 !important;
}

.row:before, .row:after {
  width: 0;
}

.dwarfContent {
  color: #595865;
  overflow-x: hidden;
}
.dwarfContent h1, .dwarfContent h2, .dwarfContent h3, .dwarfContent h4, .dwarfContent p {
  margin: 0;
}
.dwarfContent ul {
  list-style: none;
}
.dwarfContent button {
  border: none;
}
.dwarfContent .pageHero {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 20px;
  height: 50vh;
  max-height: 560px;
  position: relative;
}
@media (max-width: 767px) {
  .dwarfContent .pageHero {
    height: 60vh;
  }
}
@media (min-width: 768px) {
  .dwarfContent .pageHero:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
  }
}
.dwarfContent .pageHero .pageHeroWrapper {
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 10;
}
.dwarfContent .pageHero .pageHeroContent {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .dwarfContent .pageHero .pageHeroContent {
    text-align: center;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .dwarfContent .pageHero .contentBg {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .dwarfContent .pageHero .contentBg {
    margin-bottom: 20px;
  }
}
.dwarfContent .pageHero .heroTitle {
  font-size: 50px;
  font-size: 2.7777777778rem;
  line-height: 60px;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .dwarfContent .pageHero .heroTitle {
    font-size: 30px;
    font-size: 1.6666666667rem;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .dwarfContent .pageHero .heroTitle {
    font-size: 24px;
    font-size: 1.3333333333rem;
    line-height: 34px;
    margin-bottom: 10px;
  }
}
.dwarfContent .pageHero .heroDesc {
  font-size: 24px;
  font-size: 1.3333333333rem;
  line-height: 32px;
  line-height: 1.7777777778rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .dwarfContent .pageHero .heroDesc {
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 28px;
    line-height: 1.5555555556rem;
  }
}
@media (max-width: 767px) {
  .dwarfContent .pageHero .heroDesc {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 24px;
    line-height: 1.3333333333rem;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .dwarfContent .pageHero .heroDesc {
    max-width: 60%;
  }
}
.dwarfContent .dwarfInfoList {
  margin: 50px 0;
}
@media (max-width: 767px) {
  .dwarfContent .dwarfInfoList {
    margin: 30px 0;
  }
}
.dwarfContent .dwarfInfoList .infoList {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .dwarfContent .dwarfInfoList .infoList {
    margin-top: 60px;
  }
}
@media (max-width: 567px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement {
    width: 100%;
    margin-bottom: 40px;
  }
  .dwarfContent .dwarfInfoList .infoList .infoElement:last-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 568px) and (max-width: 991px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement {
    margin-bottom: 40px;
  }
}
.dwarfContent .dwarfInfoList .infoList .infoElement .infoLink {
  display: block;
  color: #595865;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
}
@media (min-width: 992px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink {
    max-width: 175px;
  }
}
@media (min-width: 568px) and (max-width: 991px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink {
    max-width: 215px;
  }
}
@media (max-width: 567px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink:last-of-type {
    margin-bottom: 0;
  }
}
.dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .iconWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 10px;
}
@media (max-width: 567px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .iconWrapper {
    height: 60px;
  }
}
.dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .iconWrapper i {
  font-size: 60px;
  font-size: 3.3333333333rem;
  color: #a79776;
  transition: all 0.4s ease;
  position: relative;
  top: 0;
}
@media (max-width: 567px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .iconWrapper i {
    font-size: 50px;
    font-size: 2.7777777778rem;
  }
}
.dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .iconWrapper i.krasnal_glowa-icon-karta {
  font-size: 70px;
  font-size: 3.8888888889rem;
}
@media (max-width: 567px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .iconWrapper i.krasnal_glowa-icon-karta {
    font-size: 60px;
    font-size: 3.3333333333rem;
  }
}
.dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .smallTitle {
  font-size: 18px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.3333333333rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement .infoLink .smallTitle {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 22px;
    line-height: 1.2222222222rem;
  }
}
@media (min-width: 768px) {
  .dwarfContent .dwarfInfoList .infoList .infoElement:hover .iconWrapper i, .dwarfContent .dwarfInfoList .infoList .infoElement :focus .iconWrapper i {
    color: #f0b51a;
    top: -10px;
  }
  .dwarfContent .dwarfInfoList .infoList .infoElement:hover .smallTitle, .dwarfContent .dwarfInfoList .infoList .infoElement :focus .smallTitle {
    text-decoration: underline;
  }
}
.dwarfContent .sectionTitle {
  font-size: 30px;
  font-size: 1.6666666667rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .dwarfContent .sectionTitle {
    font-size: 24px;
    font-size: 1.3333333333rem;
  }
}
.dwarfContent .sectionTitle:before {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  display: block;
  height: 2px;
  width: 80%;
  max-width: 600px;
  background-color: #a79776;
  bottom: 0;
}
.dwarfContent .sectionTitle:after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  display: block;
  background-image: url("/themes/img/square.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  bottom: -6px;
}
.dwarfContent .sectionDesc {
  font-size: 18px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.4444444444rem;
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .dwarfContent .sectionDesc {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 24px;
    line-height: 1.3333333333rem;
  }
}
.dwarfContent .fb-like {
  margin: 0 5px;
  position: relative;
  top: 5px;
}
.dwarfContent .desc {
  font-size: 16px;
  font-size: 0.8888888889rem;
  line-height: 24px;
  line-height: 1.3333333333rem;
}
.dwarfContent .colorBtn, .dwarfContent .juicer-button {
  font-size: 20px;
  font-size: 1.1111111111rem;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  background-color: #f0b51a;
  padding: 15px 45px;
  white-space: nowrap;
  transition: all 0.4s ease;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .dwarfContent .colorBtn, .dwarfContent .juicer-button {
    font-size: 18px;
    font-size: 1rem;
    padding: 10px 35px;
  }
}
@media (max-width: 767px) {
  .dwarfContent .colorBtn, .dwarfContent .juicer-button {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding: 10px 25px;
    margin-top: 30px;
  }
}
.dwarfContent .colorBtn:hover, .dwarfContent .juicer-button:hover {
  background-color: #ca960d;
}
.dwarfContent .juicer-button {
  width: auto;
  border: none;
  text-transform: capitalize;
  display: block;
  max-width: 260px;
}
.dwarfContent .juicer-feed.modern li.feed-item {
  border: 1px solid #d7d7d7;
}
.dwarfContent .juicer-feed h1.referral a {
  margin-top: 40px;
  color: #a79776;
}
.dwarfContent .j-loading {
  border-color: #f0b51a !important;
}
.dwarfContent .j-loading:before {
  background-color: #f0b51a !important;
}
.dwarfContent .formItem {
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .dwarfContent .formItem {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 479px) {
  .dwarfContent .formItem {
    flex-direction: column;
  }
}
.dwarfContent .formItem label {
  font-size: 16px;
  font-size: 0.8888888889rem;
  font-weight: 700;
  padding-right: 10px;
  position: relative;
}
@media (min-width: 480px) {
  .dwarfContent .formItem label {
    width: 160px;
  }
}
.dwarfContent .formItem label span {
  font-size: 14px;
  font-size: 0.7777777778rem;
  font-weight: 400;
  display: block;
}
.dwarfContent .formItem label sup {
  position: absolute;
  top: 7px;
  font-size: 16px;
  left: -8px;
}
.dwarfContent .formItem input, .dwarfContent .formItem textarea {
  font-size: 16px;
  font-size: 0.8888888889rem;
  line-height: 26px;
  line-height: 1.4444444444rem;
  flex: 1;
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: 8px 20px;
  max-width: 800px;
}
@media (max-width: 479px) {
  .dwarfContent .formItem input, .dwarfContent .formItem textarea {
    margin-top: 8px;
  }
}
.dwarfContent .formItem textarea {
  height: 14vh;
  max-height: 116px;
}
.dwarfContent .formItem.textArea {
  align-items: baseline;
}
.dwarfContent .formItem.address {
  align-items: baseline;
}
.dwarfContent .mapWrapper {
  display: block;
  position: relative;
}
.dwarfContent .mapWrapper .gm-style-iw {
  width: 285px !important;
  left: 25px !important;
}
.dwarfContent .mapWrapper .gm-style-iw > div {
  display: block !important;
  width: 285px !important;
}
.dwarfContent .mapWrapper .boxMap {
  display: block;
  max-height: 600px;
  height: 75vh;
}
.dwarfContent .mapWrapper .boxMapList {
  position: absolute;
  height: 80%;
  top: 10%;
  left: 5%;
  width: 210px;
  background-color: #fff;
  z-index: 998 !important;
  padding: 15px 10px;
}
@media (max-width: 767px) {
  .dwarfContent .mapWrapper .boxMapList {
    width: 100%;
    height: 0;
    padding: 0;
    left: 0;
  }
}
.dwarfContent .mapWrapper .boxMapList > .tab-content,
.dwarfContent .mapWrapper .boxMapList > .tab-content > .tab-pane {
  height: 100%;
}
@media (max-width: 767px) {
  .dwarfContent .mapWrapper .boxMapList > .tab-content {
    display: none;
  }
}
.dwarfContent .mapWrapper .boxMapList > .nav-pills {
  position: absolute;
  top: 0;
  right: -50px;
}
@media (max-width: 767px) {
  .dwarfContent .mapWrapper .boxMapList > .nav-pills {
    right: auto;
    left: 10px;
  }
}
.dwarfContent .mapWrapper .boxMapList > .nav-pills a {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -khtml-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 30px;
  background-color: #a79776;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #fff;
  transition: all 0.4s ease;
}
.dwarfContent .mapWrapper .boxMapList > .nav-pills a i:before {
  margin: 0;
  width: auto;
}
.dwarfContent .mapWrapper .boxMapList > .nav-pills li.active a {
  background-color: #fff;
  color: #a79776;
}
.dwarfContent .mapWrapper .boxMapList .nav-stacked li a {
  transition: all 0.4s ease;
}
.dwarfContent .mapWrapper .boxMapList .nav-stacked li a:hover {
  background-color: #f0b51a;
}
.dwarfContent .mapWrapper .boxMapList .nav-stacked li a:hover i {
  color: #fff;
}
.dwarfContent .mapWrapper .boxMapList .txtListTitle {
  font-family: "futura-pt";
  font-weight: 700;
  font-size: 22px;
  font-size: 1.2222222222rem;
  line-height: 30px;
  line-height: 1.6666666667rem;
  text-align: center;
  margin: 12px 0 25px 0;
  text-transform: uppercase;
  color: #a79776;
}
.dwarfContent .mapWrapper .boxMapList .wrapperList {
  height: 70%;
  height: calc(100% - 127px);
  overflow: hidden;
  position: relative;
}
.dwarfContent .mapWrapper .boxMapList .scroll-wrapper.wrapperList:after {
  position: absolute;
  bottom: 0;
  height: 15px;
  left: 0;
  right: 0;
  content: "";
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  /* IE6-9 */
}
.dwarfContent .mapWrapper .boxMapList .lnkMapScrollDown {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 10px;
  font-size: 12px;
  color: #f0b51a;
}
.dwarfContent .mapWrapper .boxMapList .lnkMapScrollDown i {
  width: auto;
}
.dwarfContent .mapWrapper .boxMapList .lnkMapScrollDown i:before {
  width: auto;
  margin: 0;
}
.dwarfContent .mapWrapper .boxMapList .lnkMapScrollDown.disabled {
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5;
  cursor: default;
}
.dwarfContent .mapWrapper .boxMapList ul li a {
  display: block;
  font-size: 15px;
  font-size: 0.8333333333rem;
  font-family: "Museo-Sans";
  font-weight: 400;
  line-height: 18px;
  line-height: 1rem;
  padding: 10px;
  text-align: center;
  -webkit-transition: background-color 0.5s ease;
  -khtml-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -ms-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  -webkit-border-radius: 15px;
  -khtml-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
}
.dwarfContent .mapWrapper .boxMapList ul li a:hover {
  background-color: #ebebeb;
}
.dwarfContent .mapWrapper .boxMapList ul li a.active {
  background-color: #f0b51a;
  color: #fff;
  text-decoration: none;
}
.dwarfContent .rectangleBg {
  background-color: #a79776;
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  padding: 15px;
  height: 85px;
  position: absolute;
  top: 0;
  left: 15px;
}
@media (max-width: 767px) {
  .dwarfContent .rectangleBg {
    display: none;
  }
}
.dwarfContent .rectangleBg i {
  font-size: 44px;
  font-size: 2.4444444444rem;
  color: #fff;
}
.dwarfContent .titleAndLine {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dwarfContent .formSectionTitle {
  font-size: 18px;
  font-size: 1rem;
  text-transform: uppercase;
  color: #a79776;
  width: 160px;
}
@media (max-width: 479px) {
  .dwarfContent .formSectionTitle {
    width: 130px;
  }
}
@media (max-width: 567px) {
  .dwarfContent .formSectionTitle {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.dwarfContent .formLine {
  flex: 1;
  max-width: 800px;
  width: 100%;
  height: 2px;
  background-color: #a79776;
  position: relative;
}
.dwarfContent .formLine:after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("/themes/img/square.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  left: -1px;
}
.dwarfContent .dwarfNews, .dwarfContent .contactForm {
  margin: 50px 0;
}
.dwarfContent .contactForm .contactTitle {
  font-size: 26px;
  font-size: 1.4444444444rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .dwarfContent .contactForm .contactTitle {
    font-size: 22px;
    font-size: 1.2222222222rem;
  }
}
.dwarfContent .contactForm .formWrapper {
  box-shadow: 0px 0px 14px 5px rgba(229, 229, 238, 0.5);
  border-top: 5px solid #a79776;
  margin-top: 30px;
  padding: 40px 100px;
  position: relative;
}
@media (max-width: 767px) {
  .dwarfContent .contactForm .formWrapper {
    padding: 30px 40px;
  }
}
@media (max-width: 567px) {
  .dwarfContent .contactForm .formWrapper {
    padding: 20px;
  }
}
.dwarfContent .contactForm .formTitle {
  font-size: 26px;
  font-size: 1.4444444444rem;
}
@media (max-width: 567px) {
  .dwarfContent .contactForm .formTitle {
    font-size: 24px;
    font-size: 1.3333333333rem;
  }
}
.dwarfContent .contactForm .formBtnContainer {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .dwarfContent .contactForm .formBtnContainer {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.dwarfContent .checkBoxList {
  font-size: 14px;
  font-size: 0.7777777778rem;
  line-height: 20px;
  line-height: 1.1111111111rem;
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .dwarfContent .checkBoxList {
    margin-left: 170px;
  }
}
@media (min-width: 480px) and (max-width: 1199px) {
  .dwarfContent .checkBoxList {
    margin-left: 160px;
  }
}
.dwarfContent .checkBoxList li {
  margin-bottom: 10px;
  position: relative;
}
.dwarfContent .checkBoxList li:last-of-type {
  margin-bottom: 0;
}
.dwarfContent .checkBoxList input {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 3px;
  height: 15px;
  width: 15px;
  cursor: pointer;
}
.dwarfContent .checkBoxList label {
  transition: all 0.4s ease;
  display: block;
  padding-left: 35px;
  position: relative;
}
.dwarfContent .checkBoxList sup {
  position: absolute;
  top: 7px;
  font-size: 16px;
  left: 24px;
}
.dwarfContent .checkBoxList a {
  transition: all 0.4s ease;
  color: #595865;
}
.dwarfContent .checkBoxList a:hover {
  color: #a79776;
}
.dwarfContent .boxMapInfo {
  color: #595865;
}
.dwarfContent .boxMapInfo h3 {
  font-size: 18px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 567px) {
  .dwarfContent .boxMapInfo h3 {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 5px;
  }
}
.dwarfContent .boxMapInfo p {
  padding-top: 10px;
  color: #595865;
}
@media (max-width: 567px) {
  .dwarfContent .boxMapInfo p {
    font-size: 12px;
    font-size: 0.6666666667rem;
  }
}
.dwarfContent .boxMapInfo a {
  font-size: 16px;
  font-size: 0.8888888889rem;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  color: #a79776;
  transition: all 0.4s ease;
  position: relative;
  padding: 5px 15px 5px 0;
}
@media (min-width: 568px) {
  .dwarfContent .boxMapInfo a {
    margin-top: 5px;
  }
}
@media (max-width: 567px) {
  .dwarfContent .boxMapInfo a {
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}
.dwarfContent .boxMapInfo a:before {
  font-size: 16px;
  font-size: 0.8888888889rem;
  position: absolute;
  display: block;
  content: ">";
  font-weight: 700;
  color: #a79776;
  right: 0;
  transition: all 0.4s ease;
}
@media (max-width: 567px) {
  .dwarfContent .boxMapInfo a:before {
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}
.dwarfContent .boxMapInfo a:after {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  width: 115%;
  background-color: transparent;
  bottom: 0;
  left: -2px;
  transition: all 0.4s ease;
}
.dwarfContent .boxMapInfo a:hover {
  color: #f0b51a;
}
.dwarfContent .boxMapInfo a:hover:before {
  color: #f0b51a;
  right: -8px;
}
.dwarfContent .boxMapInfo a:hover:after {
  background-color: #f0b51a;
}
.dwarfContent a.leaflet-popup-close-button {
  font-size: 22px;
  font-size: 1.2222222222rem;
  font-weight: 100;
  padding: 14px 14px 0 0;
  width: auto;
}
@media (max-width: 567px) {
  .dwarfContent a.leaflet-popup-close-button {
    font-size: 18px;
    font-size: 1rem;
    padding: 10px 14px 0 0;
  }
}
.dwarfContent .leaflet-popup-content-wrapper {
  border-radius: 5px;
}
@media (max-width: 567px) {
  .dwarfContent .leaflet-popup-content {
    margin: 8px 15px;
  }
}
.dwarfContent input[type=file],
.dwarfContent input[type=file]::-webkit-file-upload-button {
  /* chromes and blink button */
  cursor: pointer;
}
.dwarfContent .contactMapWrapper {
  flex: 1;
  max-width: 800px;
  width: 100%;
}
.dwarfContent .contactMapWrapper .contactMap {
  width: 100%;
  max-height: 300px;
  height: 35vh;
  margin-top: 10px;
}
.dwarfContent .latLngWrapper {
  display: none;
}
.dwarfContent .marker-cluster div {
  color: #fff;
}
.dwarfContent .marker-cluster-large div {
  background-color: #f18017;
}
.dwarfContent .marker-cluster-medium div {
  background-color: #f0c20c;
}
.dwarfContent .marker-cluster-small div {
  background-color: #6ecc39;
}

.responseMessages {
  font-size: 18px;
  font-size: 1rem;
  font-weight: 600;
  margin: 15px auto;
  padding: 15px 20px;
  background: white;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0px 0px 14px 5px rgba(229, 229, 238, 0.5);
}
@media (max-width: 567px) {
  .responseMessages {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.responseMessages.success {
  color: #228b22;
}
.responseMessages.error {
  color: #ea3735;
}

.Zebra_Pagination {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
}
@media (max-width: 767px) {
  .Zebra_Pagination {
    margin-top: 28px;
  }
}
.Zebra_Pagination .pagination {
  flex-wrap: nowrap;
}
.Zebra_Pagination .pagination > li {
  padding-left: 5px;
  padding-right: 5px;
}
.Zebra_Pagination .page-item.active .page-link {
  color: #fff;
  background: #f0b51a;
  border-color: #f0b51a;
}
.Zebra_Pagination .page-link {
  font-weight: 700;
  color: #000;
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: 0.5s;
  -khtml-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #eee;
}
.Zebra_Pagination .disabled .page-link {
  border: none;
  color: #d39900;
}
.Zebra_Pagination ul {
  position: relative;
}
.Zebra_Pagination .pagination li {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .Zebra_Pagination .pagination li {
    padding: 0 2px;
  }
}
@media (max-width: 767px) {
  .Zebra_Pagination .pagination li:last-of-type, .Zebra_Pagination .pagination li:first-of-type {
    position: absolute;
  }
  .Zebra_Pagination .pagination li:last-of-type .page-link, .Zebra_Pagination .pagination li:first-of-type .page-link {
    border: none;
    width: 30px;
  }
}
.Zebra_Pagination .pagination li:last-of-type .page-link, .Zebra_Pagination .pagination li:first-of-type .page-link {
  border: 1px solid #eee;
  color: #000;
}
@media (max-width: 767px) {
  .Zebra_Pagination .pagination li:last-of-type .page-link, .Zebra_Pagination .pagination li:first-of-type .page-link {
    border: none;
  }
}
@media (max-width: 767px) {
  .Zebra_Pagination .pagination li:first-of-type {
    left: -27px;
  }
}
@media (max-width: 767px) {
  .Zebra_Pagination .pagination li:last-of-type {
    right: -27px;
  }
}

.dwarfNewspaper {
  background-color: #fafafa;
  padding: 60px 0;
}
.dwarfNewspaper .iframePdf {
  display: none;
}
.dwarfNewspaper .btnList {
  display: flex;
}
.dwarfNewspaper .btnLnk {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: 0.4s ease;
}
.dwarfNewspaper .btnLnk.download {
  background-color: #f0b51a;
}
.dwarfNewspaper .btnLnk.read {
  background-color: #a79776;
}
@media (min-width: 992px) {
  .dwarfNewspaper .btnLnk:hover.download, .dwarfNewspaper .btnLnk:focus.download {
    background-color: #ca960d;
  }
  .dwarfNewspaper .btnLnk:hover.read, .dwarfNewspaper .btnLnk:focus.read {
    background-color: #8e7e5c;
  }
}
.dwarfNewspaper .btnLnk span {
  display: block;
}
.dwarfNewspaper .newspaper__top {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .dwarfNewspaper .newspaper__top {
    margin-top: 15px;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox {
  display: flex;
}
@media (min-width: 992px) {
  .dwarfNewspaper .newspaper__top .newspaperBox {
    margin: 0 50px 0 100px;
  }
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__top .newspaperBox {
    flex-direction: column;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .imgWrapper {
  max-width: 380px;
  width: 34%;
}
@media (min-width: 1200px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .imgWrapper {
    width: 24%;
  }
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .imgWrapper {
    margin: 30px auto 0;
    width: 50%;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .imgWrapper a:after {
  font-size: 60px;
}
.dwarfNewspaper .newspaper__top .newspaperBox img {
  max-width: 100%;
  height: auto;
  box-shadow: 0px 0px 8px 2px rgba(153, 153, 153, 0.5);
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent {
  margin-left: 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent {
    margin-left: 30px;
  }
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .timeAndTitle {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .timeAndTitle .boxTitle {
    margin-bottom: 10px;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent time {
  display: block;
  font-weight: 700;
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .boxTitle {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
}
@media (max-width: 767px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .boxTitle {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .boxTitle {
    text-align: center;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .boxTitle em {
  display: block;
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 24px;
  font-style: normal;
  color: #f0b51a;
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .boxDesc {
  font-size: 18px;
  line-height: 24px;
  font-weight: 100;
  margin-top: 20px;
  max-width: 620px;
}
@media (max-width: 991px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .boxDesc {
    font-size: 16px;
    line-height: 22px;
    padding-right: 10px;
  }
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .boxDesc {
    padding: 0 10px;
    margin-top: 10px;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnList {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnList {
    justify-content: center;
    margin-top: 20px;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk {
  font-size: 20px;
  padding: 10px 50px;
}
@media (max-width: 991px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk {
    padding: 8px 35px;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk.download {
  margin-right: 20px;
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk.download img {
  height: 20px;
  box-shadow: none;
}
@media (max-width: 991px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk.download img {
    height: 15px;
  }
}
.dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk i, .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk img {
  font-size: 18px;
  margin-right: 15px;
}
@media (max-width: 991px) {
  .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk i, .dwarfNewspaper .newspaper__top .newspaperBox .newspaperContent .btnLnk img {
    font-size: 14px;
  }
}
.dwarfNewspaper .newspaper__bottom {
  margin-top: 60px;
}
.dwarfNewspaper .newspaper__bottom .sectionTitle {
  padding-bottom: 0;
  font-size: 24px;
}
.dwarfNewspaper .newspaper__bottom .sectionTitle:before, .dwarfNewspaper .newspaper__bottom .sectionTitle:after {
  display: none;
}
.dwarfNewspaper .newspaper__bottom .imgWrapper a:after {
  font-size: 30px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider {
  margin-top: 20px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-track {
  display: flex;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-list {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-list {
    display: block;
  }
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-arrow {
  position: absolute;
  top: 35%;
  background-color: #f0b51a;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  z-index: 10;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-arrow.slick-disabled {
  opacity: 0.4;
}
@media (min-width: 992px) {
  .dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-arrow:hover, .dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-arrow:focus {
    background-color: #ca960d;
  }
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slick-arrow i {
  color: #fff;
  font-size: 10px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slickPrev {
  left: -10px;
}
@media (max-width: 767px) {
  .dwarfNewspaper .newspaper__bottom .newspaperSlider .slickPrev {
    left: 0;
  }
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slickPrev i {
  padding-right: 2px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slickNext {
  right: -10px;
}
@media (max-width: 767px) {
  .dwarfNewspaper .newspaper__bottom .newspaperSlider .slickNext {
    right: 0;
  }
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .slickNext i {
  padding-left: 2px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .sliderItem {
  margin: 0 30px;
  padding-top: 10px;
}
@media (max-width: 675px) {
  .dwarfNewspaper .newspaper__bottom .newspaperSlider .sliderItem {
    margin: 0 15px;
  }
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .sliderItemContent {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 575px) {
  .dwarfNewspaper .newspaper__bottom .newspaperSlider .sliderItemContent {
    max-width: 180px;
    margin: 0 auto;
  }
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .newspaperWrapper {
  flex: 1;
  margin-top: 10px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .btnList {
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .btnList li {
  width: 48%;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .btnList .btnLnk {
  padding: 3px 0;
  justify-content: center;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .btnList .btnLnk i, .dwarfNewspaper .newspaper__bottom .newspaperSlider .btnList .btnLnk img {
  margin-right: 8px;
  font-size: 10px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .btnList .btnLnk img {
  height: 11px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .imgWrapper {
  max-width: 180px;
}
.dwarfNewspaper .newspaper__bottom .newspaperSlider .imgWrapper img {
  max-width: 100%;
  box-shadow: 0px 0px 8px 2px rgba(153, 153, 153, 0.5);
}
.dwarfNewspaper .imgWrapper a {
  display: block;
  position: relative;
}
.dwarfNewspaper .imgWrapper a:before, .dwarfNewspaper .imgWrapper a:after {
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
}
.dwarfNewspaper .imgWrapper a:before {
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}
.dwarfNewspaper .imgWrapper a:after {
  content: "";
  font-family: "fontello";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(1.2) translate(-50%, -50%);
}
@media screen and (min-width: 991px) {
  .dwarfNewspaper .imgWrapper a:hover:before, .dwarfNewspaper .imgWrapper a:hover:after {
    opacity: 1;
  }
  .dwarfNewspaper .imgWrapper a:hover:after {
    transform: scale(1) translate(-50%, -50%);
  }
}

.fancybox-overlay {
  background-color: rgba(11, 34, 49, 0.7);
}

/*# sourceMappingURL=style-dwarf.css.map */
