/* Yes/No CSS Switch */
.cmn-toggle {
	position: absolute;
}

.cmn-toggle + label {
	display: block;
	position: relative;
	cursor: pointer;
	user-select: none;
}
input.cmn-toggle,
input.cmn-toggle-round-flat {
	opacity: 0;
	position: absolute !important;
	top: 0;
	left: 0;
	height: 100%;
	display: block;
}
input.cmn-toggle + label,
input.cmn-toggle-round-flat + label {
	display: block;
	position: relative;
	cursor: pointer;
	outline: none;
	user-select: none;
	padding: 0.02em;
	width: 84.05px;
	height: 31.5px;
	background-color: #757575;
	border-radius: 60px;
	transition: background 0.4s;
	overflow: hidden;
}
input.cmn-toggle + label:before,
input.cmn-toggle-round-flat + label:before,
input.cmn-toggle + label:after,
input.cmn-toggle-round-flat + label:after {
	display: block;
	position: absolute;
	content: "";
}
input.cmn-toggle + label:before,
input.cmn-toggle-round-flat + label:before {
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	background-color: #757575;
	border-radius: 60px;
	transition: background 0.4s;
}
input.cmn-toggle:checked + label,
input.cmn-toggle-round-flat:checked + label {
	background-color: #007e95;
}

input.cmn-toggle:checked + label > div,
input.cmn-toggle-round-flat:checked + label > div {
	margin-left: 3.85em;
}

input.cmn-toggle:checked + label:before,
input.cmn-toggle-round-flat:checked + label:before {
	background-color: #007e95;
}

input.cmn-toggle:checked + label > p,
input.cmn-toggle-round-flat:checked + label > p {
	left: 20px;
}

input.cmn-toggle:checked + label > p + p,
input.cmn-toggle-round-flat:checked + label > p + p {
	left: 85px;
}

input.cmn-toggle:focus + label,
input.cmn-toggle-round-flat:focus + label {
	outline: none;
	box-shadow: 0 0 1px 2px #0093eb;
}
.circle {
	height: 2.1em;
	width: 2em;
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	background-color: #ffffff;
	overflow: hidden;
	transition: margin 0.4s, border-color 0.4s;
	font-size: 14px;
}
.switch__copy {
	color: #ffffff;
}
.switch__copy-n {
	position: absolute;
	top: 4px;
	left: 41px;
	transition: left 0.4s;
}
.switch__copy-y {
	position: absolute;
	top: 4px;
	left: -26px;
	transition: left 0.4s;
}
.switch__svg-check,
.switch__svg-cross {
	position: absolute;
	transition: left 0.01s;
}
.switch__svg-check {
	left: 0.4em;
	top: 0.4em;
	display: none;
}
.switch__svg-checkSVG {
	height: 16px;
	width: 16px;
}
.switch__svg-check-path {
	fill: #007e95;
}
.switch__svg-cross {
	left: 0.3em;
	top: 0.35em;
}
.switch__svg-crossSVG {
	height: 20px;
	width: 20px;
}
.switch__svg-cross-path {
	fill: #757575;
}
