/* header */

.header {
/*  background-color: #fff; */
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: absolute;
  right: 0;
  top: 36px;
  width: auto;
  z-index: 30;
  max-width: 100%;
  display: none;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #fff;
  display: block;
}

div#divtop .header li a {
  display: block;
  padding: 7px 20px;
  border-right: 1px solid #f4f4f4;
  border-top: 1px solid #f4f4f4;
  text-decoration: none;
  float: none;

}
div#divtop .header li.submenu a {
	padding-left: 40px;
}

.header li a:hover,
.menu-responsive-btn:hover {
  background-color: #f4f4f4;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu-responsive {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.menu-responsive-icon {
	position: absolute;
	right: 10px;
	top: 0;
	cursor: pointer;
	display: inline-block;
	padding: 18px 10px;
	user-select: none;
	display: none;
}

.menu-responsive-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.menu-responsive-icon .navicon:before,
.menu-responsive-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.menu-responsive-icon .navicon:before {
  top: 5px;
}

.menu-responsive-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.menu-responsive-btn {
  display: none;
}

.menu-responsive-btn:checked ~ .header .menu-responsive {
  max-height: 640px;
}

.menu-responsive-btn:checked ~ .header .menu-responsive-icon .navicon {
  background: transparent;
}

.menu-responsive-btn:checked ~ .header .menu-responsive-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-responsive-btn:checked ~ .header .menu-responsive-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-responsive-btn:checked ~ .header .menu-responsive-icon:not(.steps) .navicon:before,
.menu-responsive-btn:checked ~ .header .menu-responsive-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media screen  and (min-width: 768px) {
/*
  .header ul {
	display: none;
  }
  .header li {
    float: left;
  }
  .header li a {
    padding: 10px 30px;
  }
  .header .menu-responsive {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-responsive-icon {
    display: none;
  }
}
*/
