.menu-wrap a {
  color: #242c51;
  line-height: 40px;
  font-size: 18px;
  text-transform: none;
  font-weight: 400;
  display: block;
}
.menu-wrap a:hover,
.menu-wrap a:focus {
  color: #ef902f;
}

.content-wrap{
  display: block;
  width: 100%;
}
.content {
  background: #FFFFFF;
}

.content::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5) !important;
  content: '';
  opacity: 0;
  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0);
  -webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
  transition: opacity 0.4s, transform 0s 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
  transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Menu Button */
.menu-button {
    position: relative;
    z-index: 9999;
    margin: 1em;
    padding: 0;
    width: 2.3em;
    height: 1.5em;
    border: none;
    text-indent: 2.5em;
    font-size: 1.7em;
    color: transparent;
    background: transparent;
    transition: all .2s;
    left: -0.5em;
    top: 0.1em;
    display: none;
}
#open-button.open{
  width: 2.5em;
}

/*.menu-button.open,
.menu-button.fixed{
    position: fixed;
}*/

.menu-button.fixed{
    margin-top: 0.5em;
}

/* Icon 4 */

.menu-button #nav-icon4 {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  bottom: 0.1em;
  left: 0.5em;
/*   margin: 50px auto; */
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.menu-button #nav-icon4 span {
  display: block;
  position: absolute;
  height: 20%;
  width: 100%;
  background: #FFF;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.menu-button.fixed #nav-icon4 span{
  background: #AFAFAF ;
}

.menu-button #nav-icon4.open {

}

.menu-button #nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-button #nav-icon4 span:nth-child(2) {
  top: 40%;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.menu-button #nav-icon4 span:nth-child(3) {
  top: 78%;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.show-menu .menu-button.open #nav-icon4 span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -20%;
  left: 13%;
  height: 0.05em;
  background: #242143;
  font-size: 7em;
}

.show-menu .menu-button.open #nav-icon4 span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.show-menu .menu-button.open #nav-icon4 span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 100%;
  left: 13%;
  height: 0.05em;
  background: #242143;
  font-size: 7em;
}

.menu-button:hover {
    opacity: 1;
}

/* Close Button */
.close-button {
    width: 3em;
    height: 3em;
    position: absolute;
    left: 3em;
    top: 3em;
    overflow: hidden;
    text-indent: 1em;
    font-size: 0.75em;
    border: none;
    background: transparent;
    color: transparent;
}

.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #898989;
}

.close-button::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-button::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
    position: fixed;
    z-index: 9000;
    width: 360px;
    height: 100%;
    background: #FFF;
    padding: 8em 2.5em 0;
    font-size: 1.15em;
    -webkit-transform: translate3d(-360px,0,0);
    transform: translate3d(-360px,0,0);
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.menu {
    height: 100%;
}


