/* CMS 9 ships Font Awesome 5; FA4 "FontAwesome" glyphs no longer render.
   Replace the mobile menu launch icon with CSS bars. */

.ccm-responsive-menu-launch {
	display: none;
	cursor: pointer;
	margin-top: 10px;
	float: right;
	width: 42px;
	height: 36px;
	position: relative;
	z-index: 100;
}

.ccm-responsive-menu-launch i {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 2px;
	margin: -1px 0 0 -12px;
	background: #fff;
	border-radius: 1px;
	font-size: 0 !important;
	line-height: 0;
	color: transparent !important;
	transition: background 0.2s ease;
}

.ccm-responsive-menu-launch i:before,
.ccm-responsive-menu-launch i:after {
	content: "" !important;
	font-family: none !important;
	font-weight: normal !important;
	position: absolute;
	left: 0;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	display: block !important;
	transition: transform 0.2s ease, top 0.2s ease;
}

.ccm-responsive-menu-launch i:before {
	top: -8px;
}

.ccm-responsive-menu-launch i:after {
	top: 8px;
}

.ccm-responsive-menu-launch.responsive-button-close i {
	background: transparent;
}

.ccm-responsive-menu-launch.responsive-button-close i:before {
	top: 0;
	transform: rotate(45deg);
}

.ccm-responsive-menu-launch.responsive-button-close i:after {
	top: 0;
	transform: rotate(-45deg);
}

@media all and (max-width: 767px) {
	.ccm-responsive-menu-launch {
		display: block;
	}
}
