/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */

 .mm-menu_theme-white {
  --mm-color-border: rgba( 0, 0, 0, 0.1);
  --mm-color-button: rgba( 0, 0, 0, 0.3);
  --mm-color-text: rgba( 0, 0, 0, 0.7);
  --mm-color-text-dimmed: rgba( 0, 0, 0, 0.3);
  --mm-color-background: #fff;
  --mm-color-background-highlight: rgba( 0, 0, 0, 0.06);
  --mm-color-background-emphasis: rgba( 0, 0, 0, 0.03);
  --mm-shadow: 0 0 10px rgba( 0, 0, 0, 0.2)
}

.mm-menu_theme-dark {
  --mm-color-border: rgba( 0, 0, 0, 0.3);
  --mm-color-button: rgba( 255, 255, 255, 0.4);
  --mm-color-text: rgba( 255, 255, 255, 0.85);
  --mm-color-text-dimmed: rgba( 255, 255, 255, 0.4);
  --mm-color-background: #333;
  --mm-color-background-highlight: rgba( 255, 255, 255, 0.08);
  --mm-color-background-emphasis: rgba( 0, 0, 0, 0.1);
  --mm-shadow: 0 0 20px rgba( 0, 0, 0, 0.5)
}

.mm-menu_theme-black {
  --mm-color-border: rgba( 255, 255, 255, 0.25);
  --mm-color-button: rgba( 255, 255, 255, 0.4);
  --mm-color-text: rgba( 255, 255, 255, 0.75);
  --mm-color-text-dimmed: rgba( 255, 255, 255, 0.4);
  --mm-color-background: #000;
  --mm-color-background-highlight: rgba( 255, 255, 255, 0.2);
  --mm-color-background-emphasis: rgba( 255, 255, 255, 0.15);
  --mm-shadow: none
}

:root {
  --mm-line-height: 20px;
  --mm-listitem-size: 44px;
  --mm-navbar-size: 44px;
  --mm-offset-top: 0;
  --mm-offset-right: 0;
  --mm-offset-bottom: 0;
  --mm-offset-left: 0;
  --mm-color-border: rgba(0, 0, 0, 0.1);
  --mm-color-button: rgba(0, 0, 0, 0.3);
  --mm-color-text: rgba(0, 0, 0, 0.75);
  --mm-color-text-dimmed: rgba(0, 0, 0, 0.3);
  --mm-color-background: #fff;
  --mm-color-background-highlight: rgba(0, 0, 0, 0.05);
  --mm-color-background-emphasis: rgba(255, 255, 255, 0.4);
  --mm-shadow: 0 0 10px rgba(0, 0, 0, 0.3)
}

.mm-hidden {
  display: none!important
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  border-color: rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, .75);
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: var(--mm-offset-top);
  right: var(--mm-offset-right);
  bottom: var(--mm-offset-bottom);
  left: var(--mm-offset-left);
  z-index: 0;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: var(--mm-line-height);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  margin-top: 0px !important;
  /* border-bottom: 3px solid transparent; */
}

.mm-menu a.active,
.mm-menu a:hover {
  color: #fff;
  background: #9e0000;
  /* background: #ebebeb; */
  /* border-bottom: 3px solid #ffcc00; */
}

.mm-menu a i {
    display: none;
}

/* .mm-menu a.active:after, .mm-menu a:hover:after {
  position: absolute;
  content: '';
  bottom: -1px;
  left: 15px;
  right: 15px;
  height: 3px;
  background: #ffcc00;
  z-index: 1;
} */

[dir=rtl] .mm-menu {
  direction: rtl
}

.mm-panel {
  background: #fff;
  border-color: rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, .75);
  z-index: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-panel:after {
  height: 44px
}

.mm-panel:not(.mm-hidden) {
  display: block
}

.mm-panel:after {
  content: '';
  display: block;
  height: var(--mm-listitem-size)
}

.mm-panel_opened {
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-panel_opened-parent {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0)
}

.mm-panel_highest {
  z-index: 2
}

.mm-panel_noanimation {
  -webkit-transition: none!important;
  -o-transition: none!important;
  transition: none!important
}

.mm-panel_noanimation.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-panels>.mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0
}

.mm-panel__content {
  padding: 20px 20px 0
}

.mm-panels {
  background: #fff;
  border-color: rgba(0, 0, 0, .1);
  color: rgba(0, 0, 0, .75);
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text)
}

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0)
}

[dir=rtl] .mm-panel.mm-panel_opened-parent {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0)
}

.mm-listitem_vertical>.mm-panel {
  display: none;
  width: 100%;
  padding: 10px 0 10px 10px;
  -webkit-transform: none!important;
  -ms-transform: none!important;
  transform: none!important
}

.mm-listitem_vertical>.mm-panel:after,
.mm-listitem_vertical>.mm-panel:before {
  content: none;
  display: none
}

.mm-listitem_opened>.mm-panel {
  display: block
}

.mm-listitem_vertical>.mm-listitem__btn {
  height: 44px;
  height: var(--mm-listitem-size);
  bottom: auto
}

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent
}

.mm-listitem_opened>.mm-listitem__btn:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 19px
}

.mm-btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50px;
  padding: 0
}

.mm-btn:after,
.mm-btn:before {
  border: 2px solid rgba(0, 0, 0, .3);
  border: 2px solid var(--mm-color-button)
}

.mm-btn_next:after,
.mm-btn_prev:before {
  content: '';
  border-bottom: none;
  border-right: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0
}

.mm-btn_prev:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto
}

.mm-btn_next:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto
}

.mm-btn_close:after,
.mm-btn_close:before {
  content: '';
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px
}

.mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px
}

[dir=rtl] .mm-btn_next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto
}

[dir=rtl] .mm-btn_prev:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto
}

[dir=rtl] .mm-btn_close:after,
[dir=rtl] .mm-btn_close:before {
  right: auto
}

[dir=rtl] .mm-btn_close:before {
  left: 25px
}

[dir=rtl] .mm-btn_close:after {
  left: 18px
}

.mm-navbar {
  min-height: 44px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  color: rgba(0, 0, 0, .3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: var(--mm-navbar-size);
  border-bottom: 1px solid var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  opacity: 1;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease
}

.mm-navbar>* {
  min-height: 44px
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
  .mm-navbar_sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1
  }
}

.mm-navbar>* {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.mm-navbar__btn {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0
}

.mm-navbar.mm-navbar_sticky .mm-navbar__btn:hover {
    color: #333;
    background: #fff;
}

.mm-navbar__title {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  color: #999 !important;
  font-weight: 500 !important;
}

.mm-navbar__title:not(:last-child) {
  padding-right: 0
}

.mm-navbar__btn:not(.mm-hidden)+.mm-navbar__title {
  padding-left: 0
}

.mm-navbar__btn:not(.mm-hidden)+.mm-navbar__title:last-child {
  padding-right: 50px;
  display: block;
  line-height: 44px;
}

.mm-navbar__title:hover, .mm-navbar__title:hover span {
  color: #999 !important;
  font-weight: 500 !important;
}

.mm-navbar__title:hover:after {
  display: none;
}

[dir=rtl] .mm-navbar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0
}

.mm-listitem {
  color: rgba(0, 0, 0, .75);
  border-color: rgba(0, 0, 0, .1);
  color: var(--mm-color-text);
  border-color: var(--mm-color-border);
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.mm-listitem:after {
  content: '';
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0px;
}

.mm-listitem a,
.mm-listitem a:hover {
  text-decoration: none
}

.mm-listitem__btn,
.mm-listitem__text {
  padding: 12px;
  display: block;
  padding: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
  padding-left: 0;
  padding-right: 0;
  color: inherit
}

.mm-listitem__text {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%
}

.mm-listitem__btn {
  background: rgba(3, 2, 1, 0);
  border-color: inherit;
  width: auto;
  padding-right: 50px;
  position: relative
}

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid
}

.mm-listitem_selected>.mm-listitem__text {
  background: rgba(255, 255, 255, .4);
  background: var(--mm-color-background-emphasis)
}

.mm-listitem_opened>.mm-listitem__btn,
.mm-listitem_opened>.mm-panel {
  background: rgba(0, 0, 0, .05);
  background: var(--mm-color-background-highlight)
}

[dir=rtl] .mm-listitem:after {
  left: 0;
  right: 20px
}

[dir=rtl] .mm-listitem__text {
  padding-left: 10px;
  padding-right: 20px
}

[dir=rtl] .mm-listitem__btn {
  padding-left: 50px;
  border-left-width: 0;
  border-left-style: none
}

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
  padding-right: 0;
  border-right-width: 1px;
  border-right-style: solid
}

.mm-page {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative
}

.mm-slideout {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
  z-index: 1;
  /* overflow-y: hidden;
  overflow-x: hidden; */
}

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative
}

.mm-wrapper_opened .mm-page {
  min-height: 100vh
}

.mm-wrapper_background .mm-page {
  background: inherit
}

.mmenu-btn {
  position: fixed;
  top: 50px;
    right: 90px;
  /* right: 15px; */
    width: 50px;
    height: 45px;
  z-index: 9;
}

.mmenu-btn span {
  display: block;
  float: right;
  position: relative;
  width: 30px;
  height: 2px;
  margin: 20px 0px 0px 0px;
  background: #333;
}

.mmenu-btn span:after, .mmenu-btn span:before {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  width: 30px;
  height: 2px;
  background: #333;
}

.mmenu-btn span:after {
  top: 6px;
}

.mmenu-btn span:before {
  bottom: 6px;
}

.mmenu-btn:hover span,
.mmenu-btn:hover span:after,
.mmenu-btn:hover span:before {
  background: #ccc;
}


.mm-wrapper_opened .mmenu-btn span {
  height: 0px;
}

.mm-wrapper_opened .mmenu-btn span:after {
  -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    transform:rotate(-45deg);
    right: 0px;
    top: 2px;
}

.mm-wrapper_opened .mmenu-btn span:before {
  -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    transform:rotate(45deg);
    left: 0px;
    bottom: 0px;
    top: 2px;
}


.mm-menu_offcanvas {
  position: fixed;
  right: auto;
  /*top: 90px;*/top: 80px;
  /* z-index: 9999; */z-index: 0;
}

.mm-menu_offcanvas:not(.mm-menu_opened) {
  display: none
}

.mm-menu_offcanvas {
  width: 80%;
  /* width: 83%; */
  min-width: 240px;
  max-width: 440px
}

.mm-wrapper__blocker a {
  /*width: 100px;*/ /*width: 50px;*/ 
  /* width: 60%; */width: 75px;
  /* height: 100px; */height: 75px;
  /* background: #f00; */
  position: fixed;
  /* margin-top: -100px; */margin-top: -75px;
  /* margin-left: -100px; */
  z-index: 999999;
  /*margin-right: 50%;*/
    /*float: right;*/
  display: block;
  /* right: 0px;
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0) */
  right: 500px;
}


.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0)
  }

  /* .mm-wrapper__blocker a {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0);
  } */
}

@media all and (min-width:550px) {
  .mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0)
  }

  /* .mm-wrapper__blocker a {
    -webkit-transform: translate3d(-440px,0,0);
    transform: translate3d(-440px,0,0);
  } */
}

@media all and (min-width:992px) {
  .mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout {
    -webkit-transform: none; 
    transform: none;
  }

  .mm-wrapper_opened .mm-wrapper__blocker.mm-slideout {
    background: transparent;
    visibility: hidden;
  } 

  /* .mm-wrapper__blocker a {
    -webkit-transform: none; 
    transform: none;
  } */
}

