.sip-menu-icon-container {
	/*position: absolute;
	right: 0px;
	top: 30px;*/
	float: right;
	margin-top: 30px;
	height: 59px;
	width: 65px;
}
.sip-header-bar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.sip-header-bar li {
	margin: 0;
}
.sip-header-bar li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2em;
}
.sip-header-bar li:last-child {
	margin-bottom: 20px;
} 
.sip-header-bar li a:hover,
.sip-header-bar li a:active {
  background-color: #f4f4f4;
} 
.sip-header-bar .sip-menu {
  clear: both;
  transition: all 0.5s ease-out;
}
html.no-js .sip-header-bar .sip-menu {
  max-height: 0;
}
html.js .sip-header-bar .sip-menu {
	position: absolute;
	right: -20px;
	bottom: 0px;
	left: -20px;
	display: none;
	overflow-y: scroll;
}
html.js .sip-header-bar .sip-menu li a {
	padding-right: 40px;
	padding-left: 40px;
}
.sip-header-bar .sip-menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}
 
.sip-header-bar .sip-menu-icon .navicon {
  background-color: #333;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 25px;
}
 
.sip-header-bar .sip-menu-icon .navicon:before,
.sip-header-bar .sip-menu-icon .navicon:after {
  background-color: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
 
.sip-header-bar .sip-menu-icon .navicon:before {
  top: 8px;
}
 
.sip-header-bar .sip-menu-icon .navicon:after {
  top: -8px;
}
.sip-header-bar .sip-menu-btn {
  display: none;
}
html.no-js .sip-header-bar .sip-menu-btn:checked ~ .sip-menu {
	max-height: 800px;
}
html.js .sip-header-bar .sip-menu {
	
}
.sip-header-bar .sip-menu-btn:checked ~ .sip-menu-icon-container .sip-menu-icon .navicon {
  background: transparent;
}
 
.sip-header-bar .sip-menu-btn:checked ~ .sip-menu-icon-container .sip-menu-icon .navicon:before {
  transform: rotate(-45deg);
}
 
.sip-header-bar .sip-menu-btn:checked ~ .sip-menu-icon-container .sip-menu-icon .navicon:after {
  transform: rotate(45deg);
}
 
.sip-header-bar .sip-menu-btn:checked ~ .sip-menu-icon-container .sip-menu-icon:not(.steps) .navicon:before,
.sip-header-bar .sip-menu-btn:checked ~ .sip-menu-icon-container .sip-menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* DESKTOP NAVIGATION */

@media only screen and (min-width: 971px) {
	.sip-header-bar.sip-desktop-navigation-header {
		overflow: visible;
	}
	.sip-header-bar.sip-desktop-navigation-header nav {
		float: left;
		margin-left: 20px;
	}
	.sip-desktop-navigation .sip-menu-icon-container {
		display: none;
	}
	.sip-desktop-navigation .sip-menu {
		display: block!important;
	}
	html.js .sip-header-bar .sip-desktop-navigation .sip-menu {
		overflow: visible;
		position: static;
	}
	.sip-header-bar .sip-desktop-navigation li a,
	html.js .sip-header-bar .sip-desktop-navigation .sip-menu li > a {
		font-size: 1em;
		line-height: 1.2em;
		box-sizing: border-box;
		padding-right: 20px;
		padding-left: 20px;
	}
	html.js .sip-header-bar .sip-desktop-navigation .sip-menu > li > a {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

/* / DESKTOP NAVIGATION */