.styled-checkbox {
	position: absolute;
	opacity: 0;
	width: 27px;
	height: 27px;
}

.styled-checkbox+label {
	position: relative;
	cursor: pointer;
	padding: 0;

	display: unset;
	margin: unset;
}

.styled-checkbox+label:before {
	content: "";
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	width: 25px;
	height: 25px;
	border: 1px solid var(--color-border);
	background: white;
}

.styled-checkbox:hover+label:before {
	background-color: var(--color-white);
}

.styled-checkbox:focus+label:before {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:checked+label:before {
	background-color: var(--color-white);
}

.styled-checkbox:disabled+label {
	color: #b8b8b8;
	cursor: auto;
}

.styled-checkbox:disabled+label:before {
	box-shadow: none;
	background: #ddd;
}

.styled-checkbox:checked+label:after {
	content: "";
	width: 5px;
	height: 11px;
	border: solid var(--color-border);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 4px;
	left: 10px;
}