/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
/* menu only on image background */
  position: fixed;
  height: calc(100vh - 5.1rem);
/*  height: -webkit-fill-available;*/
  width: 100vw;
  /* max-width: 500px; */
  top: 5.1rem;
  padding: 0;
  z-index: 9999;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s;
  /* box-shadow: -4px 0 4px -3px rgba(0,0,0,0.15) inset; */
}
.pushy-open-left .pushy {
    max-height: calc(100vh - 5.1rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
}
@media (max-width: 574px) {
    .pushy {
        height: calc(100vh - 4.8rem);
        top: 4.8rem;
    }
    .pushy-open-left .pushy {
        max-height: calc(100vh - 4.8rem);
    }
}
.pushy ul {
    padding: 0;
    position: relative;
    text-align: left;
    background: 0 0;
    margin-left:0;
    list-style: none;
    margin-bottom: 0
}
.pushy ul li {
    display: flex;
    width: 100%;
    padding: 0;
    clear: both;
    align-items: center;
    flex-wrap: wrap;
}
.pushy ul.pushy-content {
    margin: 2.5rem 0 1.5rem;
    /* padding: 0 1rem; */
}
.pushy ul > li:last-child {
    margin-bottom:0
}
.pushy ul.pushy-content li.empty_meny_item {
}
.pushy ul.pushy-content li.empty_meny_item a {
    display: none;
}
/* header#masthead .pushy li a {
    font-weight: bold;
    font-size: 18px;
    color: #030E18;
    line-height: 1;
    display: inline-block;
    padding: 6px 0;
    text-decoration: none;
}
.pushy ul.sub-menu li {
    border-top:none;
} */
/* header#masthead.pushy ul.sub-menu li a {
    font-size: 15px;
    padding: 5px 0;
}
header#masthead .pushy li:hover > a, header#masthead .pushy li.current_page_item > a, header#masthead .pushy li.pushy-submenu-open > a,
header#masthead .pushy li.current_page_parent > a, header#masthead .pushy li.current-menu-item > a {
    color: #0768B2;
    text-decoration: none;
} */
.pushy .menu-title {
    margin: 0 0 1rem;
    text-align: left;
    /* background-color: #fff */
}
.pushy .menu-title a.site-title {
    position: relative;
    display: inline-block;
}
.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;
  opacity: 0;
  transform: rotate(-8deg) scale(1.5);
  transform-origin: 0% 0% 0px;
  transition: all 0s;
}
/**/
body.pushy-open-left {
	overflow-y: hidden
}
/* Menu Movement */
/* .pushy-left {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
} */

.pushy-right {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
}

/* .pushy-left {
  -webkit-transform: translate3d(0, -100vh, 0);
  -ms-transform: translate3d(0, -100vh, 0);
  transform: translate3d(0, -100vh, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(100vh, 0, 0);
  -ms-transform: translate3d(100vh, 0, 0);
  transform: translate3d(100vh, 0, 0);
}


.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
} */
.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
  opacity: 1;
  transform: rotate(0) scale(1);
  transition: all 0.5s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Menu Transitions */
/* #container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
} */


/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Submenu Appearance */
.pushy ul .pushy-submenu {
    position: relative;
  /* Submenu Buttons */
  /* Submenu Icon */
}
/* .pushy ul .pushy-submenu.pushy-submenu-open {
    padding-bottom: 10px
} */
.pushy-submenu > ul {
    padding-left: 1rem;
    padding-top: 0.5rem;
  width: 100%;
  transition: max-height 0.4s ease-in-out, visibility 0.2s ease-in-out, opacity 0.4s;
}
.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}
.pushy-submenu button {
  width: 100%;
  color: rgba(255,255,255,0.8);
  padding: 15px 30px;
  text-align: left;
  background: transparent;
  border: 0;
}
.pushy-submenu button:hover {
  color: rgba(255,255,255,1);
}

.pushy li > a:first-child {
  /* margin-right: 5px; */
  word-break: keep-all;
  hyphens: initial;
}
/* .pushy-submenu > a.open_submenu {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  top: 16px;
  background: url("../img/chevron-thin-right.svg") no-repeat center;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s;
  border:none;
  padding:0!important
} */
header#masthead .pushy li:hover > .open_submenu {
    text-decoration: none
}
/* Submenu Movement */
.pushy-submenu-closed > ul {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    padding-top: 0;
}
.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open > ul {
  max-height: 10000px;
  visibility: visible;
  opacity: 1;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
}
.pushy-submenu-open > .open_submenu {
  transform-origin: center center;
  transform: rotate(180deg) translate(0,-0.085rem);
  text-decoration: none;
}
.sub-menu .pushy-submenu-open > .open_submenu {
  transform: rotate(180deg) translate(0,0)
}
.sub-menu .pushy-submenu-open > ul {
	padding-bottom: 1rem;
    padding-top: 0;
}
/**/
.pushy .menu-title {
    padding: 1rem 42px 1rem 0;
    height: 75px;
    position: relative;
}
.pushy .container {
    overflow-x:hidden;
}
.ws_desktop .pushy .menu-title {
    padding: 1rem 25px 1rem 0;
}
.pushy .menu-title:before {
    content: '';
    position: absolute;
    left: -20%;
    right:-20%;
    bottom:0;
    height: 1px;
    background-color: var(--menu-hover)
}
.pushy .menu-title a.site-title {
	width: 3.25rem;
}

@media (max-width:767px) {
    .pushy .menu-title {
        height: 77px;
        padding-right: 40px
    }
    /* .pushy .menu-title {
        padding: 1rem 80px 1rem 1rem;
    } */
}
