/* Menu Appearance */
.pushy {
  position: fixed;
  width: 270px;
  height: 100%;
  top: 0;
  z-index: 1001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--black);
}
.pushy .mob-menu-list a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  padding: 13px 24px;
}
.pushy .mob-menu-list a.active {
  color: #BA861D;
}
.pushy .mob-menu-list ul li ul li a {
  display: block;
  position: relative;
  color: #292929;
  padding: 12px 0 12px 36px;
  font-size: 16px;
}
.pushy .mob-menu-list ul li ul li a::before {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background: #BA861D;
    position: absolute;
    left: 14px;
    top: 21px;
}
.mob-menu-list {
  margin-top: 13px;
}
.pushy ul li {
  margin-bottom: 0;
  padding-left: 0;
}
.pushy .mob-menu-list a.selected {
  color: var(--teal300);
  text-decoration: none;
}
.pushy .mob-menu-list a:hover {
  text-decoration: none;
}
.pushy ul {
  padding: 0;
}
.pushy ul:first-child {
  margin-top: 10px;
}
.pushy li {
  list-style-type: none;
}
.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;
  padding: 12px 16px 12px 16px;
}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-120%, 0, 0);
  -ms-transform: translate3d(-120%, 0, 0);
  transform: translate3d(-120%, 0, 0);
}

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

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

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 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.5s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.5s 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: 1000;
	/*background-color: rgba(0, 0, 0, 0.8);*/
	background-color: rgba(0, 0, 0, 0);
	-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-submenu {
  /* Submenu Buttons */
  /* Submenu Icon */
}
.pushy-submenu ul {
  padding-left: 15px;
  transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}
.pushy-submenu button {
  width: 100%;
  max-width: 350px;
  color: var(--white);
  padding: 13px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.pushy-submenu button a {
  padding: 0;
}
.pushy-submenu button.selected {
  color: var(--teal300);
}
.pushy-submenu > a,
.pushy-submenu > button {
  position: relative;
}
.pushy-submenu > a::after,
.pushy-submenu > button::after {
  content: '';
  display: block;
  height: 8px;
  width: 11px;
  position: absolute;
  top: 50%;
  left: 6px;
  background: url("/images/arrow-m.svg") no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: transform 0.2s;
}

/* Submenu Movement */
.pushy-submenu-closed ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open ul {
  max-height: 1000px;
  visibility: visible;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
}
.pushy-submenu-open a::after,
.pushy-submenu-open button::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.menu-close {
  width: 40px;
  height: 40px;
  background: url(/images/close.svg) center center no-repeat;			
  cursor: pointer;
  margin-bottom: 12px;
}
#menu-callback-button {
  margin: 50px 0 0 0;
}
#phone-contact-m a {
  font-size: 16px;
  display: block;
  color: #000000;
  padding: 0;
  text-decoration: none;
}
.clear {
  clear: both;
}
.mobcenter {
  text-align: center;
}
.pushy-content .button.outline {
  width: 100%;
}
.pushy-flex {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pushy-social {
  margin: 0 16px;
  padding: 32px 0;
}
.pushy-social-title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: normal;
  color: var(--white);
}
.pushy-social-icon {
  display: block;
  width: 36px;
  height: 36px;
}
.pushy-social-icon:first-child {
  margin-right: 24px;
}
.pushy-social-wrap {
  display: flex;
  align-items: center;
}