/* -----------------------------------------------------------------------------
  BOX SIZING RESET  
----------------------------------------------------------------------------- */
*, *::before, *::after {
	box-sizing: inherit;
}
html {
	box-sizing: border-box;
}
/* -----------------------------------------------------------------------------
  WRAPPER OBJECT  
----------------------------------------------------------------------------- */
.o-wrapper {
	float: right;
	width: 80px;
	margin: 0;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}


/* -----------------------------------------------------------------------------
  SLIDE MENUS COMPONENTS  
----------------------------------------------------------------------------- */
/**
 * Menu overview.
 */
.c-menu {
	position: fixed;
	z-index: 9999;
	background: rgba(56,61,76,.90);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.c-menu__items {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}
/**
 * Left and right menus
 *
 * Slide and push menus coming in from the left and right inherit a lot of
 * common styles. We'll start each of them off by doing up the common styles
 * for each version, followed by individual styles.
 *
 * The various versions are governed by modifier classes.
 */
/**
 * Common modifiers for left/right menus.
 */
.c-menu--slide-right {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	padding: 20px 40px;
}
.c-menu--slide-right .c-menu__item {
	display: block;
	font: normal 2.125em 'Helvetica Light', san-serif;
	border-top: solid 1px #FFF;
}

.c-menu--slide-right .c-menu__item:first-child {
	border-top: none;
}
.c-menu--slide-right .c-menu__link {
	display: block;
	margin: 0;
	padding: 12px 0;
	color: #fff;
}
.c-menu--slide-right .c-menu__close {
	display: block;
	padding: 0;
	width: 100%;
}

/**
 * Slide Menu Right.
 */
.c-menu--slide-right {
	top: 0;
	right: 0;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}
.c-menu--slide-right.is-active {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}
/**
 * Body states.
 *
 * When a menu is active, we want to hide the overflows on the body to prevent
 * awkward document scrolling.
 */
body.has-active-menu {
	overflow: hidden;
}
/**
 * Close button resets.
 */
.c-menu__close {
	color: #6d6e71; /* Gray */
	background: none;
	font-size: 32px;
	text-align: left;
	border: none;
	box-shadow: none;
	border-radius: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.c-menu__close:hover {
	opacity: 0.8;
}
.c-menu__close:focus {
	outline: none;
}
/* -----------------------------------------------------------------------------
  MASK COMPONENT
----------------------------------------------------------------------------- */
.c-mask {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 0;
	height: 0;
	background-color: #000;
	opacity: 0;
	-webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
	transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}
.c-mask.is-active {
	width: 100%;
	height: 100%;
	opacity: 0.7;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
/* -----------------------------------------------------------------------------
  BUTTONS  
----------------------------------------------------------------------------- */

.c-button {
	float: right;
	margin: 0;
	padding: 0;
	color: #57585b; /* Gray MW2 */
	background: none;
	box-shadow: none;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.c-button:hover {
	opacity: 0.7;
}
.c-button:focus {
	outline: none;
}
.c-button:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.c-button-txt {
	float: left;
	font: normal 16px 'Helvetica MedCond';
	color: #5d3005; /* Brown */
	text-transform: uppercase;
	margin: 10px 0 0;
}
.c-button i {
	font-size: 36px;
	font-weight: 900;
}




@media screen and (min-width: 320px) and (max-width: 768px) {
	
	.o-wrapper {
		width: auto;
		margin: 0;
	}
	.c-button-txt {
		margin: 18px 0 0;
	}
	.c-menu--slide-right {
		overflow-y: scroll;
	}

}

@media screen and (max-width: 414px) {	
	.c-button-txt {
		display: none;
	}
}



@media all and (min-width: 320px) {
	
	.c-menu--slide-right {
		width: 320px;
		-webkit-transform: translateX(320px);
		-ms-transform: translateX(320px);
		transform: translateX(320px);
	}
}
@media all and (max-width: 320px) {
	.o-wrapper {
		width: 60px;
		margin: 0px 0px 0 0;
	}
}