/* width : 800px ----------- */
/* @media only screen and (max-width: 800px), only screen and (max-device-width: 800px) {
  .mm-wrapper__blocker a {
    top: 65px;
  }
} */

.mm-wrapper__blocker {
  background: rgba(0, 0, 0, 0.8);
  /*overflow: hidden;*/
  display: none;
  position: fixed;
  /*top: 90px;*/top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999
}

.mm-wrapper_blocking {
  overflow: hidden
}

.mm-wrapper_blocking body {
  overflow: hidden
}

.mm-wrapper_blocking .mm-wrapper__blocker {
  display: block
}

.mm-sronly {
  border: 0!important;
  clip: rect(1px, 1px, 1px, 1px)!important;
  -webkit-clip-path: inset(50%)!important;
  clip-path: inset(50%)!important;
  white-space: nowrap!important;
  width: 1px!important;
  min-width: 1px!important;
  height: 1px!important;
  min-height: 1px!important;
  padding: 0!important;
  overflow: hidden!important;
  position: absolute!important
  /*position: fixed;
  top: 150px;
  left: 0px;
  width: 50px;
  height: 50px;
  background: #fc0;
  z-index: 99999;
  color: transparent;*/
}

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative
}

.mm-menu_autoheight.mm-menu_position-bottom,
.mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%
}

.mm-menu_autoheight-measuring .mm-panel {
  display: block!important
}

.mm-menu_autoheight-measuring .mm-panels>.mm-panel {
  bottom: auto!important;
  height: auto!important
}

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none!important
}

[class*=mm-menu_columns-] {
  -webkit-transition-property: width;
  -o-transition-property: width;
  transition-property: width
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel {
  right: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened,
[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent {
  display: block!important
}

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit
}

.mm-menu_columns-1 .mm-panel_columns-0,
.mm-menu_columns-2 .mm-panel_columns-1,
.mm-menu_columns-3 .mm-panel_columns-2,
.mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-menu_columns-0 .mm-panels>.mm-panel {
  z-index: 0
}

.mm-menu_columns-0 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0)
}

.mm-menu_columns-0 {
  width: 80%;
  min-width: 240px;
  max-width: 0
}

.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0)
  }
}

@media all and (min-width:0px) {
  .mm-wrapper_opening .mm-menu_columns-0~.mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0)
  }
}

@media all and (min-width:0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1 {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0)
}

.mm-menu_columns-1 .mm-panels>.mm-panel {
  z-index: 1;
  width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0)
}

.mm-menu_columns-1 {
  width: 80%;
  min-width: 240px;
  max-width: 440px
}

.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0)
  }
}

@media all and (min-width:550px) {
  .mm-wrapper_opening .mm-menu_columns-1~.mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0)
  }
}

@media all and (min-width:550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2 {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0)
}

.mm-menu_columns-2 .mm-panels>.mm-panel {
  z-index: 2;
  width: 50%
}

.mm-menu_columns-2 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0)
}

.mm-menu_columns-2 {
  width: 80%;
  min-width: 240px;
  max-width: 880px
}

.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0)
  }
}

@media all and (min-width:1100px) {
  .mm-wrapper_opening .mm-menu_columns-2~.mm-slideout {
    -webkit-transform: translate3d(880px, 0, 0);
    transform: translate3d(880px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0)
  }
}

@media all and (min-width:1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-880px, 0, 0);
    transform: translate3d(-880px, 0, 0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3 {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0)
}

.mm-menu_columns-3 .mm-panels>.mm-panel {
  z-index: 3;
  width: 33.34%
}

.mm-menu_columns-3 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0)
}

.mm-menu_columns-3 {
  width: 80%;
  min-width: 240px;
  max-width: 1320px
}

.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0)
  }
}

@media all and (min-width:1650px) {
  .mm-wrapper_opening .mm-menu_columns-3~.mm-slideout {
    -webkit-transform: translate3d(1320px, 0, 0);
    transform: translate3d(1320px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0)
  }
}

@media all and (min-width:1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-1320px, 0, 0);
    transform: translate3d(-1320px, 0, 0)
  }
}

[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4 {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0)
}

.mm-menu_columns-4 .mm-panels>.mm-panel {
  z-index: 4;
  width: 25%
}

.mm-menu_columns-4 .mm-panels>.mm-panel else {
  width: 100%
}

.mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(500%, 0, 0);
  transform: translate3d(500%, 0, 0)
}

.mm-menu_columns-4 {
  width: 80%;
  min-width: 240px;
  max-width: 1760px
}

.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0)
  }
}

@media all and (min-width:2200px) {
  .mm-wrapper_opening .mm-menu_columns-4~.mm-slideout {
    -webkit-transform: translate3d(1760px, 0, 0);
    transform: translate3d(1760px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0)
  }
}

@media all and (min-width:2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-1760px, 0, 0);
    transform: translate3d(-1760px, 0, 0)
  }
}

[class*=mm-menu_columns-].mm-menu_position-bottom,
[class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%
}

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  -webkit-transition-property: width, min-width, max-width, -webkit-transform;
  transition-property: width, min-width, max-width, -webkit-transform;
  -o-transition-property: width, min-width, max-width, transform;
  transition-property: width, min-width, max-width, transform;
  transition-property: width, min-width, max-width, transform, -webkit-transform
}

.mm-counter {
  color: rgba(0, 0, 0, .3);
  display: block;
  padding-left: 20px;
  float: right;
  text-align: right;
  color: var(--mm-color-text-dimmed)
}

.mm-listitem_nosubitems>.mm-counter {
  display: none
}

[dir=rtl] .mm-counter {
  text-align: left;
  float: left;
  padding-left: 0;
  padding-right: 20px
}

.mm-divider {
  position: relative;
  min-height: 20px;
  padding: 4.3px;
  background: #fff;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  min-height: var(--mm-line-height);
  padding: calc(((var(--mm-listitem-size) * .65) - var(--mm-line-height)) * .5);
  padding-right: 10px;
  padding-left: 20px;
  font-size: 75%;
  text-transform: uppercase;
  background: var(--mm-color-background);
  opacity: 1;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease
}

.mm-divider:before {
  background: rgba(0, 0, 0, .05)
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
  .mm-divider {
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
    top: 0
  }
  .mm-navbar_sticky:not(.mm-hidden)~.mm-listview .mm-divider {
    top: var(--mm-navbar-size)
  }
}

.mm-divider:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--mm-color-background-highlight)
}

.mm-wrapper_dragging .mm-menu,
.mm-wrapper_dragging .mm-slideout {
  -webkit-transition-duration: 0s!important;
  -o-transition-duration: 0s!important;
  transition-duration: 0s!important;
  -webkit-user-select: none!important;
  -moz-user-select: none!important;
  -ms-user-select: none!important;
  user-select: none!important
}

.mm-wrapper_dragging .mm-menu {
  pointer-events: none!important
}

.mm-wrapper_dragging .mm-wrapper__blocker {
  display: none!important
}

.mm-menu_dropdown {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  height: 80%
}

.mm-wrapper_dropdown .mm-slideout {
  -webkit-transform: none!important;
  -ms-transform: none!important;
  transform: none!important;
  z-index: 0
}

.mm-wrapper_dropdown .mm-wrapper__blocker {
  -webkit-transition-delay: 0s!important;
  -o-transition-delay: 0s!important;
  transition-delay: 0s!important;
  z-index: 1
}

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2
}

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none
}

.mm-menu_tip-bottom:before,
.mm-menu_tip-left:before,
.mm-menu_tip-right:before,
.mm-menu_tip-top:before {
  content: '';
  background: inherit;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.mm-menu_tip-left:before {
  left: 22px
}

.mm-menu_tip-right:before {
  right: 22px
}

.mm-menu_tip-top:before {
  top: -8px
}

.mm-menu_tip-bottom:before {
  bottom: -8px
}

:root {
  --mm-iconbar-size: 50px
}

.mm-menu_iconbar-left .mm-navbars_bottom,
.mm-menu_iconbar-left .mm-navbars_top,
.mm-menu_iconbar-left .mm-panels {
  margin-left: 50px;
  margin-left: var(--mm-iconbar-size)
}

.mm-menu_iconbar-left .mm-iconbar {
  border-right-width: 1px;
  display: block;
  left: 0
}

.mm-menu_iconbar-right .mm-navbars_bottom,
.mm-menu_iconbar-right .mm-navbars_top,
.mm-menu_iconbar-right .mm-panels {
  margin-right: 50px;
  margin-right: var(--mm-iconbar-size)
}

.mm-menu_iconbar-right .mm-iconbar {
  border-left-width: 1px;
  display: block;
  right: 0
}

.mm-iconbar {
  width: 50px;
  border-color: rgba(0, 0, 0, .1);
  background: #fff;
  color: rgba(0, 0, 0, .3);
  display: none;
  width: var(--mm-iconbar-size);
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  border: 0 solid;
  border-color: var(--mm-color-border);
  background: var(--mm-color-background);
  color: var(--mm-color-text-dimmed);
  text-align: center
}

.mm-iconbar__bottom,
.mm-iconbar__top {
  width: inherit;
  position: absolute
}

.mm-iconbar__bottom>*,
.mm-iconbar__top>* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 12.5px 0
}

.mm-iconbar__bottom a,
.mm-iconbar__bottom a:hover,
.mm-iconbar__top a,
.mm-iconbar__top a:hover {
  text-decoration: none
}

.mm-iconbar__top {
  top: 0
}

.mm-iconbar__bottom {
  bottom: 0
}

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, .4);
  background: var(--mm-color-background-emphasis)
}

:root {
  --mm-iconpanel-size: 50px
}

.mm-panel_iconpanel-1 {
  width: calc(100% - 50px);
  width: calc(100% - (var(--mm-iconpanel-size) * 1))
}

.mm-panel_iconpanel-2 {
  width: calc(100% - 100px);
  width: calc(100% - (var(--mm-iconpanel-size) * 2))
}

.mm-panel_iconpanel-3 {
  width: calc(100% - 150px);
  width: calc(100% - (var(--mm-iconpanel-size) * 3))
}

.mm-panel_iconpanel-first~.mm-panel {
  width: calc(100% - 50px);
  width: calc(100% - var(--mm-iconpanel-size))
}

.mm-menu_iconpanel .mm-panels>.mm-panel {
  left: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: transform, width;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform
}

.mm-menu_iconpanel .mm-panels>.mm-panel_opened,
.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent {
  display: block!important
}

.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent {
  overflow-y: hidden;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset
}

.mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left-width: 1px;
  border-left-style: solid
}

.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider,
.mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0
}

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease
}

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: .6;
  bottom: -100000px
}

