.lqd-woo-radio-input {
	display: inline-block;
	width: 22px;
	height: 22px;
	position: relative;
	
	span {
		display: inline-block;
		width: 100%;
		height: 100%;
		border: 1px solid #B1B1B1;
		border-radius: 50em;
		position: relative;

		&:before {
			content: '';
			display: inline-block;
			width: 10px;
			height: 10px;
			position: absolute;
			top: 50%;
			left: 50%;
			margin: -5px 0 0 -5px;
			border-radius: inherit;
			background-color: var(--color-primary);
			transition: transform 0.3s, opacity 0.15s;
			opacity: 0;
			transform: scale(2.2);
		}
	}
	input {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: 2;

		&:checked {

			+ span {
				border-color: var(--color-primary);

				&:before {
					transform: scale(1);
					opacity: 1;
				}
			}
		}
	}
}