/* Shown menu */
.show-menu .menu-wrap {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.show-menu .content::before {
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.left-menu-logos{
    margin:100px 0 0 0;
}
.left-menu-logos,
.left-menu-logos ul{
    float: left;
    width: 100%;
}
.left-menu-logos ul li{
    float: left;
    margin:0 30px 30px 0;
}
.left-menu-logos ul li:first-child{
    width: 100%;
}
.show-menu .banner--clone{
  z-index: 0;
}

.store-hours{display: none;}
.header-direction { line-height: 36px;}


/***** Kalai ****/
/*min-width 641px and max-width 1024px, use when QAing tablet-only issues*/
@media only screen and (min-width: 40.063em) and (max-width: 64em) {

}
/*max-width 640px, mobile-only styles, use when QAing mobile issues*/
@media only screen and (min-width: 0px) and (max-width: 767px) {

  .menu-button {
    display: block;
  }
  .banner--clone {
    background: none;
  }
  .mobile-logoblocks-view {
    float: left;
    width: 83%;
    position: relative;
    z-index: 9999;
  }
  .show-menu .mobile-logoblocks-view{
    z-index: inherit;
  }
  .mobile-logoblocks {
    position: absolute;
    left: 50px;
    top: 0px;
    width: 100%;
  }
  .icon-list.page-scroll a.WB_Logo1.desk-logo {
    float: left;
    width: 100%;
    margin: 0 0 50px;
  }
  .menu .icon-list.page-scroll .menu {
    float: left;
    width: 100%;
  }
  .menu-button #nav-icon4 span:nth-child(2) {
    top: 40%;
  }
  .menu-button #nav-icon4 span:nth-child(3) {
    top: 80%;
  }
  .header-contactright .header-nav-right {
    margin-top: 4px;
    margin-right: 15px;

  }
  .header-contactright a.WB_Logo.desk-logo,
  .header-contactright a.WB_Logo.desk-logo img {
    display: inline-block;
    width: 100%;
  }
  .header-contactright a.WB_Logo.desk-logo img {
    /*width: 27%;*/
    width: 195px;
  }
  .mobile-logoblocks h3 {
    color: #fff;
    margin: -6px 0 0 0px;
    float: left;
    width: 100%;
    text-align: center;
    font-family: "FuturaMedium";
    text-transform: uppercase;
    font-size: 15px !important;
    font-weight: bold;
  }
  .mobile-menu {
    float: left;
    width: 100%;
    height: 80px;
    background: rgba(36, 33, 67, 1);
  }
  .header-contactright .header-direction:hover .store-hours{
    left: -170px;
  }
  .header-direction:hover .store-hours::before {
    left: 173px;
  }
  .menu-wrap {
    padding: 2em 2.5em 0;
  }
  .header-social-icons {
    float: left;
    width: 100%;
    margin: 25px 0 10px 0;
    padding: 0px;
    text-align: center;
    line-height: 60px;
  }
  .header-social-icons a {
    display: inline-block;
  }
  .header-social-icons a i {
    font-size: 24px;
  }
  .menu-button {
    font-size: 16px;
  }
  .menu-wrap a {
    height: 30px;
  }
  .banner--stick .header-cityname, .banner--stick .header-nav-right .fa-phone, .banner--stick .header-nav-right .fa-map-marker, .banner--stick .header-nav-right .fa-calendar {
    color: #fff;
  }
  .banner--unstick .menu-button,
  .menu-button {
    top: 0px;
  }
  .banner--stick .menu-button{
    top: -3px;
    position: fixed;
  }
  .banner--unstick .menu-button.open {
    position: relative;
  }
  .banner--stick .menu-button.fixed {
    position: fixed;
  }
  .BG_headers1 .menu-button {
    top: -3px;
    position: fixed;
  }
  /*.header-contactright a.WB_Logo.desk-logo img {
    width: 50%;
  }*/
  .mobile-logoblocks h3 {
    color: #fff;
    margin: -10px 0 0 0px;
    float: left;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .menu-wrap {
    overflow-y: scroll;
    width: 320px;
  }
  .menu-wrap ul li { text-align: center;}
  #myCarousel .carousel-control .icon-prev i, #myCarousel .carousel-control .icon-next i { font-size: 28px;}
  /*.store-hours-mobile { width: 100%; right: none; left: none; transform: translateX(-120%);  }*/
  .store-hours-mobile::before { display: none;}
  .header-nav-right { position: unset;}
  .header-direction, .header-phone { position: unset;}
  .store-hours-mobile { left: 50%; transform:translateX(-50%); right: unset; top: 80px;}
  .footer-address-icons { text-align: center;}
  .footer-address-icons a i { font-size: 24px;}
  .footer-inner-left .footer-inner-wrapper span { float: left; width: 100%; text-align: center;}
  .carousel-control.right { right: 4px !important;}
  .header-nav-right .fa-phone { margin: 0 5px 0 0; }
  .header-nav-right .fa-map-marker,
  .header-nav-right .fa-calendar {  margin: 0 5px 0 0;}
  .header-nav-right .fa-phone, .header-nav-right .fa-map-marker, .header-nav-right .fa-calendar {
    font-size: 16px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
    .mobile-menu {
      background: #242c51;
    }
}
@media only screen and (min-width: 0px) and (max-width: 480px) {
  /*.header-contactright a.WB_Logo.desk-logo img {
    width: 50%;
  }*/
  .mobile-logoblocks {
    width: auto;
    top: 0px !important;
  }
}
@media only screen and (min-width: 0px) and (max-width: 380px) {
  /*.header-contactright a.WB_Logo.desk-logo img {
    width: 70%;
  }*/
  .mobile-logoblocks h3 { font-size: 14px !important; }
}
@media only screen and (min-width: 0px) and (max-width: 360px) {
  /*.header-contactright a.WB_Logo.desk-logo img {
    width: 72%;
  }*/
}
@media only screen and (min-width: 0px) and (max-width: 340px) {
  /*.header-contactright a.WB_Logo.desk-logo img {
    width: 75%;
  }*/
}