/** 
===== 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;
	background:#fff;
}
.menu-wrapper_before {
    display: flex;
    justify-content: flex-end;
}
.menu-wrapper {
	margin-right: 5%;
}
.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;
}
.language_list {
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #eee;
    padding: 5px 0;
    width: 80px;
    text-align: center;
    border-radius: 5px;
}
.language_list li a {
    display: inline-block;
    width: 100%;
    padding: 3px;
}
.current_language span {
	cursor: pointer;
}
.current_language > span svg {
	transform: rotate(0deg);
    margin-top: 0;
	transition: all .3s ease;
}
.current_language > span.active svg {
    transform: rotate(180deg);
    margin-top: -2px;
	transition: all .3s ease;
}

/* Live Chat */
.section_live-chat {
    position: fixed;
    z-index: 99999;
    bottom: 5%;
    right: 2.5%;
	font-size: 3rem;
}

/* Footer */
.footer_policy ul {
	margin-bottom: 0;
	padding-left: 0;
}
.footer_policy ul li {
	display: inline-block;
}


@media screen and (max-width: 1200px) {
	#zhiHead > .container > .row {
		align-items: center;
	}
	#zhiHead.active:before {
		content: '';
		position: fixed;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background: rgba(0,0,0,0.7);
		z-index: -1;
	}
	.menu-wrapper {
		display: flex;
		align-items:center;
		position: fixed;
		background: #fff;
		z-index: 9999;
		left:0;
		width: 100%;
		max-width: 100%;
		padding: 0;
		max-height: 0;
		overflow: hidden;
	}
	.menu-wrapper.active {
		max-height: 100%;
	}
	.menu-wrapper-inner {
		height: 100%;
		display: block;
		padding: 15px;
		overflow-y: auto;
	}
	.language_list {
		position: relative;
	}
	.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;
	}
	.menu-apply > a {
		font-size: 1.5rem;
	}
	.mmb_download {
		margin-bottom: 15px;
	}
	.mmb_download > a {
		max-width: 210px;
	}
}

@media screen and (max-width: 576px) {
	.footer_policy ul li {
		display: block;
	}
}

/** Search Form **/
.search-form input[type="search"]:focus {
	outline:none;
}

/** Footer **/
.copyright {
    border-top: solid 1px #eee;
}