@media screen and (max-width: 1199px) {
  .menu-toggle {
    display: flex !important;
    background-color: #FFF;
    justify-content: center;
    align-items: center;
    float: right;
    margin-top: 0;
    padding: 0;
    height: 37px;
    width: 37px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-transition: 0.6s all ease;
    -moz-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
  }
  .menu-toggle:before {
    content: "";
    background-color: #000;
    opacity: 0.2;
    position: absolute;
    height: 100%;
    width: 100%;
    left: -100%;
    -webkit-transition: 0.6s all ease;
    -moz-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
  }
  .menu-toggle:focus, .menu-toggle:hover {
    background-color: #FFF;
    -webkit-transition: 0.6s all ease;
    -moz-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
  }
  .menu-toggle:focus:before, .menu-toggle:hover:before {
    left: 0;
    -webkit-transition: 0.6s all ease;
    -moz-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
  }
  .menu-toggle svg {
    width: 15px;
    height: 10px;
    color: #000;
    margin: 0;
  }
}

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