[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel {
  left: 0;
  right: auto;
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: transform, width;
  transition-property: transform, width;
  transition-property: transform, width, -webkit-transform
}

[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit
}

.mm-menu_keyboardfocus a:focus,
.mm-menu_keyboardfocus.mm-menu_opened~.mm-wrapper__blocker a:focus {
  background: rgba(255, 255, 255, .4);
  background: var(--mm-color-background-emphasis);
  outline: 0
}

.mm-wrapper__blocker .mm-tabstart {
  cursor: default;
  display: block;
  width: 100%;
  height: 100%
}

.mm-wrapper__blocker .mm-tabend {
  opacity: 0;
  position: absolute;
  bottom: 0
}

.mm-navbars_top {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.mm-navbars_top .mm-navbar:not(:last-child) {
  border-bottom: none
}

.mm-navbars_bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.mm-navbars_bottom .mm-navbar {
  border-bottom: none
}

.mm-navbars_bottom .mm-navbar:first-child {
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-top: 1px solid var(--mm-color-border)
}

.mm-btn:not(.mm-hidden)+.mm-navbar__searchfield .mm-searchfield__input {
  padding-left: 0
}

.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
  padding-right: 0
}

.mm-navbar__breadcrumbs {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.mm-navbar__breadcrumbs>* {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 6px
}

.mm-navbar__breadcrumbs>a {
  text-decoration: underline
}

.mm-navbar__breadcrumbs:not(:last-child) {
  padding-right: 0
}

.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs {
  padding-left: 0
}

.mm-navbar_tabs>* {
  padding: 0 10px;
  border: 1px solid transparent
}

.mm-navbar__tab_selected {
  background: #fff;
  color: rgba(0, 0, 0, .75);
  background: var(--mm-color-background);
  color: var(--mm-color-text)
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: rgba(0, 0, 0, .1)
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: rgba(0, 0, 0, .1)
}

.mm-navbar__tab_selected:not(:first-child) {
  border-left-color: var(--mm-color-border)
}

.mm-navbar__tab_selected:not(:last-child) {
  border-right-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar_tabs {
  border-bottom: none
}

.mm-navbars_top .mm-navbar_tabs>* {
  border-bottom-color: rgba(0, 0, 0, .1);
  border-bottom-color: var(--mm-color-border)
}

.mm-navbars_top .mm-navbar__tab_selected {
  border-top-color: rgba(0, 0, 0, .1);
  border-top-color: var(--mm-color-border);
  border-bottom-color: transparent
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
  background: rgba(255, 255, 255, .4);
  background: var(--mm-color-background-emphasis)
}

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar {
  background: #fff;
  background: var(--mm-color-background)
}

.mm-navbars_bottom .mm-navbar_tabs:first-child {
  border-top: none
}

.mm-navbars_bottom .mm-navbar_tabs>* {
  border-top-color: rgba(0, 0, 0, .1);
  border-top-color: var(--mm-color-border)
}

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-bottom-color: rgba(0, 0, 0, .1);
  border-bottom-color: var(--mm-color-border);
  border-top-color: transparent
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
  background: #fff;
  background: var(--mm-color-background)
}

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs,
.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar {
  background: rgba(255, 255, 255, .4);
  background: var(--mm-color-background-emphasis)
}

.mm-searchfield {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden
}

.mm-searchfield input {
  height: 30.8px;
  line-height: 30.8px
}

.mm-searchfield input,
.mm-searchfield input:focus,
.mm-searchfield input:hover {
  background: rgba(0, 0, 0, .05);
  color: rgba(0, 0, 0, .75)
}

.mm-searchfield input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: calc(var(--mm-navbar-size) * .7);
  min-height: unset;
  max-height: unset;
  margin: 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none!important;
  border-radius: 4px;
  line-height: calc(var(--mm-navbar-size) * .7);
  -webkit-box-shadow: none!important;
  box-shadow: none!important;
  outline: 0!important;
  font: inherit;
  font-size: inherit
}

.mm-searchfield input,
.mm-searchfield input:focus,
.mm-searchfield input:hover {
  background: var(--mm-color-background-highlight);
  color: var(--mm-color-text)
}

.mm-searchfield input::-ms-clear {
  display: none
}

.mm-searchfield__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, .3);
  padding: 50px 0;
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%
}

.mm-searchfield__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0
}

.mm-panel_search {
  left: 0!important;
  right: 0!important;
  width: 100%!important;
  border-left: none!important
}

.mm-searchfield__cancel {
  line-height: 44px;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  -webkit-transition: margin .4s ease;
  -o-transition: margin .4s ease;
  transition: margin .4s ease
}

.mm-searchfield__cancel-active {
  margin-right: 0
}

.mm-listitem_nosubitems>.mm-listitem__btn {
  display: none
}

.mm-listitem_nosubitems>.mm-listitem__text {
  padding-right: 10px
}

.mm-listitem_onlysubitems>.mm-listitem__text:not(.mm-listitem__btn) {
  z-index: -1;
  pointer-events: none
}

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 5;
  -webkit-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease;
  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: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly
}

.mm-sectionindexer a {
  color: rgba(0, 0, 0, .3);
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block
}

.mm-sectionindexer~.mm-panel {
  padding-right: 0
}

.mm-sectionindexer_active {
  right: 0
}

.mm-sectionindexer_active~.mm-panel {
  padding-right: 20px
}

.mm-menu_selected-hover .mm-listitem__btn,
.mm-menu_selected-hover .mm-listitem__text,
.mm-menu_selected-parent .mm-listitem__btn,
.mm-menu_selected-parent .mm-listitem__text {
  -webkit-transition: background-color .4s ease;
  -o-transition: background-color .4s ease;
  transition: background-color .4s ease
}

.mm-menu_selected-hover .mm-listview:hover>.mm-listitem_selected>.mm-listitem__text {
  background: 0 0
}

.mm-menu_selected-hover .mm-listitem__btn:hover,
.mm-menu_selected-hover .mm-listitem__text:hover {
  background: rgba(255, 255, 255, .4);
  background: var(--mm-color-background-emphasis)
}

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent)>.mm-listitem__text {
  background: 0 0
}

.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__btn,
.mm-menu_selected-parent .mm-listitem_selected-parent>.mm-listitem__text {
  background: rgba(255, 255, 255, .4);
  background: var(--mm-color-background-emphasis)
}

:root {
  --mm-sidebar-collapsed-size: 50px;
  --mm-sidebar-expanded-size: 440px
}

.mm-wrapper_sidebar-collapsed body,
.mm-wrapper_sidebar-expanded body {
  position: relative
}

.mm-wrapper_sidebar-collapsed .mm-slideout,
.mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transition-property: width, -webkit-transform;
  transition-property: width, -webkit-transform;
  -o-transition-property: width, transform;
  transition-property: width, transform;
  transition-property: width, transform, -webkit-transform
}

.mm-wrapper_sidebar-collapsed .mm-page,
.mm-wrapper_sidebar-expanded .mm-page {
  background: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100vh
}

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed,
.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  display: -webkit-box!important;
  display: -ms-flexbox!important;
  display: flex!important;
  top: 0!important;
  right: auto!important;
  bottom: 0!important;
  left: 0!important
}

.mm-wrapper_sidebar-collapsed .mm-slideout {
  width: calc(100% - 50px);
  -webkit-transform: translate3d(50px, 0, 0);
  transform: translate3d(50px, 0, 0);
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0)
}

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider,
.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  width: 440px;
  width: var(--mm-sidebar-expanded-size);
  min-width: 0!important;
  max-width: 100000px!important;
  border-right-width: 1px;
  border-right-style: solid
}

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none
}

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking,
.mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
  overflow: visible
}

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
  display: none!important
}

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout {
  width: calc(100% - 440px);
  -webkit-transform: translate3d(440px, 0, 0);
  transform: translate3d(440px, 0, 0);
  width: calc(100% - var(--mm-sidebar-expanded-size));
  -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0)
}

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3
}

.mm-menu_opened .mm-menu__blocker {
  display: none
}

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

input.mm-toggle {
  margin-top: 5px;
  background: rgba(0, 0, 0, .1);
  display: inline-block;
  min-width: 58px;
  width: 58px;
  height: 34px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 34px)/ 2);
  border: none!important;
  background: var(--mm-color-border);
  border-radius: 34px;
  -webkit-appearance: none!important;
  -moz-appearance: none!important;
  appearance: none!important;
  cursor: pointer;
  -webkit-transition: background-color .2s ease;
  -o-transition: background-color .2s ease;
  transition: background-color .2s ease
}

input.mm-toggle:before {
  background: #fff
}

input.mm-toggle:before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin: 1px;
  border-radius: 34px;
  background: var(--mm-color-background);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease
}

input.mm-toggle:checked {
  background: #4bd963
}

input.mm-toggle:checked:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px)
}

input.mm-check {
  margin-top: 2px;
  -webkit-appearance: none!important;
  -moz-appearance: none!important;
  appearance: none!important;
  border: none!important;
  background: 0 0!important;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  margin-top: calc((var(--mm-listitem-size) - 40px)/ 2)
}

input.mm-check:before {
  content: '';
  display: block;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  border-left: 3px solid;
  border-bottom: 3px solid;
  border-color: var(--mm-color-text);
  opacity: .3;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease
}

input.mm-check:checked:before {
  opacity: 1
}

[dir=rtl] input.mm-toggle:checked~label.mm-toggle:before {
  float: left
}

.mm-menu_border-none .mm-listitem:after {
  content: none
}

.mm-menu_border-full .mm-listitem:after {
  left: 0!important
}

.mm-menu_fx-menu-slide {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0)
}

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-menu_fx-panels-none .mm-panel,
.mm-panel_fx-none {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none
}

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent,
.mm-panel_fx-none.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0)
}

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px
}

.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
  -webkit-transform: translate3d(100vw, 0, 0);
  transform: translate3d(100vw, 0, 0)
}

@media all and (max-width:140px) {
  .mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0)
  }
}

@media all and (min-width:10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout {
    -webkit-transform: translate3d(10000px, 0, 0);
    transform: translate3d(10000px, 0, 0)
  }
}

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(-100vw, 0, 0);
  transform: translate3d(-100vw, 0, 0)
}

@media all and (max-width:140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0)
  }
}

@media all and (min-width:10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-10000px, 0, 0);
    transform: translate3d(-10000px, 0, 0)
  }
}

.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px
}

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px
}

.mm-menu_listview-justify .mm-panels>.mm-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.mm-menu_listview-justify .mm-panels>.mm-panel:after {
  content: none;
  display: none
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 50px
}

.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem__text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.mm-listview_inset {
  list-style: inside disc;
  width: 100%;
  padding: 0 30px 15px 30px;
  margin: 0
}

.mm-listview_inset .mm-listitem {
  padding: 5px 0
}

.mm-menu_multiline .mm-listitem__text {
  -o-text-overflow: clip;
  text-overflow: clip;
  white-space: normal
}

[class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker {
  opacity: 0
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker {
  opacity: .3;
  -webkit-transition: opacity .4s ease .4s;
  -o-transition: opacity .4s ease .4s;
  transition: opacity .4s ease .4s
}

.mm-menu_opened.mm-menu_pagedim~.mm-wrapper__blocker {
  background: inherit
}

.mm-menu_opened.mm-menu_pagedim-black~.mm-wrapper__blocker {
  background: #000
}

.mm-menu_opened.mm-menu_pagedim-white~.mm-wrapper__blocker {
  background: #fff
}

.mm-menu_popup {
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
  opacity: 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0)
}

.mm-menu_popup.mm-menu_opened~.mm-slideout {
  -webkit-transform: none!important;
  -ms-transform: none!important;
  transform: none!important;
  z-index: 0
}

.mm-menu_popup.mm-menu_opened~.mm-wrapper__blocker {
  -webkit-transition-delay: 0s!important;
  -o-transition-delay: 0s!important;
  transition-delay: 0s!important;
  z-index: 1
}

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1
}

.mm-menu_position-right {
  left: auto;
  right: 0
}

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0)
}

@media all and (max-width:300px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0)
  }
}

@media all and (min-width:550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0)
  }
}

.mm-menu_position-bottom,
.mm-menu_position-front,
.mm-menu_position-top {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease
}

