/* mob nav */ 
.mob-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
	z-index: 99999999;
	display: none;
}
.mob-nav-clear {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.mob-nav-clear .close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: #fff;
    font-size: 35px;
	cursor: pointer;
}
.mob-nav-container {
    position: absolute;
    bottom: 0;
    z-index: 2;
    background: #fff;
	width: 100%;
	font-size: 18px;
	transform: translateY(100%);
	transition: .5s;
}
.mob-nav-wrapper.on .mob-nav-container {
	transform: translateY(0);
}
.mob-nav-container a {
    text-decoration: none;
	color: #222;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #ececec;
	line-height: 1;
	position: relative;
	font-weight: 500;
}
.mob-nav-container a i:first-child {
    margin-left: 10px;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
	background: var(--violet);
}
.mob-nav-container a::after {
    content: "\f010";
    position: absolute;
    top: 0;
    bottom: 0px;
    left: 20px;
    margin: auto;
    font-family: icomoon-the7-font !important;
    font-size: 13px;
    color: #b5b5b5;
    height: 15px;
}
.mob-nav-container > span {
    background: var(--violet);
    width: 100%;
    display: flex;
    color: #fff;
    line-height: 1;
    border-bottom: 2px solid #c6c6c6;
    font-weight: 700;
    font-size: 21px;
    align-items: center;
    justify-content: center;
    padding: 8px 0 12px 0 !important;
    box-sizing: border-box;
    border-top: 2px solid #fff;
}

/* btn */
.mob-nav-btn {
    display: flex;
    position: fixed;
    bottom: 10px;
    right: 65px;
    height: 40px;
    width: 40px;
    background: #000;
    color: #fff;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
	cursor: pointer;
	z-index: 99;
	box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.5);
	border-radius: 50%;	
	border: 2px solid #fff;
	text-decoration: none !important;
}
.woocommerce-checkout .mob-nav-btn,
.woocommerce-cart .mob-nav-btn {
	right: 10px;
}