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/_radio.scss
input[type='radio'] {
	position: relative;
	padding: 5px;
	margin: 0 10px 0 3px;
	cursor: pointer;

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

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

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

	&:checked {
		cursor: auto;

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

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