.mm-menu_position-bottom.mm-menu_opened,
.mm-menu_position-front.mm-menu_opened,
.mm-menu_position-top.mm-menu_opened {
  z-index: 2
}

.mm-menu_position-bottom.mm-menu_opened~.mm-slideout,
.mm-menu_position-front.mm-menu_opened~.mm-slideout,
.mm-menu_position-top.mm-menu_opened~.mm-slideout {
  -webkit-transform: none!important;
  -ms-transform: none!important;
  transform: none!important;
  z-index: 0
}

.mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker,
.mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker,
.mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker {
  z-index: 1
}

.mm-menu_position-front {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0)
}

.mm-menu_position-front.mm-menu_position-right {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0)
}

.mm-menu_position-bottom,
.mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%
}

.mm-menu_position-top {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0)
}

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px
}

.mm-menu_position-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  top: auto
}

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px
}

.mm-wrapper_opening .mm-menu_position-bottom,
.mm-wrapper_opening .mm-menu_position-front,
.mm-wrapper_opening .mm-menu_position-top {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.mm-menu_shadow-page:after {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  content: '';
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%)
}

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none
}

.mm-menu_shadow-menu {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow)
}

.mm-menu_shadow-panels .mm-panels>.mm-panel {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow)
}

.mm-menu_tileview .mm-listview,
.mm-panel_tileview .mm-listview {
  margin: 0!important
}

.mm-menu_tileview .mm-listview:after,
.mm-panel_tileview .mm-listview:after {
  content: '';
  display: block;
  clear: both
}

.mm-menu_tileview .mm-listitem,
.mm-panel_tileview .mm-listitem {
  padding: 0;
  float: left;
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 50%
}

.mm-menu_tileview .mm-listitem:after,
.mm-panel_tileview .mm-listitem:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1
}

.mm-menu_tileview .mm-listitem.mm-tile-xs,
.mm-panel_tileview .mm-listitem.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%
}

.mm-menu_tileview .mm-listitem.mm-tile-s,
.mm-panel_tileview .mm-listitem.mm-tile-s {
  width: 25%;
  padding-top: 25%
}

.mm-menu_tileview .mm-listitem.mm-tile-l,
.mm-panel_tileview .mm-listitem.mm-tile-l {
  width: 75%;
  padding-top: 75%
}

.mm-menu_tileview .mm-listitem.mm-tile-xl,
.mm-panel_tileview .mm-listitem.mm-tile-xl {
  width: 100%;
  padding-top: 100%
}

.mm-menu_tileview .mm-listitem__text,
.mm-panel_tileview .mm-listitem__text {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0
}

.mm-menu_tileview .mm-listitem__btn,
.mm-panel_tileview .mm-listitem__btn {
  width: auto
}

.mm-menu_tileview .mm-listitem__btn:after,
.mm-menu_tileview .mm-listitem__btn:before,
.mm-panel_tileview .mm-listitem__btn:after,
.mm-panel_tileview .mm-listitem__btn:before {
  content: none;
  display: none
}

.mm-menu_tileview .mm-divider,
.mm-panel_tileview .mm-divider {
  display: none
}

.mm-menu_tileview .mm-panel,
.mm-panel_tileview {
  padding-left: 0;
  padding-right: 0
}

.mm-menu_tileview .mm-panel:after,
.mm-menu_tileview .mm-panel:before,
.mm-panel_tileview:after,
.mm-panel_tileview:before {
  content: none;
  display: none
}

body.modal-open .mm-slideout {
  z-index: unset
}

/* width : 991px ----------- */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
    .mmenu-btn {
        top: 45px;
        height: 30px;
    }

    .mmenu-btn span {
        margin: 15px 0px 0px 0px;
    }
}

/* width : 680px ----------- */
@media only screen and (max-width: 680px), only screen and (max-device-width: 680px) {
    .mmenu-btn {
        right: 70px;
    }
}

/* width : 600px ----------- */
@media only screen and (max-width: 600px), only screen and (max-device-width: 600px) {
    .mmenu-btn {
        right: 60px;
    }

    .mm-wrapper__blocker a {
        right: 485px;
    }
}

/* width : 540px ----------- */
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
    .mm-wrapper__blocker a {
        right: 89%;
    }
}

/* width : 530px ----------- */
@media only screen and (max-width: 530px), only screen and (max-device-width: 530px) {
    .mmenu-btn {
        top: 50px;
    }

    .mm-wrapper__blocker {
        top: 90px;
    }

    .mm-menu_offcanvas {
        top: 90px;
    }
}

/* width : 500px ----------- */
/* @media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {  
    .mm-wrapper__blocker {
        top: 95px;
    }

    .mm-menu_offcanvas {
        top: 95px;
    }
} */

/* width : 460px ----------- */
@media only screen and (max-width: 460px), only screen and (max-device-width: 460px) {
    .mmenu-btn {
        right: 60px;
    }

    .mm-wrapper__blocker a {
        right: 90%;
    }

    .mm-listitem__text {
        font-size: 15px !important;
        padding: 10px 15px !important;
    }
}

.mm-listitem.active .nav-link {
    color: #fff;
    background: #9e0000;
}

.dropleft .dropdown-toggle::before {
    display: none;
}

.mm-listitem.dropright .dropdown-toggle::after {
    display: none;
}

.mm-listview.dropdown-menu {
    border: 0px;
}
@font-face {
  font-family: 'zkvh';
  src: url('../themes/zkvh/assets/font/zkvh.eot?3978540');
  src: url('../themes/zkvh/assets/font/zkvh.eot?3978540#iefix') format('embedded-opentype'),
       url('../themes/zkvh/assets/font/zkvh.woff2?3978540') format('woff2'),
       url('../themes/zkvh/assets/font/zkvh.woff?3978540') format('woff'),
       url('../themes/zkvh/assets/font/zkvh.ttf?3978540') format('truetype'),
       url('../themes/zkvh/assets/font/zkvh.svg?3978540#zkvh') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'zkvh';
    src: url('../font/zkvh.svg?3978540#zkvh') format('svg');
  }
}
*/
.zkvh-icons:before {
  font-family: "zkvh";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-left-open-big:before { content: '\e800'; } /* '' */
.icon-right-open-big:before { content: '\e801'; } /* '' */
.icon-phone:before { content: '\e802'; } /* '' */
.icon-mail:before { content: '\e803'; } /* '' */
.icon-arrow-d:before { content: '\e815'; } /* '' */
.icon-arrow-u:before { content: '\e816'; } /* '' */
.icon-aktualnosti:before { content: '\e818'; } /* '' */
.icon-biblioteka:before { content: '\e819'; } /* '' */
.icon-digitalna-bastina:before { content: '\e81a'; } /* '' */
.icon-izdavastvo:before { content: '\e81b'; } /* '' */
.icon-kulturna-bastina:before { content: '\e81c'; } /* '' */
.icon-likovna-manifestacija:before { content: '\e81d'; } /* '' */
.icon-manifestacije:before { content: '\e81e'; } /* '' */
.icon-muzicka-manifestacija:before { content: '\e81f'; } /* '' */
.icon-udruge:before { content: '\e820'; } /* '' */
.icon-twitter:before { content: '\f099'; } /* '' */
.icon-facebook:before { content: '\f09a'; } /* '' */
.icon-youtube:before { content: '\f16a'; } /* '' */
.icon-instagram:before { content: '\f16d'; } /* '' */

@font-face {
  font-family: 'zkvh-m';
  src: url('../themes/zkvh/assets/font/zkvh-m.eot?82229887');
  src: url('../themes/zkvh/assets/font/zkvh-m.eot?82229887#iefix') format('embedded-opentype'),
       url('../themes/zkvh/assets/font/zkvh-m.woff2?82229887') format('woff2'),
       url('../themes/zkvh/assets/font/zkvh-m.woff?82229887') format('woff'),
       url('../themes/zkvh/assets/font/zkvh-m.ttf?82229887') format('truetype'),
       url('../themes/zkvh/assets/font/zkvh-m.svg?82229887#zkvh-m') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'zkvh-m';
    src: url('../font/zkvh-m.svg?82229887#zkvh-m') format('svg');
  }
}
*/
.zkvh-m-icons:before {
  font-family: "zkvh-m";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-glazbene-manifestacije:before { content: '\e800'; } /* '' */
.icon-filmske-manifestacije:before { content: '\e801'; } /* '' */
.icon-gastronomske-manifestacije:before { content: '\e802'; } /* '' */
.icon-likovne-manifestacije:before { content: '\e803'; } /* '' */
.icon-knjizevne-manifestacije:before { content: '\e804'; } /* '' */
.icon-folklorne-manifestacije:before { content: '\e805'; } /* '' */
.icon-vjersko-kulturne-manifestacije:before { content: '\e82f'; } /* '' */
.icon-kazalisne-manifestacije:before { content: '\e83a'; } /* '' */

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box
}

.glide * {
  box-sizing: inherit
}

.glide__slides,
.glide__track {
  overflow: hidden
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform
}

.glide__slides--dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent
}

.glide__arrows,
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.glide__arrow {
  background-color: transparent;
  border: none;
  color: #444;
  cursor: pointer;
  display: block;
  line-height: 1;
  opacity: 1;
  position: absolute;
  top: 50%;
  transition: color .3s ease, opacity .3s ease;
  transform: translateY(-50%);
  z-index: 2
}

.glide__arrow--left {
  /* left: 0; */left: -60px;
}

.glide__arrow--right {
  /* right: 0; */
  /* right: -60px; */left: 1220px;
}

.glide__arrow--disabled {
  opacity: .33
}

.glide__arrow:hover {
  color: #3693d4
}

.hero {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px
}

@media (min-width:1024px) {
  .hero {
    margin: 0
  }
}

.hero__header {
  width: 100%
}

@media (max-width:1023px) {
  .hero__header {
    display: none;
  }
}

.hero__left {
  width: 100%
}

@media (min-width:1024px) {
  .hero__left {
    /* width: 820px; */width: 670px;
  }
}

.hero__slider.loading {
  min-height: 0;
  /* padding-bottom: 66.6666666667% */padding-bottom: 0px;
}

@media (min-width:1024px) {
  .hero__slider.loading {
    min-height: calc(100% - 29px);
    padding-bottom: 0
  }
}

.hero__slide {
  position: relative;
    background: #eee;
}

.hero .glide__arrow {
  top: 45%;
  /* height: 10%; */height: 60px;
  /* width: 10%; */width: 60px;
  font-size: 35px;
  line-height: 60px;
  text-align: center;
  opacity: .7;
  color: #9e0000;
}

.hero .glide__arrow:hover {
    opacity: 1
}

.hero .glide__arrow .icon {
  color: #fff;
  -webkit-filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .6));
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .6));
  opacity: .7;
  height: 30px;
  width: 30px;
  transition: opacity .3s ease
}

.hero .glide__arrow:hover .icon {
  opacity: .9
}

.hero__image {
  display: block;
  padding-bottom: 66.6666666667%;
  position: relative;
  height: 0;
  width: 100%;
}

.hero__image img {
  /* display: block;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover"; */
  /* position: absolute;
  top: 0;
  left: 0; */
  /* height: 100%;
  width: 100%; */

    width: auto;
    max-width: 670px;
    height: 100%;
    float: none;
    margin: 0px auto;
    display: block;
}

/* .hero__image img img {
  font-family: Arial
} */

.hero__image--no-pic {
  background-color: #e6e6e6
}

.hero__image--no-pic img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%)
}

