:root {
	--chamevo-mspc-column-min-width: 250px;
	--chamevo-mspc-border-color: rgba(0, 0, 0, 0.1);
	--chamevo-mspc-active-bg: #fafafa;
}
.chamevo-mspc-wrapper,
.chamevo-mspc-wrapper * {
	all: revert;
	box-sizing: border-box;
}
.chamevo-mspc-wrapper {
	margin: 40px 0;
	width: 100%;
}
.chamevo-mspc-wrapper .chamevo-mspc-menu-item {
	display: flex;
	gap: 5px;
	align-items: center;
	cursor: pointer;
	font-size: 16px;
	text-decoration: none !important;
}
.chamevo-mspc-wrapper .chamevo-mspc-menu-item.chamevo-mspc-active {
	font-weight: 700;
}
.chamevo-mspc-wrapper .chamevo-mspc-menu-item.chamevo-mspc-disabled {
	color: rgba(0, 0, 0, 0.3) !important;
	cursor: default !important;
}
.chamevo-mspc-content {
	z-index: 10;
}
.chamevo-mspc-content.chamevo-mspc-active {
	display: block !important;
}
.chamevo-mspc-content .chamevo-mspc-variations {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(var(--chamevo-mspc-column-min-width), 1fr));
	padding: 20px;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation {
	position: relative;
	padding: 15px;
	cursor: pointer;
	transform: scale(1);
	display: flex;
	gap: 10px;
	flex-direction: column;
	border-radius: 6px;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation.chamevo-mspc-active {
	border: 3px solid rgba(0, 0, 0, 0.05);
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation .chamevo-mspc-radio {
	display: flex;
	justify-content: center;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation .chamevo-mspc-radio input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: grid;
	place-content: center;
	background-color: transparent;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	border: 1px solid var(--chamevo-mspc-border-color);
	cursor: pointer;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation .chamevo-mspc-radio input[type="radio"]:before {
	display: block;
	content: "";
	width: 14px;
	height: 14px;
	transform: scale(0);
	border-radius: 50%;
	transition: 120ms transform ease-in-out;
	background: #555;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation .chamevo-mspc-radio input[type="radio"]:checked:before {
	transform: scale(1) !important;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation .chamevo-mspc-attribute-image {
	border-radius: 6px;
	max-width: 100%;
	width: 100%;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation .chamevo-mspc-text-wrapper > strong {
	display: block;
	font-size: 16px;
}
.chamevo-mspc-content .chamevo-mspc-variations .chamevo-mspc-variation .chamevo-mspc-text-wrapper > p {
	font-size: 14px;
	line-height: 16px;
	margin-top: 10px;
}
.chamevo-mspc-wrapper.chamevo-mspc-items-vertical .chamevo-mspc-variation {
	text-align: center;
}
.chamevo-mspc-wrapper.chamevo-mspc-items-vertical .chamevo-mspc-variation .chamevo-mspc-text-wrapper {
	margin-top: 10px;
}
.chamevo-mspc-wrapper.chamevo-mspc-items-vertical .chamevo-mspc-variation .chamevo-mspc-text-wrapper > strong {
	text-align: center;
}
.chamevo-mspc-wrapper.chamevo-mspc-items-vertical .chamevo-mspc-variation .chamevo-mspc-text-wrapper > p {
	margin-top: 10px;
}
.chamevo-mspc-wrapper.chamevo-mspc-items-horizontal .chamevo-mspc-variation {
	flex-direction: row;
	align-items: flex-start;
}
.chamevo-mspc-wrapper.chamevo-mspc-items-horizontal .chamevo-mspc-variation .chamevo-mspc-radio {
	order: 2;
	height: 100%;
	align-items: center;
}
.chamevo-mspc-wrapper.chamevo-mspc-items-horizontal .chamevo-mspc-variation .chamevo-mspc-attribute-image {
	width: 50%;
	-o-object-fit: contain;
	object-fit: contain;
}
.chamevo-mspc-clear-selection {
	display: block;
	margin: 10px 0;
	text-align: right;
}
.chamevo-mspc-hidden {
	display: none !important;
}
.woocommerce.chamevo-mspc-product .variations_form .variations {
	display: none;
}
.woocommerce.chamevo-mspc-product.chamevo-mspc-fullwidth-summary .summary {
	width: 100%;
}
.woocommerce.chamevo-mspc-product.chamevo-mspc-fullwidth-summary .summary .images {
	float: none;
}
.chamevo-mspc-tooltip {
	background: rgba(0, 0, 0, 0.8);
	z-index: 200;
	bottom: 100%;
	color: #fff;
	font-size: 14px;
	display: block;
	left: 50%;
	margin-bottom: 15px;
	opacity: 0;
	padding: 6px 8px;
	pointer-events: none;
	position: absolute;
	white-space: nowrap;
	transform: translate(-50%, -10px);
	transition: all 0.25s ease-out;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.28);
	border-radius: 5px;
}
.chamevo-mspc-tooltip:before {
	bottom: -20px;
	content: " ";
	display: block;
	height: 20px;
	left: 0;
	position: absolute;
	width: 100%;
}
.chamevo-mspc-variation:hover .chamevo-mspc-tooltip {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.chamevo-mspc-accordion {
	border: 1px solid var(--chamevo-mspc-border-color);
	background: #fff;
}
.chamevo-mspc-accordion .chamevo-mspc-menu-item {
	padding: 15px 0 13px 10px;
	line-height: 1;
	border-bottom: 1px solid var(--chamevo-mspc-border-color);
}
.chamevo-mspc-accordion .chamevo-mspc-menu-item.chamevo-mspc-active {
	background: var(--chamevo-mspc-active-bg);
}
.chamevo-mspc-accordion .chamevo-mspc-content {
	border-bottom: 1px solid var(--chamevo-mspc-border-color);
}
.chamevo-mspc-wrapper.chamevo-mspc-module-tabs .chamevo-mspc-menu {
	display: flex;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-tabs .chamevo-mspc-menu > .chamevo-mspc-menu-item {
	flex: 0;
	padding: 10px 20px;
	white-space: nowrap;
	opacity: 0.6;
	border-radius: 6px 6px 0 0;
	margin: 0;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-tabs .chamevo-mspc-menu > .chamevo-mspc-menu-item.chamevo-mspc-active {
	opacity: 1;
	border: 1px solid var(--chamevo-mspc-border-color);
	border-bottom: 1px solid #fff;
	margin-bottom: -1px;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-tabs .chamevo-mspc-menu > .chamevo-mspc-menu-item:hover {
	opacity: 0.8;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-tabs .chamevo-mspc-content {
	border: 1px solid var(--chamevo-mspc-border-color);
	border-radius: 6px;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-tabs .chamevo-mspc-content > .chamevo-mspc-variations.chamevo-mspc-active {
	display: grid;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu {
	border-radius: 6px;
	align-self: flex-start;
	display: flex;
	margin-bottom: 10px;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item {
	flex: 1;
	padding: 15px 40px;
	border: 1px solid var(--chamevo-mspc-border-color);
	border-right: none;
	position: relative;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item:first-child {
	border-radius: 6px 0 0 6px;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item:last-child {
	border-radius: 0 6px 6px 0;
	border-right: 1px solid var(--chamevo-mspc-border-color);
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item:last-child:after {
	display: none;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item.chamevo-mspc-active {
	background: var(--chamevo-mspc-active-bg);
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item.chamevo-mspc-active:after {
	background: var(--chamevo-mspc-active-bg);
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background: #fff;
	border: 1px solid var(--chamevo-mspc-border-color);
	border-left: none;
	border-top: none;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%) rotate(-45deg);
	z-index: 10;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-content {
	flex: 1;
	border: 1px solid var(--chamevo-mspc-border-color);
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-content .chamevo-mspc-variations.chamevo-mspc-active {
	display: grid;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps.chamevo-mspc-module-steps-vertical {
	display: flex;
	gap: 0 40px;
	flex-wrap: wrap;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps.chamevo-mspc-module-steps-vertical .chamevo-mspc-menu {
	flex-direction: column;
	margin-bottom: 20px;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps.chamevo-mspc-module-steps-vertical .chamevo-mspc-menu .chamevo-mspc-menu-item {
	border-bottom: none;
	border-right: 1px solid var(--chamevo-mspc-border-color);
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps.chamevo-mspc-module-steps-vertical .chamevo-mspc-menu .chamevo-mspc-menu-item:first-child {
	border-radius: 6px 6px 0 0;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps.chamevo-mspc-module-steps-vertical .chamevo-mspc-menu .chamevo-mspc-menu-item:last-child {
	border-radius: 0 0 6px 6px;
	border-bottom: 1px solid var(--chamevo-mspc-border-color);
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps.chamevo-mspc-module-steps-vertical .chamevo-mspc-menu .chamevo-mspc-menu-item:after {
	display: none;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps.chamevo-mspc-module-steps-vertical .chamevo-mspc-menu .chamevo-mspc-menu-item.chamevo-mspc-active:after {
	display: block;
}
.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-clear-selection {
	flex-basis: 100%;
}
@media only screen and (max-width: 768px) {
	.chamevo-mspc-wrapper.chamevo-mspc-module-steps {
		flex-direction: row;
	}
	.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu {
		flex-basis: 100%;
		flex-wrap: wrap;
	}
	.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item {
		flex: 0 0 100%;
	}
	.chamevo-mspc-wrapper.chamevo-mspc-module-steps .chamevo-mspc-menu .chamevo-mspc-menu-item:after {
		display: none !important;
	}
	.chamevo-mspc-wrapper.chamevo-mspc-module-steps:not(.chamevo-mspc-module-steps-vertical) .chamevo-mspc-menu .chamevo-mspc-menu-item {
		flex: 0 0 100%;
		border: 1px solid var(--chamevo-mspc-border-color);
		border-bottom: none;
	}
	.chamevo-mspc-wrapper.chamevo-mspc-module-steps:not(.chamevo-mspc-module-steps-vertical) .chamevo-mspc-menu .chamevo-mspc-menu-item:first-child {
		border-radius: 6px 6px 0 0;
		border-bottom: none;
	}
	.chamevo-mspc-wrapper.chamevo-mspc-module-steps:not(.chamevo-mspc-module-steps-vertical) .chamevo-mspc-menu .chamevo-mspc-menu-item:last-child {
		border-radius: 0 0 6px 6px;
		border-bottom: 1px solid var(--chamevo-mspc-border-color);
	}
}
.chamevo-mspc-cha-module {
	padding-top: 10px;
	padding-bottom: 10px;
}
.chamevo-mspc-cha-module > div {
	max-height: 400px;
	overflow: auto;
	padding: 0 !important;
}
.chamevo-mspc-cha-module .cha-sc-module-wrapper {
	border: none;
}
.chamevo-mspc-content.chamevo-mspc-cha-module--images {
	padding: 0;
}
