.hamburger:before { //content:'\2630'; }

.hamburger{
	
	font-size: 3rem;
	
}
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT license
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */

body
{
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* needed because hiding the menu on the right side is not perfect,  */
}

a
{
  transition: color 0.3s ease;
}


#menuToggle
{
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 2rem;
  z-index: 3;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 4; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle > span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 3;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top right of the screen
 */
#menuToggle ul.menu
{
 z-index: 2;
  position: fixed;
  top:0;
  width:100%;
  max-width: 400px;
  height: 100%;
  overflow: auto;
  margin: 0 0 0 0;
/*   box-sizing: content-box; */
  padding: 50px;
  padding-top: 90px;
  right: -100px;
  background: #47833a;
  color: white;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menuToggle ul.menu li
{
  padding: 10px 0;
  font-size: 22px;
}
#menuToggle ul.menu li a{
font-weight: bold;
font-size: 1rem;
	text-decoration: none;
	
}
#menuToggle ul.menu li li{

	list-style: none;
	padding: 5px 0;
}
#menuToggle ul.menu li li a  {
padding: 10px 0;
font-size: 0.9rem;
}
/*
Från höger
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: 1;
}

div.overlay{
	opacity: 0;
	width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1;
background-color: rgba(0,0,0,0.4);
display: none;
	
}
#menuToggle input:checked ~ div.overlay{

opacity: 1;
display: block;	
transition: opacity 0.2s;
	
}