.hero__image--no-pic img img {
  font-family: Arial
}

.hero__image picture {
  display: block
}

.hero__image img.nopic {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
  background-color: #e6e6e6
}

.hero__image img.nopic img {
  font-family: Arial
}

/* @media (min-width:1024px) {
  .hero__image,
  .hero__image img {
    border-radius: 10px 0 0 0
  }
} */

.hero__types {
  position: absolute;
  top: 5px;
  left: 5px
}

.hero__type {
  background-color: #fabb3d;
  border-bottom: 5px solid #e77800;
  color: #fff;
  font-size: 1.3rem;
  padding: 2px 15px;
  display: inline-block
}

.hero__type--video {
  background-color: #ddd;
  border-bottom: 5px solid #c3c3c3;
  color: #bc0000
}

.hero__type--live {
  background-color: #df0835;
  border-bottom: 5px solid #b60329
}

.hero__badge {
  background-color: #3693d4;
  font-size: 1.1rem;
  padding: 2px 10px;
  top: 5px;
  right: 5px;
  text-transform: uppercase
}

.hero__badge,
.hero__title {
  color: #fff;
  position: absolute;
}

.hero__info {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 10px 20px;
    z-index: 1;
    
}

.hero__slide:after {
    position: absolute;
    content: '';
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 50%, rgba(255,255,255,1) 90%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 50%,rgba(255,255,255,1) 90%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 50%,rgba(255,255,255,1) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.hero__info h2 {
    color: #9e0000;
    border: 0px;
    padding: 0px;
    font-size: 16px;
    line-height: 24px;
}

.hero__title {
  background-color: rgba(0, 0, 0, .7);
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 6px 10px 8px;
  bottom: 0;
  left: 0;
  width: 100%
}

.hero__desc {
  display: none
}

@media (min-width:1024px) {
  .hero__desc {
    color: #000;
    display: block;
    margin: 10px 0px 0px 0px;
    min-height: 50px;
    padding: 0px;
    text-align: justify;
  }
}

.hero__links {
  background-color: #50b6fe;
  border-radius: 0 0 0 10px;
  display: flex;
  justify-content: flex-end
}

@media (max-width:1199px) {
  .hero__links {
    border-radius: 0 0 3px 3px
  }
}

.hero__link {
  border-left: 1px solid #fff;
  color: #fff;
  font-size: 1.3rem;
  padding: 6px 8px;
  transition: background-color .3s ease
}

.hero__link:hover {
  background-color: rgba(0, 0, 0, .3);
  color: #fff
}

.hero__link:first-child {
  border-left: none
}

.hero__list {
  /* border-bottom: 3px solid #50b6fe; */
  width: 100%
}

.hero__list .title {
    /* margin-left: -12px; */
    margin: 15px 0px 20px 25px;
    border-left: 3px solid #9e0000;
}

.hero__list .articles__item {
    position: relative;
    border-bottom: 1px solid #656565;
    /* border-left: 6px solid transparent; */
    padding-left: 40px;
    /* padding-right: 5px; */
    /* background: #fff; */
    text-decoration: none;
    transition: background-color .3s ease, border-color .3s ease
}

.hero__list .articles__item--active:after {
    background: #fff !important;
    z-index: 0 !important;
    transition: all .3s ease;
    /* display: block; */
}

.hero__list .articles__item:after {
    /* background: #f00; */
    z-index: -1;
    transition: all .3s ease;
    /* display: none; */
}

.hero__list .articles__item:before {
    /* width: 35px; */
    /* background: green; */
    width: inherit;
}

.hero__list .articles__item--active {
  background-color: #fff;
  transition: all .3s ease;
  /* border-left-color: #9e0000; */
}

/* .hero__list .articles__item--active::before {
    position: absolute;
    content: '\e800';
    left: -25px;
    top: 40%;
    width: 15px;
    height: 20px;
    color: #9e0000;
    background: #f00;
    font-family: 'zkvh';
    text-align: center;
    font-size: 20px;
} */

.hero__list .articles__item--active::before {
    position: absolute;
    content: '';
    left: 25px;
    top: 15px;
    bottom: 15px;
    width: 3px;
    background: #9e0000;
}

.hero__list .articles__item:last-child {
  border-bottom: none
}

.hero__list .articles__item .articles__image:before {
    position: absolute;
    content: '';
    left: 0px;
    top: -1px;
    bottom: -1px;
    width: 40px;
    /* background: #f00; */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

@media (min-width:1024px) {
  .hero__list {
    /* padding-left: 35px; */
    /* width: 580px; */width: 550px;
  }
}


/* .article__more-photos {
  width: 100%;
  color: #fff;
  border: none;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 800
}

.article__image {
  position: relative
}

.articles__price-badge {
  position: absolute;
  top: 50px;
  right: 0;
  padding: 10px 20px;
  color: #fff;
  background-color: #d19a60;
  text-transform: uppercase;
  font-size: 30px
}

@media (max-width:539px) {
  .articles__price-badge {
    top: 40px
  }
}

.articles__photo-label {
  line-height: 30px;
  font-size: 1.4rem;
  text-transform: uppercase
} */

/* .articles__list--compact .articles__image {
  flex: 0 0 140px
} */

.articles__list--compact .articles__title {
  font-size: 1.2rem;
  line-height: 1.25
}

.articles__list--compact .articles__param {
  font-size: 1.1rem
}

.articles__list--compact .articles__param .icon {
  height: 9px;
  width: 9px
}

.articles__list--sidebar {
  padding: 7px 0
}

/* .articles__list--sidebar .articles__image {
  flex: 0 0 100px
} */

.articles__list--sidebar .articles__content {
  padding-right: 0
}

.articles__list--sidebar .articles__title {
  font-size: 1.3333rem;
  line-height: 1.25;
  word-break: break-word
}

.articles__list--sidebar .articles__text {
  word-break: break-word
}

.articles__list--sidebar .articles__params {
  width: 100%
}

.articles__list--sidebar .articles__param {
  font-size: 1.1rem
}

.articles__list--sidebar .articles__param .icon {
  height: 9px;
  width: 9px
}

.articles__list--sidebar .articles__param--align-right {
  margin-left: auto
}

.articles__list--sidebar-featured .articles__image {
  flex: 0 0 114px
}

/* @media (min-width:768px) {
  .articles__list--2-col {
    display: flex;
    flex-wrap: wrap;
    margin: -10px
  }
}

.articles__list--2-col .articles__col {
  width: 100%
}

@media (min-width:768px) {
  .articles__list--2-col .articles__col {
    margin: 10px;
    width: calc(50% - 20px)
  }
}

.articles__list--2-col .articles__image {
  flex: 0 0 80px
}

.articles__list--2-col .articles__title {
  font-size: 1.2rem;
  line-height: 1.25
}

.articles__list--2-col .articles__param {
  font-size: 1.1rem
}

.articles__list--2-col .articles__param .icon {
  height: 9px;
  width: 9px
} */

.articles__list--big {
  margin-bottom: 10px
}

.articles__list--big .articles__item {
  border-bottom: 1px dotted #999;
  padding: 10px 0
}

.articles__list--big .articles__item--no-border {
  border-bottom: none;
  padding-bottom: 0
}

.articles__list--big .articles__image {
  flex: 0 0 100px
}

.articles__list--big .articles__image--no-pic picture img {
  max-width: 50%;
  max-height: 50%
}

@media (min-width:540px) {
  .articles__list--big .articles__image {
    flex: 0 0 157px
  }
}

.articles__list--big .articles__title {
  font-size: 1.3rem;
  line-height: 1.125;
  margin-bottom: 6px
}

@media (min-width:768px) {
  .articles__list--big .articles__title {
    color: #3693d4;
    font-size: 1.6rem
  }
}

.articles__list--big .articles__param {
  font-size: 1.1rem
}

.articles__list--big .articles__param .icon {
  height: 9px;
  width: 9px
}

.articles__list--no-image .articles__content {
  padding-left: 0
}

.articles__list--no-image .articles__title {
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase
}

.articles__list--image-no-text {
  padding-bottom: 3px
}

.articles__list--image-no-text .articles__item {
  display: flex;
  padding: 0 0 10px
}

.articles__list--image-no-text .articles__image {
  flex: 0 0 73px
}

.articles__list--image-no-text .articles__image picture {
  padding-bottom: 75%
}

.articles__list--image-no-text .articles__title {
  font-size: 1.3333rem;
  font-weight: 800;
  line-height: 1.5rem
}

.articles__list--standalone .articles__item {
  border-bottom: none
}

.articles__list--standalone .articles__image {
  flex: 0 0 180px
}

.articles__more {
  color: #999
}

.articles a.articles__more {
  cursor: pointer
}

.articles a.articles__more:hover {
  color: #3db315
}

.articles__item {
  display: flex;
  padding: 15px 00px;
}

.articles__item.articles__promotion {
  background-color: #fff3b0;
  padding: 5px!important
}

.articles__item.articles__promotion .articles__title {
  padding-top: 5px
}

.articles__item--market .articles__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start
}

@media (max-width:419px) {
  .articles__item--market .articles__top {
    flex-direction: column;
    justify-content: flex-start
  }
}

.articles__item--market .articles__title {
  color: #2b9408;
  width: auto
}

@media (max-width:419px) {
  .articles__item--market .articles__title {
    margin-bottom: 2px
  }
}

.articles__item--market .articles__title:hover {
  color: #60c83e
}

.articles__item--market .articles__text {
  margin-bottom: 8px
}

@media (max-width:767px) {
  .articles__item--market .articles__text {
    display: block
  }
}

@media (max-width:419px) {
  .articles__item--market .articles__text {
    font-size: 12px
  }
}

.articles__item--market .articles__badges {
  padding-left: 0;
  margin-left: 0
}

@media (max-width:767px) {
  .articles__item--market .articles__badges {
    display: flex
  }
}

.articles__item--market .articles__badge {
  background-color: #60c83e;
  color: #fff;
  border-color: #2b9408;
  margin-left: 0;
  margin-right: 5px
}

@media (max-width:419px) {
  .articles__item--market .articles__badge {
    margin-bottom: 5px;
    font-size: 10px
  }
}

.articles__item--market .articles__params {
  align-items: center;
  padding-left: 10px
}

@media (max-width:767px) {
  .articles__item--market .articles__params {
    display: flex
  }
}

@media (max-width:419px) {
  .articles__item--market .articles__params {
    padding-left: 0
  }
}

.articles__item--market .articles__param {
  position: relative;
  margin-right: 5px
}

.articles__item--market .articles__param:after {
  content: "|";
  color: #b7b7b7;
  font-size: 1.1rem;
  margin-left: 5px;
  margin-bottom: 2px
}

.articles__item--market .articles__param:last-child:after {
  display: none
}

.articles__item--real-estate .articles__title {
  color: #444
}

.articles__item--real-estate .articles__title a {
  color: #1065ad
}

.articles__item--real-estate .articles__title a:hover {
  color: #3693d4
}

.articles__item--real-estate .articles__badge {
  background: none;
  border: none;
  color: #999
}

.articles__item--real-estate .articles__badge .icon {
  width: 12px;
  height: 12px
}

.articles__item--real-estate .articles__image {
  flex: 0 0 150px
}

.articles__item--new-year .articles__title {
  margin-bottom: 5px;
  color: #1065ad;
  font-size: 1.6rem
}

.articles__item--new-year .articles__title a {
  color: #1065ad;
  font-size: 1.6rem
}

.articles__item--new-year .articles__title a:hover {
  color: #3693d4
}

.articles__item--new-year .articles__image {
  flex: 0 0 240px
}

@media (max-width:539px) {
  .articles__item--new-year .articles__image {
    flex: 0 0 120px
  }
}

.articles__item--new-year .articles__text {
  margin-bottom: 6px;
  display: block!important
}

.articles__image {
  flex: 0 0 140px
}

.articles__image picture {
  display: block;
  padding-bottom: 66.6666666667%;
  position: relative;
  height: 0;
  width: 100%;
  overflow: hidden;
}

.articles__image picture img {
  /* display: block;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100% */
    width: auto;
    /* max-width: 140px; */
    height: 100%;
    float: none;
    margin: 0px auto;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    
}

.articles__image picture img img {
  font-family: Arial
}

.articles__image picture--no-pic {
  background-color: #e6e6e6
}

.articles__image picture--no-pic img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%)
}

