/*
* ==============
* NAVIGATION BAR
* ==============
*/

/* Navigation structure */

#rm-navbar-container {
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	text-align: center;
	z-index: 100;
	font-size: 0.875rem;
	font-family: GT-Walsheim-Pro-Medium, Arial, Helvetica, sans-serif;
}

#rm-navbar {
	overflow: hidden;
    top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1140px;
	height: 60px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
	display: table;
}

@media screen and (min-width: 768px) {
	#rm-navbar {
		height: 80px;
		padding-left: 45px;
		padding-right: 45px;
	}
}

#rm-navbar-logo {
	display: table-cell;
	vertical-align: middle;
	padding-top: 0px;
	width: 136px;
}

.rm-navbar-content {
	display: table-cell;
	vertical-align: middle;
}

.topnav-right {
	float: right;
}

/* Navigation contents */

#rm-menu-logo {
	fill: #ef5669;
	height: 32px;
	width: 136px;
	float: left;
}

.rm-navbar-links ul {
	margin: 0px;
	padding-inline-start: 0px;
}

.rm-navbar-links li {
	display: inline;
}

.rm-navbar-links a {
	float: left;
	display: block;
	color: #ef5669;
	text-align: center;
	text-decoration: none;
	margin-left: 40px;
}

.rm-navbar-links a:hover {
	color: #ef5669;
}

/* Menu Buttons */

.rm-navbar-button {
	border-radius: 25px;
	background: transparent;
	border-style: solid;
	border-width: 2px;
	border-color: #ef5669;
	padding: 5px 20px 5px 20px;
	display: inline-block;
	font-size: 14px;
	font-family: GT-Walsheim-Pro-Medium, Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #ef5669;
}

.rm-navbar-button:hover {
	background: #ef5669;
	color: #fff7f0;
	text-decoration: none;
}

.rm-navbar-button:visited {
	background: inherit;
	color: #ef5669;
	text-decoration: none;
}

.rm-navbar-button:visited:hover {
	background: inherit;
	color: #fff7f0;
	text-decoration: none;
}

#rm-navbar-button-getstarted {
	margin-left: 30px;
}

/* Hamburger overrides */

.hamburger {
	padding-top: 6px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

.hamburger:hover {
	opacity: 1;
}

.hamburger.is-active:hover {
	opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #ef5669;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	background-color: #ef5669;
}

/* Sub-navigation */

#rm-submenu {
	padding-top: 9px;
}

.rm-submenu-item, .rm-submenu-item:focus, .rm-submenu-item:hover, .rm-submenu-item:active {
	color: #ef5669;
	text-decoration: none;
	font-size: 20px;
	border: none;
	padding: 0px;
	margin: 0px;
	line-height: 1;
/*	outline: none;*/
	white-space: normal;
	text-align: left;
	margin-top: 8px;
	margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
	.rm-submenu-item, .rm-submenu-item:focus, .rm-submenu-item:hover, .rm-submenu-item:active {
		font-size: 14px;
		margin-right: 25px;
		margin-top: 0px;
		margin-bottom: 0px;
		line-height: 1.9;
	}
}

/*
.btn:focus, .btn:active:focus, .btn.active:focus {outline: none;}
*/

/*
* ==================
* NAVIGATION OVERLAY
* ==================
*/

/* Overlay */

.rm-nav-overlay {
  height: 100%;
  width: 100%;
  padding-top: 120px;
  padding-left: 14px;
  padding-right: 14px;
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  transition: opacity 0.15s ease-out, top 0.15s step-end;
  /*opacity: 0;*/
  word-wrap: break-word;
}

@media screen and (min-width: 768px) {
	.rm-nav-overlay {
	  padding-left: 45px;
	  padding-right: 45px;
	}
}

.show {
	transition: opacity 0.15s ease-out, top 0.15s step-start;
    opacity: 1;
}

/* Navigation contents */

.rm-nav-overlay-links ul {
	padding: 0;
	list-style-type: none;
}

hr.rm-nav-overlay-sep {
	border-top: 1px solid #ef5669;
}

.rm-nav-portrait {
	width: 100%;
}

@media screen and (max-width: 767px) and (orientation:landscape) {
	.rm-nav-portrait {
		width: 50%;
	}
	
	hr.rm-nav-overlay-sep {
		display: none;
	}
	
	.rm-nav-overlay {
		padding-top: 90px;
	}
	
	.rm-submenu-item, .rm-submenu-item:focus, .rm-submenu-item:hover, .rm-submenu-item:active {
		font-size: 18px;
		line-height: 1.75;
	}
}

.rm-overlay-link:visited {
	color: #ef5669;
}