/**********************************************************
// Modal Nav
**********************************************************/
.Modal-Nav {
	width: 100vw;
	max-width: 400px;
	display: none;
	background: rgba(255, 255, 255, 0.95);
	position: fixed;
	z-index: 9999;
	bottom: 0;
	right: 0;
	top: 0;
	}

.Modal-Nav-Top {
	padding: 30px;
	width: 100%;
	height: 100px;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-content: center;
	justify-content: right;
	position: relative;
	z-index: 1000;
	}

.Modal-Nav-Close {
	width: 50px;
	height: 50px;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	transition: 0.2s color ease-in-out;
	font-size: 50px;
	}

.Modal-Nav-Close:hover,
.Modal-Nav-Close:focus { color: #F0A794; }

.Modal-Nav-Main {
	width: 100%;
	height: calc( 100vh - 100px );
	overflow: hidden;
	position: relative;
	z-index: 500;
	}

.Modal-Nav-Main-Outer {
	padding-right: 37px;
	width: calc(100% + 50px);
	height: calc( 100vh - 100px );
	overflow-y: scroll;
	}

.Modal-Nav-Main-Inner {
	padding: 0 30px 30px 30px;
	width: 100%;
	text-align: right;
	}

/**********************************************************
// Modal Nav >> Cart
**********************************************************/
.Modal-Nav-Cart a {
	padding: 10px;
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	border: 1px solid #343432;
	color: #343432;
	border-radius: 50px;
	display: block;
	}

.Modal-Nav-Cart a:hover,
.Modal-Nav-Cart a:focus {
	border: 1px solid #F0A794;
	background: #F0A794;
	color: #FFF;
	}

.Modal-Nav-Cart a span,
.Modal-Nav-Cart a i,
.Modal-Nav-Cart a .Header-Cart-Count {
	display: inline-block;
	vertical-align: middle;
	}

.Modal-Nav-Cart a span {
	margin-right: 10px;
	font-size: 16px;
	}

.Modal-Nav-Cart a .Header-Cart-Count {
	margin-left: 2px;
	font-size: 14px;
	}

/**********************************************************
// Modal Nav >> Social
**********************************************************/
.Modal-Nav-Social {
	padding: 10px 0;
	text-align: right;
	font-size: 0;
	}

.Modal-Nav-Social li {
	margin: 5px 10px;
	display: inline-block;
	vertical-align: middle;
	}

.Modal-Nav-Social li:first-child { margin-left: 0; }
.Modal-Nav-Social li:last-child { margin-right: 0; }

.Modal-Nav-Social li a {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	font-size: 16px;
	border: 1px solid #343432;
	color: #343432;
	display: flex;
	align-items: center;
	justify-content: center;
	}

.Modal-Nav-Social li a:hover,
.Modal-Nav-Social li a:focus {
	border: 1px solid #F0A794;
	background: #F0A794;
	color: #FFF;
	}

/**********************************************************
// Modal Nav >> Links
**********************************************************/
.Modal-Nav-Links li { margin: 20px 0; }
.Modal-Nav-Links li a:hover,
.Modal-Nav-Links li a:focus { color: #F0A794; }
.Modal-Nav-Links li a {
	transition: 0.2s color ease-in-out;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 18px;
	color: #343432;
	}