.articles__image picture--no-pic img img {
  font-family: Arial
}

/* .articles__image img {
  border-radius: 5px
} */

.articles__image--no-pic picture {
  background-color: #e6e6e6;
  border-radius: 5px;
  border: 1px solid #ccc
}

.articles__image--no-pic picture img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
  top: 50%;
  left: 50%;
  size: 100% auto;
  transform: translate(-50%, -50%)
}

.articles__image--no-pic picture img img {
  font-family: Arial
}

.articles__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-left: 10px
}

.articles__content h2 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
    border: 0px;
    padding: 10px 0px;
    margin: 0px;

    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 85px;
}

.articles__title {
  color: #444;
  font-size: 1.5rem;
  line-height: 1.2
}

.articles__title--related {
  font-size: 1.33rem!important;
  font-weight: 800
}

.articles__text {
  color: #6a6a6a;
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 4px;
  text-align: justify
}

@media (max-width:767px) {
  .articles__text {
    display: none
  }
}

.articles__note {
  color: #b7b7b7;
  font-size: 1.1rem;
  line-height: 1.2;
  padding-bottom: 4px;
  text-transform: uppercase
}

.articles__bottom {
  display: flex
}

/* .articles__badges {
  display: none
}

@media (min-width:768px) {
  .articles__badges {
    display: flex;
    margin-left: auto;
    padding-left: 10px
  }
}

.articles__badge {
  background-color: #fabb3d;
  border: 1px solid #bc0000;
  font-size: 1.1rem;
  color: #fff;
  margin-left: 5px;
  padding: 0 6px;
  text-transform: uppercase
}

.articles__badge--video {
  background-color: #ddd;
  border-color: #c3c3c3;
  color: #bc0000
}

.articles__badge--live {
  background-color: #df0835;
  border-color: #b60329;
  color: #fff
}

.articles__params {
  color: #b7b7b7;
  display: none
}

@media (min-width:768px) {
  .articles__params {
    display: flex
  }
}

.articles__params--show-on-mobile {
  display: flex
}

.articles__param {
  align-items: center;
  display: flex;
  margin-right: 10px;
  padding-top: 2px
}

.articles__param .icon {
  margin-right: 4px;
  height: 11px;
  width: 11px;
  transform: translateY(1px)
} */

/* .articles__banners {
  margin-top: 10px;
  margin-bottom: 0
} */

.article__content {
  position: relative
}

@media (max-width:539px) {
  .article__content--real-estate .article__params {
    margin-bottom: 40px
  }
}

/* .article__gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -10px 10px
}

.article__gallery--4-on-mobile .article__gallery-item {
  width: calc(25% - 20px)
}

.article__gallery-item {
  margin: 10px;
  width: calc(50% - 20px)
}

@media (min-width:768px) {
  .article__gallery-item {
    width: calc(25% - 20px)
  }
}

.article__gallery-item picture {
  display: block;
  margin: 0 auto;
  max-width: 300px
}

.article__gallery-item img {
  border-radius: 5px;
  display: block;
  width: 100%
}

.article__gallery-more-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  width: 100%
}

.article__gallery-more {
  color: #3693d4
} */

/* .author-avatar {
  display: flex;
  align-items: center;
  justify-content: center
}

.author-avatar img {
  max-height: 250px
}

.author-info h4 {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #444
}

.author-info h5 a {
  color: #927556;
  font-weight: 600;
  font-size: 16px
}

.author-phones {
  display: flex;
  flex-wrap: wrap
}

.author-phones div {
  width: 100%;
  font-size: 14px;
  margin-bottom: 5px
}

.author-phones a {
  margin-right: 10px;
  color: #927556;
  font-weight: 600
} */

/* .featured-articles__list {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -10px 5px
}

@media (min-width:768px) {
  .featured-articles__list--4-col .featured-articles__item {
    width: calc(25% - 20px)
  }
}

.featured-articles__item {
  margin: 10px;
  position: relative;
  width: calc(50% - 20px)
}

@media (min-width:768px) {
  .featured-articles__item {
    width: calc(33.3333% - 20px)
  }
}

.featured-articles__image {
  display: block;
  padding-bottom: 57.5757575758%;
  position: relative;
  height: 0;
  width: 100%
}

.featured-articles__image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.featured-articles__image img img {
  font-family: Arial
}

.featured-articles__image--no-pic {
  background-color: #e6e6e6
}

.featured-articles__image--no-pic img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%)
}

.featured-articles__image--no-pic img img {
  font-family: Arial
}

.featured-articles__image img {
  border-radius: 5px
}

.featured-articles__image:after {
  background-image: linear-gradient(0deg, transparent 0, rgba(0, 0, 0, .9));
  border-radius: 5px 5px 0 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 100%
}

.featured-articles__comments,
.featured-articles__date {
  color: #b7b7b7;
  font-size: 1.1rem;
  padding: 4px;
  position: absolute;
  top: 0;
  z-index: 1
}

.featured-articles__comments .icon,
.featured-articles__date .icon {
  margin-right: 4px;
  height: 11px;
  width: 11px;
  transform: translateY(-1px)
}

.featured-articles__date {
  left: 0
}

.featured-articles__comments {
  right: 0
}

.featured-articles__title {
  background-color: rgba(0, 0, 0, .6);
  border-radius: 0 0 5px 5px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.1;
  padding: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%
} */

.photos .glide__arrow {
  color: #ff9600
}

.photos .glide__arrow--margin {
  margin-top: -10px
}

.photos .glide__arrow .icon {
  height: 20px;
  width: 20px
}

.photos .glide__arrow--left {
  left: -4px
}

.photos .glide__arrow--right {
  right: -4px
}

.photos__timeline {
  position: relative
}

/* .photos__timeline:before {
  background-color: #fabb3d;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  width: 100%;
  transform: translateY(-10px)
}

.photos__timeline-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center
}

.photos__timeline-item--active .photos__timeline-bubble {
  background-color: #fabb3d;
  color: #fff
}

.photos__timeline-bubble {
  align-items: center;
  background-color: #fff;
  border: 1px solid #fabb3d;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  line-height: 1;
  justify-content: center;
  margin: 0 auto;
  padding: 2px 4px;
  text-align: center;
  transition: background-color .3s ease, color .3s ease;
  height: 36px;
  width: 36px
}

.photos__timeline-day {
  font-size: .9333rem;
  line-height: 1.2;
  margin: 4px 0;
  text-transform: uppercase
} */

/* .photos__gallery {
  margin-bottom: 20px
}

.photos__gallery .glide__arrow {
  background-color: #ff9600;
  border-radius: 50%;
  color: #fff;
  height: 32px;
  width: 32px;
  top: 30%;
  padding: 6px
}

.photos__gallery .glide__arrow .icon {
  height: 20px;
  width: 20px
}

.photos__gallery .glide__arrow--left {
  left: -4px
}

.photos__gallery .glide__arrow--right {
  right: -4px
}

.photos__gallery-item {
  padding: 0 10px
}

.photos__gallery-image-wrapper {
  position: relative
}

.photos__gallery-image {
  display: block;
  padding-bottom: 57.5757575758%;
  position: relative;
  height: 0;
  width: 100%
}

.photos__gallery-image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.photos__gallery-image img img {
  font-family: Arial
}

.photos__gallery-image--no-pic {
  background-color: #e6e6e6
}

.photos__gallery-image--no-pic img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%)
}

.photos__gallery-image--no-pic img img {
  font-family: Arial
}

.photos__gallery-image--no-pic,
.photos__gallery-image img {
  border-radius: 5px
}

.photos__gallery-date {
  color: #fff;
  font-size: .9333rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: -18px;
  padding: 4px;
  position: relative;
  z-index: 1
}

.photos__gallery-location {
  color: #333;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  padding: 2px 0
}

.photos__gallery-event {
  color: #777;
  font-size: 1.1rem;
  line-height: 1.2;
  padding: 2px 0
} */

/* .tabs__header {
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  flex-wrap: wrap
}

.tabs__header--full-width .tabs__link {
  flex-grow: 1;
  text-align: center;
  cursor: pointer
} */

/* .tabs__link {
  border: 1px solid transparent;
  border-radius: 5px 5px 0 0;
  color: #555;
  margin: 0 2px -1px;
  padding: 8px 10px;
  transition: border-color .4s ease;
  cursor: pointer
}

.tabs__link:first-child {
  margin-left: 0
}

.tabs__link:last-child {
  margin-right: 0
}

.tabs__link--selected,
.tabs__link:hover {
  border-color: #e6e6e6 #e6e6e6 #fff
}

.tabs__link--selected {
  font-weight: 800
} */

/* .tabs__contents {
  margin: 15px 0
}

.tabs__contents--boxed {
  border: 1px solid #e6e6e6;
  border-width: 0 1px;
  margin: 0;
  padding: 5px
}

.tabs__content {
  display: none
}

.tabs__content .plain-text {
  font-size: 1.3rem;
  line-height: 1.42857
} */

/* .table {
  width: 100%
}

.table--striped tbody>tr:nth-child(odd) {
  background-color: #f9f9f9
}

.table th {
  border-bottom: 2px solid #c6463d;
  color: #c6463d;
  font-weight: 500;
  padding: 5px 2px;
  text-align: left
}

.table td {
  border-top: 1px solid #c6463d;
  padding: 5px 2px
}

.table td a {
  color: #444
}

.table td .icon {
  border-radius: 15px;
  margin-right: 6px;
  height: 18px;
  width: 18px
} */

