/** 
===== CONTENTS =====
#General
#Menu
#Search Form
#Footer
====================
**/

/** General **/
.btn-check:focus+.btn-primary, .btn-primary:focus, .btn-check:focus+.btn-secondary, .btn-secondary:focus {
	outline:none;
	box-shadow:none;
}
img {
	height: auto;
	max-width: 100%;
}

/** Menu **/
header#zhiHead {
    border-bottom: solid 1px #eee;
}
.menu-wrapper-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items:center;
	justify-content: flex-end;
}
.zhi_menu {
    list-style: none;
	padding-left:0;
	margin:0;
}
.zhi_menu li {
	display: inline-block;
    margin-right: 1.5rem;
}
.zhi_menu li:last-child {
	margin-right: 0;
}
.cart-wrapper {
	margin-left: 1.5rem;
}
@media screen and (max-width: 1200px) {
	.menu-wrapper {
		display: flex;
		align-items:center;
		position: fixed;
		background: #fff;
		z-index: 9999;
		right: -300px;
		top: 0;
		width: 100%;
		max-width: 280px;
		padding: 15px;
		box-shadow: 0 0 4px rgb(0 0 0 / 20%);
		transition: all .3s ease;
	}
	.menu-wrapper.active {
		transition: all .3s ease;
		right:0;
	}
	.menu-wrapper-inner {
		height: auto;
		display: block;
	}
	.menu-hamburger {
		display: flex;
		height: 100%;
		align-items: center;
		justify-content: flex-end;
	}
	.mobile-menu {
		display: inline-block;
		padding: 5px;
		font-size: 20px;
		cursor: pointer;
	}
	.menu-close {
		position: absolute;
		right: 10px;
		top: 10px;
	}
	.zhi_menu {
		width: 100%;
		text-align: center;
	}
	.zhi_menu li {
		display: block;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.zhi_menu li a {
		display: inline-block;
		width: 100%;
		padding: 5px;
	}
}

/** Search Form **/
.search-form input[type="search"]:focus {
	outline:none;
}

/** Footer **/
.copyright {
    }