.dc-mc-enable-wrapper {
	background-color: #fff;
	max-width: 500px;
	box-shadow: 0 0 8px #0000000d;
	border-radius: 3px;
}

.dc-mc-enable-menu {
	display: flex;
	align-items: center;
	padding: 12px 24px;
}

.dc-mc-enable-menu:nth-of-type(2n) {
	background-color: #f1f1f1;
}

.dc-mc-enable-menu-name {
	font-size: 1.2em;
	font-weight: 600;
	margin-right: 10px;
	flex: 1 0 auto;
}

.dc-mc-enable-submit {
	text-align: right;
	padding: 12px 24px;
	border-top: 1px solid #f1f1f1;
}

.switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	margin-bottom: 0;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 34px;
	background-color: #bbb;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 2px;
	bottom: 2px;
	border-radius: 50%;
	background-color: #fff;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2271b1;
}

input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}