/*! 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 {
  position: fixed;
  height: 100%;
/*  height: -webkit-fill-available;*/
  width: 100%;
  max-width: 768px;
  top: 0;
  padding: 0;
  z-index: 9999;
  background: #105B74;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 3px 0 8px rgba(0,0,0,0.2)
}
.pushy ul {
    padding: 0;
    position: relative;
    text-align: left;
    background: 0 0;
    margin-left:0;
    margin-bottom: 0
}
.pushy ul.pushy-content {
    margin-bottom:0;
	padding-left:0
}
.pushy ul li {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 18px 0;
    clear: both;
    align-items: center;
    flex-wrap: wrap;
}
.pushy li a {
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    color: #115B74;
    display: block;
    width: calc(100% - 46px);
    padding: 4px 0;
    text-decoration: none;
}
.pushy-menu-contact ul.pushy-content > li > a {
/*    font-family: 'Open Sans', sans-serif;*/
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 16px;
    font-weight: bold;
}
.pushy ul.sub-menu li {
    border-top:none;
    margin: 6px 0;
}
.pushy ul.sub-menu > li:last-child {
    margin-bottom: 6px
}
.pushy ul.sub-menu li a {
    padding: 5px 0;
}
.pushy  li:hover > a, .pushy li.current_page_item > a, .pushy li.pushy-submenu-open > a,
.pushy li.current_page_parent > a, .pushy li.current-menu-item > a {
    color: #FE9000;
    opacity: 1;
    text-decoration: none;
}
.pushy .menu-title {
    margin: 0 0 6px;
    text-align: left;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #4DC0E5 */
}
.pushy .menu-title a {
    display: block;
}
.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}
.pushy-content {
  visibility: hidden;
}
/**/
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-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;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Submenu Appearance */
.pushy ul .pushy-submenu {
    position: relative;
}
.pushy-submenu > ul {
  padding-left: 16px;
  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: 10px;
  word-break: keep-all;
  hyphens: initial;
}
.pushy .language_switcher li a {
    margin-right: 0;
    width: 100%
}
.pushy-submenu > div.external {
  position: relative;
  display: block;
  height: 26px;
  width: 36px;
  top: 2px;
  background: url("../img/chevron-down.svg") no-repeat center;
  background-size: 22px;
  transition: transform 0.2s;
  border:none;
  padding:0!important
}
.current-menu-item.pushy-submenu > div.external {
    opacity: 0.7
}
/*
.pushy ul.sub-menu .pushy-submenu > div.external {
    top: 10px;
}
*/
/* Submenu Movement */
.pushy-submenu-closed > ul {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
}
.pushy-submenu-closed .pushy-link {
  opacity: 0;
}
ul.pushy-content > .pushy-submenu-open {
  /* Submenu Icon */
  border-bottom: 1px solid #ccc;
}
.pushy-submenu-open > ul {
  max-height: 10000px;
  visibility: visible;
  opacity: 1;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
}
.pushy-submenu-open > div.external {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
/**/
.pushy-menu-contact {
    position: relative;
    margin-left: 7px;
    margin-right: 7px;
    height: calc(100% - 122px);
    overflow-y:scroll;
    background-color: #E9EAEC;
    border-radius: 5px;
    padding:4px 12px 4px 24px;
}
@supports not selector(::-webkit-scrollbar) {
  .pushy-menu-contact {
    scrollbar-width: thin;
    scrollbar-color: #bbb transparent;
  }
}
.pushy-menu-contact::-webkit-scrollbar {
    width: 5px!important;
}
.pushy-menu-contact::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: transparent!important;
}
.pushy-menu-contact::-webkit-scrollbar-thumb {
    border-radius: 5px!important;
    background-color: #bbb!important;
	/* background-clip: padding-box!important; */
}

@media screen and (max-width: 991px) and (min-width: 768px) and (orientation:landscape) {
    .pushy {
        padding-bottom: 10px;
        overflow-y: auto;
    }
    .pushy-menu-contact {
        /* max-height: 270px; */
        height: calc(100% - 150px);
    }
}
@media screen and (min-width: 992px) {
    .pushy {
        padding-bottom: 10px;
    }
    .pushy-menu-contact {
        height: calc(100vh - 160px);
    }
}
@media screen and (min-width: 768px) and (orientation:portrait) {
    .pushy {
        padding-bottom: 10px;
    }
    .pushy-menu-contact {
        height: calc(100vh - 160px);
    }
}


@media (max-width:767px) {
    .pushy .menu-title > a {
        width: 130px;
    }
    .pushy .menu-title {
        padding: 7px 60px 7px 15px
    }
    .pushy {
        padding-bottom: 140px
    }
    .pushy .contact_wrap_hd.contact_mobile {
        text-align: center;
        align-items: center;
        padding-bottom: 15px;
    }

    .pushy .header_user_block {
        position: absolute;
        bottom: 8px;
        left: 15px;
        right: 15px;
        flex-direction: column;
    }
    .pushy .header_user_block > * {
        width: 100%;
        margin: 0 0 10px;
    }

}
@media (min-width:768px) {
    .pushy .menu-title {
        padding:8px 70px 8px 15px;
    }
    .pushy .menu-title > a {
        width: 200px;
    }
}