/* .sidebar {
  display: none;
  flex-direction: column
}

.sidebar .title__text {
  padding: 4px 8px
}

@media (min-width:1024px) {
  .sidebar {
    display: flex;
    width: 315px
  }
}

.sidebar__block {
  margin-bottom: 20px;
  width: 100%
}

.sidebar__block .flatpickr-calendar {
  margin: 0 auto
}

.sidebar__banner {
  margin-left: auto;
  margin-right: auto
}

.sidebar__comment,
.sidebar__comments {
  display: flex;
  flex-direction: column
}

.sidebar__comment-title {
  background-color: #f3f3f3;
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 5px;
  padding: 2px;
  text-transform: uppercase
}

.sidebar__comment-text {
  font-size: 1.2rem;
  line-height: 1.35rem;
  text-align: justify
}

.sidebar__comment-date {
  align-items: center;
  color: #b7b7b7;
  display: flex;
  font-size: 1.1rem;
  padding: 2px 0
}

.sidebar__comment-date .icon {
  margin-right: 4px;
  height: 10px;
  width: 10px
}

.sidebar__cameras {
  display: flex;
  margin: -10px -10px 10px;
  flex-wrap: wrap
}

.sidebar__camera {
  margin: 10px;
  position: relative;
  width: calc(50% - 20px)
}

.sidebar__camera-image {
  display: block;
  padding-bottom: 61.2244897959%;
  position: relative;
  height: 0;
  width: 100%
}

.sidebar__camera-image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}

.sidebar__camera-image img img {
  font-family: Arial
}

.sidebar__camera-image--no-pic {
  background-color: #e6e6e6
}

.sidebar__camera-image--no-pic img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down";
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%)
}

.sidebar__camera-image--no-pic img img {
  font-family: Arial
}

.sidebar__camera-image--no-pic,
.sidebar__camera-image img {
  border-radius: 5px
}

.sidebar__camera-image:after {
  background-image: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .9));
  border-radius: 0 0 5px 5px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 18px;
  width: 100%
}

.sidebar__camera-name {
  color: #fff;
  font-size: 1.1333rem;
  font-weight: 800;
  padding: 3px 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  width: 100%
}

.sidebar__currency-note {
  margin-top: 5px
}

.sidebar__link {
  border-top: 1px dotted #ccc;
  padding: 4px 0;
  text-align: right
}

.sidebar__link a {
  color: #b3b3b3;
  font-size: 1.3rem
}

.sidebar__search-box {
  border-top: 4px solid #444;
  background-color: #f2f2f2;
  padding: 10px
}

.sidebar__search-box .select2 {
  margin-bottom: 10px
}

.sidebar__search-box .select2:last-child {
  margin-bottom: 0
}

.sidebar__tabs-contents {
  border: 1px solid #e6e6e6;
  border-top: 0 solid #e6e6e6;
  margin-top: 0;
  margin-bottom: 0;
  padding: 6px 6px 0
}

.sidebar__tabs-content .articles__list {
  padding-top: 0
}

.sidebar__infostud-cta {
  margin-bottom: 20px;
  text-align: center
}

.sidebar__infostud-cta .button {
  font-size: 1.4rem
}

.sidebar__infostud-banner {
  display: block;
  margin-bottom: 20px
}

.sidebar__infostud-banner img {
  display: block;
  width: 100%
}

.sidebar .ui-datepicker {
  width: 100%
}

.sidebar .ui-widget.ui-widget-content {
  border: none
}

.sidebar .ui-datepicker .ui-datepicker-header {
  background: transparent;
  border: none;
  color: #2b9408;
  font-weight: 500
}

.sidebar .ui-datepicker th {
  font-weight: 500;
  color: #2b9408
}

.sidebar .ui-datepicker td>* {
  background-color: transparent;
  text-align: center;
  border: none
}

.sidebar .ui-datepicker td>.ui-state-active,
.sidebar .ui-datepicker td>.ui-state-highlight {
  background-color: #60c83e;
  color: #fff
}

.sidebar .ui-datepicker td>.ui-state-hover {
  background-color: #2b9408;
  color: #fff
}

.sidebar .featured-articles__item {
  position: relative;
  display: block;
  margin-bottom: 10px;
  width: 100%
}

.sidebar .featured-articles__image {
  padding-bottom: 57.5757575758%;
  position: relative;
  width: 100%;
  height: 0
}

.sidebar .featured-articles__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.sidebar .featured-articles__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .7);
  color: #000;
  padding: 3px;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.9rem;
  transition: all .3s ease
} */

/* .weather {
  display: flex;
  flex-direction: column;
  margin: 15px 0 5px
}

.weather__title {
  margin-bottom: 10px;
  text-align: center
}

.weather__highlight {
  font-weight: 800
}

.weather__highlight .icon {
  color: #b7b19e
}

.weather__today {
  display: flex;
  margin-bottom: 4px
}

.weather__params {
  flex: 1 1 auto
}

.weather__param {
  align-items: center;
  display: flex
}

.weather__param .icon {
  color: #1f3f79;
  margin-right: 4px;
  height: 7px;
  width: 7px
}

.weather__image {
  display: block;
  margin-left: 15px
}

.weather__image img {
  display: block;
  width: 100%
}

.weather__upcoming {
  display: flex
}

.weather__upcoming .weather__image {
  margin-left: 0;
  margin-right: 4px
}

.weather__upcoming-day {
  align-items: center;
  display: flex;
  width: 50%
} */

.home__hero {
  margin-bottom: 20px;
  position: relative;
}

/* @media (max-width:1023px) {
  .home__latest {
    display: none
  }
}

.home__latest-title {
  color: #444;
  font-size: 1.4rem;
  line-height: 1.42857;
  margin-bottom: 9px;
  text-transform: uppercase
}

.home__latest-subtitle {
  border-bottom: 1px solid #3693d4;
  display: flex;
  margin-bottom: 4px;
  font-size: 1.0667rem;
  line-height: 1.7rem;
  padding-bottom: 1px;
  text-transform: uppercase
}

.home__latest-subtitle a,
.home__latest-subtitle span {
  background-color: #3693d4;
  color: #fff;
  padding: 2px 10px
}

.home__latest-slider {
  margin-bottom: 20px
}

.home__latest-slider .glide__arrow {
  top: 0;
  transform: translateY(0)
}

.home__latest-slider .glide__arrow--left {
  left: auto;
  right: 30px
} */

/* .home__events-slider {
  margin-bottom: 20px
}

.home__listings .plain-text a {
  color: #c6463d
}

.home__listings .plain-text a:hover {
  color: #444
} */






/* .title {
  border-bottom: 4px solid #50b6fe;
  margin-bottom: 6px
}

.title,
.title__text {
  align-items: center;
  display: flex
}

.title__text {
  background-color: #3693d4;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4286;
  margin-bottom: 0;
  padding: 2px 10px;
  text-transform: uppercase
}

.title__text .icon {
  margin-right: 10px;
  height: 14px;
  width: 14px
}

.title__text:hover {
  color: #fff
}

.title__params {
  margin-left: auto;
  padding-left: 10px
}

.title--blue {
  border-color: #50b6fe!important
}

.title--blue .title__text {
  background-color: #3693d4!important
}

.title--blue2 {
  border-color: #539cd1!important
}

.title--blue2 .title__text {
  background-color: #075288!important
}

.title--orange {
  border-color: #ffc066!important
}

.title--orange .title__text {
  background-color: #fabb3d!important
}

.title--red {
  border-color: #d5665e!important
}

.title--red .title__text {
  background-color: #c6463d!important
}

.title--green {
  border-color: #bfdb6a!important
}

.title--green .title__text {
  background-color: #9bcb07!important
}

.title--gray {
  border-color: #c2c2c2!important
}

.title--gray .title__text {
  background-color: #9c9c9c!important
}

.title--dark-blue {
  border-color: #539cd1!important
}

.title--dark-blue .title__text {
  background-color: #1f3f79!important
}

.title--dark-blue2 {
  border-color: #c2c2c2!important
}

.title--dark-blue2 .title__text {
  background-color: #1f3f79!important
}

.title--market {
  border-color: #60c83e!important
}

.title--market .title__text {
  background-color: #2b9408!important
}

.title--promo-blue {
  border-color: #2b76b0!important
}

.title--promo-blue .title__text {
  background-color: #508dbc!important
}

.title--sugradjani {
  border-color: #3bbcf5!important
}

.title--sugradjani .title__text {
  background-color: #3bbcf5!important
}

.title-box {
  background-color: #3693d4;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 15px;
  padding: 4px 6px;
  text-transform: uppercase
}

.title-box--green {
  background-color: #b2ca83
}

.title-box--sidebar {
  margin-bottom: -4px
} */


.hero__desc {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 65px;
}

/* width : 1330px ----------- */
@media only screen and (max-width: 1330px), only screen and (max-device-width: 1330px) {
    .glide__arrow--left {
        left: 0px;
    }

    .glide__arrow--right {
        left: 90%;
    }
}

/* width : 1250px ----------- */
@media only screen and (max-width: 1250px), only screen and (max-device-width: 1250px) {
    .home__hero {
        display: block;
        margin: 0px;
    }

    .hero__left {
        width: 580px;
        float: left;
    }

    .hero__list {
        width: auto !important;
        padding: 0px 0px 0px 580px;
    }

    .articles__image {
        flex: 0 0 111px;
    }

    .articles__content h2 {
        font-size: 16px;
        line-height: 22px;
        padding: 5px 0px 0px 0px;
        margin: 0px;
        height: 70px;
    }
}

/* width : 1200px ----------- */
@media only screen and (max-width: 1200px), only screen and (max-device-width: 1200px) {
    /* .hero__left {
        width: 650px;
    }

    .hero__list {
        padding: 0px 0px 0px 650px;
    }

    .articles__image {
        flex: 0 0 111px;
    }

    .articles__content h2 {
        height: 50px;
        -webkit-line-clamp: 2;
    }

    .articles__item {
        padding: 10px 0px;
    }

    .hero__list .articles__item--active::before {
        top: 35%;
    } */
}

/* width : 1080px ----------- */
@media only screen and (max-width: 1080px), only screen and (max-device-width: 1080px) {
    .hero__left {
        width: 500px;
    }

    .hero__list {
        padding: 0px 0px 0px 500px;
    }

    .articles__image {
        flex: 0 0 95px;
    }

    .articles__item {
        padding: 12px 0px;
    }

    .hero__list .title {
        margin: 0px 0px 10px 25px;
    }


    /* .hero__left {
        width: 580px;
    }

    .hero__list {
        padding: 0px 0px 0px 580px;
    }

    .articles__image {
        flex: 0 0 94px;
    } */
}


/* width : 950px ----------- */
@media only screen and (max-width: 950px), only screen and (max-device-width: 950px) {
    .home__hero {
        margin: 0px auto;
    }

    .hero__left {
        width: 100%;
    }

    .hero__list {
        display: block;
        clear: both;
        width: 100% !important;
        padding: 20px 0px 0px 0px;
        margin: 0px -15px;
    }

    .articles__image {
        flex: 0 0 100px;
    }

    .hero__list .articles__item--active::before {
        left: 15px;
        top: 15px;
        width: 3px;
        bottom: 15px;
        /* height: 20px; */
        font-size: 18px;
    }

    .hero__desc {
        display: block;
    }

    .hero__list .title {
        margin: 0px 0px 10px 15px;
    }

    .hero__list .articles__item {
        padding-left: 30px;
    }

    .hero__info h2 {
        margin: 0px 0px 10px 0px;
    }
}


/* width : 900px ----------- */
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px) {
    .hero__desc {
        display: none !important;
    }

    .hero__slide:after {
        background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%);
    }

    /* .hero__info {
        position: relative;
        padding: 10px 15px;
    }

    .hero__image img {
        width: 100%;
        * max-width: 800px;
        height: auto; *
    }

    .hero__image {
        padding-bottom: 0;
        height: 100%;
        max-height: 350px;
        min-height: 100%;
    }

    .hero__slide:after {
        background: -moz-linear-gradient(top, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 70%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 20%,rgba(255,255,255,1) 70%);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 20%,rgba(255,255,255,1) 70%);
    }

    .glide__slide {
        max-height: 470px;
    } */
}

/* width : 760px ----------- */
@media only screen and (max-width: 760px), only screen and (max-device-width: 760px) {
    .hero__slide:after {
        display: none;
    }

    .hero__info {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 10px 0px 0px 0px;
    }

    .hero__image {
        display: block;
        padding-bottom: 0;
        position: relative;
        height: 400px;
        width: 100%;
        background: #eee;
    }

    .hero__image img {
        width: auto;
        max-width: inherit;
        height: 400px;
        float: none;
        margin: 0px auto;
        display: block;
    }
}

