HEX
Server: Apache
System: Linux host60.registrar-servers.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: wwwrenee (3804)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/wwwrenee/public_html/wp-content/themes/maxcoach/assets/scss/elements/_checkbox.scss
input[type='checkbox'] {
	position: relative;
	background: transparent;
	border-width: 0;
	box-shadow: none;
	margin: 0 10px 0 3px;
	cursor: pointer;

	&:before {
		content: '';
		display: block;
		width: 18px;
		height: 18px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		background: #fff;
		border: 1px solid #ddd;
		border-radius: 3px;
		transition: border-color .3s ease;
	}

	&:after {
		content: '';
		display: block;
		width: 8px;
		height: 8px;
		position: absolute;
		top: 50%;
		left: 50%;
		background: #111;
		border-radius: 2px;
		z-index: 2;
		transform: translate(-50%, -50%) scale(0);
		transition: transform .3s ease;
	}

	&:hover {
		&:before {
			border-color: #111;
		}
	}

	&:checked {
		&:before {
			border-color: #111;
		}

		&:after {
			transform: translate(-50%, -50%) scale(1);
		}
	}
}