.hamburger {
  border: 0;
  outline: 0;
  z-index: 99;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 8px;
  top: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  background: none;
}
.hamburger-icon {
  position: relative;
  display: block;
  margin-top: 2px;
}
.hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
  width: 100%;
  height: 1px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: #333;
}
.clone-hamburger, .clone-hamburger::before, .clone-hamburger::after {
  background-color: #333;
}	
.hamburger-icon::before, .hamburger-icon::after {
  position: absolute;
  top: -8px;
  left: 0;
  content: ' ';
}
.hamburger-icon::after {
  top: 8px;
}
.lock {
  overflow: hidden;
}
.modal-content {
  position: relative;
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #F2F2F2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  border: none;
}
/*.modal-content p {
  margin: 0;
  padding: 0;
}*/
.modal-overlay {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}
.modal-wrap {
  z-index: 999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.modal-open {
  color: #00f;
  text-decoration: underline;
}
.modal-open:hover {
  cursor: pointer;
  color: #f00;
}
.modal-close {
  color: #00f;
  text-align: right;
}
.modal-close:hover {
  cursor: pointer;
  color: #f00;
}
p.close_top {
  text-align: right;
  margin: 12px 0;
  float: right;
}
p.close_top .modal-close {
  height: 35px;
  /*background: #000;*/
  color: #333;
  font-size: 1.4rem;
  padding: 10px;
}
p.close_top .modal-close:hover {
  color: #333;
}
.modal-wrap nav {
  clear: both;
	padding: 5px 25px 20px;
}
.modal-head {
  padding: 12px 8px 12px 15px;
  	background: #fff;
}
.modal-content > ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.modal-content > ul li.lavel {
  background-color: #F70841;
  font-size: 1.6em;
  padding: 5px 30px;
  font-weight: bold;
}
.modal-content > ul li.lavel a {
  color: #fff;
}
p.close_bottom {
  /*background-color: #000;*/
  overflow: hidden;
  text-align: center;
}
p.close_bottom a {
  display: block;
  color: #fff;
  padding: 10px 30px 20px;
  text-align: center !important;
}
@media screen and (min-width: 992px) {
  .hamburger {
    display: none;
  }
}