#new-nav-wrapper {
	width: 100%;
	position: absolute;
	z-index: 99998;
}

#new-nav-inner-wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 94%;
	max-width: 1440px;
	padding-left: 3%;
	padding-right: 3%;
	margin: 0 auto;
	padding-top: 25px;
}

#new-logo-wrapper img {
	width: 100%;
	height: auto;
	max-width: 200px;
}

/* Slideout Styles */
#new-nav-slideout {
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	padding: 80px 0;
	position: absolute;
	top: -520px;
	z-index: 9;
}

.new-nav-slideout-column {
	display: none;
}

.new-nav-slideout-column {
	width: 33.3%;
	padding-top: 40px;
}

.new-nav-slideout-column:nth-of-type(2) {
    border-right: 1px solid #FFF;
    margin-right: 50px;
}

.new-nav-slideout-column a {
	font-family: "TungstenSemibold", sans-serif;
	font-style: normal;
	font-weight: 100;
	color: #FFF;
	font-size: 32px;
	line-height: 36px;
	text-transform: uppercase;
	letter-spacing: 4px;	
	text-decoration: none;
}

#new-nav-slideout p,
#slideout-country-list a {
	font-family: "TungstenSemibold", sans-serif;
	font-style: normal;
	font-weight: bold;
	color: #FFF;
	font-size: 26px;
	line-height: 34px;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 0;
	letter-spacing: 1px;
}

.new-nav-slideout-column a {
	display: inline-block;
	margin-bottom: 50px;
	-webkit-transition: color 300ms ease-in-out;
	transition: color 300ms ease-in-out;
	border-bottom: 2px solid rgba(250,3,74,0); 
	padding-bottom: 5px;
}

#slideout-country-list a:hover,
.new-nav-slideout-column a:hover,
.new-nav-slideout-column a.current-menu-item
 {
	color: #FA034A;
	border-bottom: 2px solid rgba(250,3,74,1); 
}

#slideout-country-list a:hover {
	border-bottom: none !important;
}

#new-nav-email-wrapper a {
	font-size: 20px;
	line-height: 34px;
	border-bottom: none !important;
}

#slideout-social-wrapper a,
#slideout-social-wrapper a:hover {
	border-bottom: none;
}

#slideout-social-wrapper a {
	margin-right: 15px;
}

#slideout-social-wrapper a:last-of-type {
	margin-right: 0;
}

#slideout-country-list {
	display: flex;
	margin-bottom: 40px;
}

#slideout-country-list p:nth-of-type(even) {
	padding: 0 12px;
}

/* New Hamburger Animations */
/*.menu-btn {
  display: block;
  width: 36px;
}

.menu-btn:before,
.menu-btn:after {
  background-color: #fff;
  content: '';
  display: block;
  height: 4px;
  transition: all 200ms ease-in-out;
}
.menu-btn:before {
  box-shadow: 0 10px 0 #fff;
  margin-bottom: 16px;
}
.menu-btn.open:before {
  box-shadow: 0 0 0 #fff;
  transform: translateY(10px) rotate(45deg);
}
.menu-btn.open:after{
  transform: translateY(-10px) rotate(-45deg);
}
*/

/* v2 of hamburger */
#new-xm-menu-button
{
  display: block;
  position: relative;
 
  z-index: 99999;
  
  -webkit-user-select: none;
  user-select: none;
}

#new-xm-menu-button a
{
  text-decoration: none;
  color: #000;
  
  transition: color 0.3s ease;
}

#new-xm-menu-button a:hover
{
  color: tomato;
}


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

/*
 * Just a quick hamburger
 */
#new-xm-menu-button span
{
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 9px;
  position: relative;
  
  background: #FFF;
  border-radius: 3px;
  
  z-index: 1;
  
  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;
}

#new-xm-menu-button span:first-child
{
  transform-origin: 0% 0%;
}

#new-xm-menu-button span:nth-last-child(2) {
	width: 25px;
	margin-left: 7px;
	transform-origin: 0% 100%;
}

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

/*
 * But let's hide the middle one.
 */
#new-xm-menu-button input:checked ~ span:nth-last-child(3)
{
  opacity: 1;
  transform: rotate(45deg);
}

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

/*
 * And let's slide it in from the left
 */
#new-xm-menu-button input:checked ~ ul
{
  transform: none;
}


@media only screen and (max-width : 900px) {
	#new-nav-slideout {
		padding: 50px 0 0px 0;
	}
	
	#new-nav-inner-wrapper.new-nav-slideout-content-wrapper {
		flex-wrap: wrap;
	}
	
	.new-nav-slideout-column {
		width: 44%;
		padding-left: 5%;
	}
	
	.new-nav-slideout-column:nth-of-type(2) {
		margin-right: 0;
		border-right: none;
	}
	
	.new-nav-slideout-column:last-of-type {
		width: 100%;
		border-top: 1px solid #FFF;
	}	
}

@media only screen and (max-width : 780px) {
	.new-nav-slideout-column {
		width: 100%;
		padding-left: 45px;
		padding-top: 0;
	}
	
	.new-nav-slideout-column:first-of-type,
	.new-nav-slideout-column:last-of-type {
		padding-top: 25px;
	}
	
	.new-nav-slideout-column a {
		margin-bottom: 30px;
	}
}