/* width : 500px ----------- */
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
    .hero__image {
        height: 300px;
    }

    .hero__image img {
        height: 300px;
        /* position: absolute;
        left: -50%;
        top: 0;
        right: 0;
        margin: 0 0 0 25%; */
    }

    .glide__arrow--right {
        left: 86%;
    }
}

/* width : 390px ----------- */
@media only screen and (max-width: 390px), only screen and (max-device-width: 390px) {
    .hero__image {
        height: 220px;
    }

    .hero__image img {
        height: 220px;
    }

    .glide__arrow--right {
        left: 80%;
    }
}



/* width : 650px ----------- */
@media only screen and (max-width: 650px), only screen and (max-device-width: 650px) {
    /* .hero__slide:after {
        background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 75%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 75%);
    }

    .hero__image img {
        max-width: 450px;
    } */






    /* .hero__image {
        max-height: 280px;
    }
    .hero__slide:after {
        background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 60%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 60%);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 60%);
    } */

    
}

/* width : 480px ----------- */
@media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
    /* .hero__image img {
        max-width: 350px;
    }

    .hero__slide:after {
        background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 65%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 65%);
    } */



    
    
    /* .hero__image {
        max-height: 200px;
    }
    .hero__slide:after {
        background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 55%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 55%);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 55%);
    } */
}

@font-face {
  font-family: 'lg';
  src:  url("../themes/zkvh/assets/font/lg.eot?n1z373");
  src:  url("../themes/zkvh/assets/font/lg.eot?#iefixn1z373") format("embedded-opentype"), 
        url("../themes/zkvh/assets/font/lg.woff?n1z373") format("woff"), 
        url("../themes/zkvh/assets/font/lg.ttf?n1z373") format("truetype"), 
        url("../themes/zkvh/assets/font/lg.svg?n1z373#lg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.lg-icon {
  font-family: 'lg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 9999980;
}
.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF;
}
.lg-actions .lg-next {
  right: 20px;
}
.lg-actions .lg-next:before {
  content: "\e095";
}
.lg-actions .lg-prev {
  left: 20px;
}
.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 9999982;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
  color: #FFF;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 9999980;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 9999980;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}
@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}
.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}
.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}
.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 9999980;
  cursor: pointer;
}
.lg-outer .lg-has-vimeo .lg-video-play {
  background: url("../themes/zkvh/assets/img/vimeo-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url("../themes/zkvh/assets/img/vimeo-play.png") no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url("../themes/zkvh/assets/img/video-play.png") no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
  background: url("../themes/zkvh/assets/img/youtube-play.png") no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url("../themes/zkvh/assets/img/youtube-play.png") no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9999983;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}
#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
#lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 9999980;
  height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}
.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}
.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}
.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999981;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}
.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}
.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}
.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}
.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}
.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}
.lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}
.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
}
.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}
.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}
.lg-outer #lg-share {
  position: relative;
}
.lg-outer #lg-share:after {
  content: "\e80d";
}
.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}
.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}
.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}
.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}
.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}
.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}
.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}
.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999950;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}
.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.lg-outer .lg-item {
  background: url("../themes/zkvh/assets/img/loading.gif") no-repeat scroll center center transparent;
  display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 9999960;
}
.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-empty-html {
  display: none;
}
.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999940;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}

/*# sourceMappingURL=lightgallery.css.map */

/**
 * Swiper 7.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 24, 2021
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../themes/zkvh/assets/css/./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../themes/zkvh/assets/css/./fonts/slick.eot');
    src: url('../themes/zkvh/assets/css/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('../themes/zkvh/assets/css/./fonts/slick.woff') format('woff'), url('../themes/zkvh/assets/css/./fonts/slick.ttf') format('truetype'), url('../themes/zkvh/assets/css/./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    /* line-height: 0; */

    position: absolute;
    top: 50%;

    display: block;

    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    /* -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); */

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    /* background: transparent; */background: #eee;
    border-radius: 0px;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    /* background: transparent; */background: #eee;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
    color: #9e0000;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
    color: #a7a7a7;
}

.slick-arrow::after {
    display: none !important;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'zkvh';
    font-size: 30px;
    line-height: 40px;

    width: 40px;
    height: 40px;
    top: 0px;
    left: 0px;
    right: 0px;

    opacity: .75;
    color: #a7a7a7;

    /* -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg); */

    -webkit-transform: none;
    transform: none;

    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}

.slick-prev
{
    left: -60px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\e800';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -60px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\e801';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
/* .slick-dotted.slick-slider
{
    margin-bottom: 30px;
} */

.slick-dots
{
    position: absolute;
    top: 28px;
    right: 0px;

    /* background: #fc0; */

    display: block;

    /* width: 100%; */
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;
    vertical-align: middle;

    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 10px;
    height: 10px;
    padding: 0px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    /* font-family: 'slick'; */
    /* font-size: 6px; */
    line-height: 10px;

    position: absolute;
    top: 0;
    left: 0;

    width: 10px;
    height: 10px;

    /* content: '•'; */content: '';
    text-align: center;

    /* opacity: .25; */
    color: transparent;
    background: #515151;

    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}
.slick-dots li.slick-active button:before
{
    /* opacity: .75; */
    color: transparent;
    background: #9e0000;
}


.slider-box-content {
    height: 520px;
    padding: 15px 0px;
}

.slider-box-ls {
    float: left;
    width: 700px;
}

.slider-box-ls .image-content-ls {
    position: relative;
    width: 700px;
    height: 495px;
    float: left;
    margin: 0px;
    background: #eee;
    overflow: hidden;
}

.slider-box-ls .image-content-ls .img-box {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider-box-ls .image-content-ls img {
    width: auto;
    /* max-width: 700px; */
    height: 100%;
    float: none;
    margin: 0px auto;
    /* display: block; */
    display: none;
}

.slider-box-ls .image-content-ls:after {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 65%;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.slider-box-ls .slider-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 20px;
    z-index: 2;
}

.slider-box-ls .slider-info h2 {
    padding: 0px;
    margin: 0px 0px 20px 0px;
    border: 0px;
    background: none !important;
}

.slider-box-ls .slider-info p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 75px;
    padding: 0px;
    margin: 0px;
}




.slider-box-rs {
    float: left;
    width: 520px;
    height: 100%;
    padding: 0px 0px 0px 20px;
}

.slider-box-rs h2 {
    margin: 0px 0px 20px 0px;
}

.slider-ls-list {
    display: block;
    clear: both;
    width: 100%;
    float: left;
    padding: 15px 0px 15px 15px;
    border-bottom: 1px solid #656565;
    position: relative;
}

.slider-ls-list:before {
    position: absolute;
    content: '';
    left: -20px;
    top: 0px;
    bottom: -1px;
    width: 20px;
    background: transparent;
}

.slider-ls-list:last-child {
    border-bottom: 0px;
}

.slider-ls-list .image-content {
    position: relative;
    width: 150px;
    height: 120px;
    overflow: hidden;
    float: left;
    margin: 0px 20px 0px 0px;
    /* background: #eee; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #eee;
}

.slider-ls-list .image-content img {
    width: auto;
    /* max-width: 150px; */
    height: 100%;
    float: none;
    margin: 0px auto;
    /* display: block; */
    display: none;
}

.slider-ls-list .image-content .img-box {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider-ls-list h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 96px;
    line-height: 22px;
    padding: 10px 0px 0px 0px;
    margin: 0px;
}


.slider-ls-list .content-wrapper-link:after {
    position: absolute;
    content: '';
    left: 0px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: transparent;
    z-index: 9;
}

.slider-ls-list:hover, .slider-ls-list.active {
    background: #fff;
}

.slider-ls-list:hover:before, .slider-ls-list.active:before {
    background: #fff;
}

.slider-ls-list:hover .content-wrapper-link:after, .slider-ls-list.active .content-wrapper-link:after {
    background: #9e0000;
}

.slider-ls-list:hover h3, .slider-ls-list.active h3 {
    color: #9e0000;
}


/* width : 1350px ----------- */
@media only screen and (max-width: 1350px), only screen and (max-device-width: 1350px) {
    .slider-box-content {
        height: 480px;
    }

    .slider-box-ls {
        width: 500px;
    }

    .slider-box-ls .image-content-ls {
        width: 500px;
        height: 453px;
    }

    .slider-box-ls .slider-info h2 {
        font-size: 18px;
        line-height: 28px;
        margin: 0px 0px 15px 0px;
    }

    .slider-box-ls .slider-info p {
        font-size: 15px;
        -webkit-line-clamp: 2;
        height: 50px;
    }

    .slider-box-rs {
        float: none;
        width: inherit;
        height: 100%;
        padding: 0px 50px 0px 520px;
    }

    .slider-ls-list {
        clear: none;
    }

    .slider-ls-list .image-content {
        width: 120px;
        height: 100px;
    }

    .slick-next {
        right: 0px;
    }

    .slick-prev {
        left: 0px;
    }
}

/* width : 992px ----------- */
@media only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
    .slider-box-content {
        height: initial;
    }

    .slider-box-ls {
        width: 100%;
    }

    .slider-box-ls .image-content-ls {
        width: 100%;
    }

    .slider-box-rs {
        width: 100%;
        padding: 20px 0px 0px 0px;
        float: left;
    }

    .slick-dots {
        top: auto;
        bottom: 442px;
    }

    .slick-prev {
        left: 140px;
        margin: 28px 0px 0px 0px;
    }

    .slick-next {
        right: auto;
        left: 180px;
        margin: 28px 0px 0px 0px;
    }

    .slider-ls-list h3 {
        padding-right: 10px !important;
    }

    .slider-ls-list:hover:before, .slider-ls-list.active:before {
        background: transparent;
    }
}


/* width : 750px ----------- */
@media only screen and (max-width: 750px), only screen and (max-device-width: 750px) {
    .slider-ls-list .image-content {
        width: 100px;
        height: 80px;
        margin: 0px 10px 0px 0px;
    }

    .slider-ls-list {
        padding: 10px 0px 10px 15px;
    }

    .slider-ls-list h3 {
        -webkit-line-clamp: 3;
        height: 70px;
        padding: 5px 0px 0px 0px;
        font-size: 15px;
        font-weight: 600;
    }

    .slider-ls-list .content-wrapper-link:after {
        top: 10px;
        bottom: 10px;
    }

    .slick-dots {
        bottom: 353px;
    }

    .slider-box-ls .image-content-ls {
        height: 350px;
    }

    .slider-box-ls .slider-info p {
        -webkit-line-clamp: 2;
        height: 45px;
    }

    .slick-prev, .slick-next {
        margin: 22px 0px 0px 0px;
    }
}

/* width : 500px ----------- */
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) {
    .slider-box-ls .image-content-ls {
        padding: 0px 0px 70px 0px;
    }
    .slider-box-ls .slider-info {
        position: relative;
        padding: 10px 20px 10px 20px;
    }

    .slider-box-ls .slider-info h2 {
        font-size: 16px;
        line-height: 26px;
        margin: 0px;

        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 50px;
    }

    .slider-box-ls .slider-info p, .slider-box-ls .slider-info div {
        display: none;
    }

    .slider-box-ls .image-content-ls:after {
        display: none;
    }

    .slider-box-ls .image-content-ls {
        height: 300px;
    }

    .slick-prev, .slick-next {
        margin: -5px 0px 0px 0px;
    }
}