.Checkbox2 {
	margin-top: 12px;
	margin-bottom: 12px;
	position: relative;
	cursor: pointer;
	display: flex;
	user-select: none;
}

.Checkbox2:first-child {
	margin-top: 0;
}

.Checkbox2:last-child {
	margin-bottom: 0;
}

.Checkbox2 input {
	width: auto;
	height: auto;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
}

.Checkbox2__text {
	min-height: 1.3rem;
	padding-left: 27px;
	display: block;
	color: #212121;
	font-size: 14px;
	line-height: 130%;
	background-color: transparent !important;
}

.Checkbox2__text:before {
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	display: block;
	background-color: white;
	border: 1px solid #166EB7;
	border-radius: 3px;
	transition: background-color .1s linear;
}

.Checkbox2__tick {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 3px;
	left: 3px;
	z-index: 2;
	opacity: 0;
	fill: white;
	transform: scale(2);
	transition:
		transform .1s linear,
		opacity .1s linear;
}

.Checkbox2 input:checked ~ .Checkbox2__tick {
	opacity: 1;
	transform: scale(1);
	background-color: transparent;
	color: #212121;
}

.Checkbox2 input:checked ~ .Checkbox2__text:before {
	background-color: #166eb7;
}