/* centralwires-style right contact bar */
.cw-side {
	--cw-red: #e30613;
	--cw-black: #1a1a1a;
	--cw-bar: 52px;
	--cw-form-w: 300px;
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100050;
	font-family: Arial, Helvetica, sans-serif;
	transition: transform .35s ease;
	-webkit-user-select: none;
	user-select: none;
}
.cw-side.is-collapsed {
	transform: translateY(-50%);
}
.cw-side.is-collapsed .cw-side-main {
	display: none;
}
.cw-side.is-collapsed .cw-side-toggle {
	width: 36px;
	height: 40px;
	border-radius: 8px 0 0 8px;
	box-shadow: -2px 2px 10px rgba(0, 0, 0, .18);
}
.cw-side.is-collapsed .cw-side-toggle i:before {
	content: "\f104"; /* fa-angle-left */
}
.cw-side-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--cw-bar);
	height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: var(--cw-black);
	border-radius: 8px 0 0 0;
	box-sizing: border-box;
	transition: width .25s ease, height .25s ease, border-radius .25s ease;
}
.cw-side-toggle i {
	font-size: 18px;
	line-height: 1;
}
.cw-side-main {
	position: relative;
	width: var(--cw-bar);
	background: var(--cw-red);
	border-radius: 0 0 0 8px;
	box-shadow: -2px 2px 12px rgba(0, 0, 0, .18);
}
.cw-side-mail {
	position: relative;
	width: 100%;
}
.cw-side-mail-panel {
	position: absolute;
	right: var(--cw-bar);
	top: 0;
	width: var(--cw-form-w);
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateX(12px);
	transition: max-width .3s ease, opacity .25s ease, transform .3s ease;
	z-index: 2;
}
.cw-side-mail:hover .cw-side-mail-panel,
.cw-side-mail:focus-within .cw-side-mail-panel,
.cw-side-mail.is-form-open .cw-side-mail-panel {
	max-width: var(--cw-form-w);
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}
.cw-side-form-inner {
	width: var(--cw-form-w);
	padding: 16px 16px 14px;
	background: #fff;
	border-radius: 8px 0 0 8px;
	box-shadow: -4px 4px 18px rgba(0, 0, 0, .16);
	box-sizing: border-box;
}
.cw-side-form-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 12px;
}
.cw-side-form-header strong {
	font-size: 16px;
	font-weight: 700;
	color: #e30613;
	line-height: 1.2;
}
.cw-side-form-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	color: #999;
	background: transparent;
	font-size: 24px;
	line-height: 1;
}
.cw-side-form-close:hover {
	color: #333;
}
.cw-side-form-inner .cw-field {
	margin: 0 0 10px;
}
.cw-side-form-inner input[type="text"],
.cw-side-form-inner input[type="tel"],
.cw-side-form-inner input[type="email"],
.cw-side-form-inner textarea {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	font-size: 13px;
	color: #333;
	background: #fff;
	box-sizing: border-box;
	outline: none;
	resize: vertical;
	font-family: inherit;
}
.cw-side-form-inner input:focus,
.cw-side-form-inner textarea:focus {
	border-color: #e30613;
}
.cw-side-form-inner textarea {
	min-height: 80px;
}
.cw-side-form-inner .cw-submit {
	display: block;
	width: 100%;
	margin-top: 2px;
	padding: 10px 14px;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	color: #fff;
	background: #e30613;
	font-size: 14px;
	font-weight: 700;
}
.cw-side-form-inner .cw-submit:hover {
	background: #c40510;
}
.cw-side-contact {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 22px 0 16px;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: var(--cw-red);
	box-sizing: border-box;
}
.cw-side-contact:hover,
.cw-side-contact:focus {
	color: #fff;
	outline: none;
	opacity: .92;
}
.cw-side-label {
	display: block;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .06em;
	line-height: 1.2;
	white-space: nowrap;
}
.cw-side-contact .fa {
	font-size: 22px;
	line-height: 1;
}
.cw-side-wa {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	min-height: var(--cw-bar);
}
.cw-side-wa-phone {
	position: absolute;
	right: var(--cw-bar);
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	max-width: 0;
	overflow: hidden;
	padding: 0;
	opacity: 0;
	pointer-events: none;
	color: #fff !important;
	background: var(--cw-red);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
	text-decoration: none !important;
	white-space: nowrap;
	border-radius: 8px 0 0 8px;
	box-shadow: -2px 2px 10px rgba(0, 0, 0, .12);
	transform: translateX(8px);
	transition: max-width .3s ease, padding .3s ease, opacity .25s ease, transform .3s ease;
}
.cw-side-wa:hover .cw-side-wa-phone,
.cw-side-wa:focus-within .cw-side-wa-phone {
	max-width: 280px;
	padding: 0 16px 0 18px;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}
.cw-side-wa-phone:hover,
.cw-side-wa-phone:focus {
	color: #fff !important;
}
.cw-side-wa-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--cw-bar);
	min-height: var(--cw-bar);
	padding: 12px 0 14px;
	color: #fff !important;
	background: var(--cw-red);
	text-decoration: none !important;
	box-sizing: border-box;
}
.cw-side-wa-icon .fa {
	font-size: 26px;
	line-height: 1;
}
.cw-side-wa-icon:hover {
	color: #fff !important;
	opacity: .92;
}
.cw-side.is-collapsed .cw-side-wa-phone,
.cw-side.is-collapsed .cw-side-mail-panel {
	max-width: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

@media (max-width: 768px) {
	.cw-side {
		display: none !important;
	}
}
