<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Checkbox styling */
span.atomion-checkbox-style {
    cursor: pointer;
	display: inline-block;
	width: 18px;
	height: 18px;
	position: relative;
	top: 4px;
	border: 3px solid #DDDDDD;
	background: white;
	visibility: visible;
	margin-right: 10px;
}

span.atomion-checkbox-style input[type='checkbox'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
	background: transparent;
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	float: left;
	border: none;
	opacity: 0;   
}

span.atomion-checkbox-style:hover,
span.atomion-checkbox-style:focus,
span.atomion-checkbox-style:focus-within {
	background:#ddd;
}

/* Checkbox style with checkmark */
span.atomion-checkbox-style.style-checkmark.checked {
	background-color: transparent !important;
	border-color: #ddd !important;
}

span.atomion-checkbox-style.style-checkmark.checked:before {
	content: '\f00c';
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	font-size: 24px!important;
	line-height: 12px;
	position: absolute;
	left: -5px;
	top: -3px;
	width: 12px;
	height: 12px;
}

/* Radio styling */
.atomion-radio-style:checked,
.atomion-radio-style:not(:checked) {
    background: transparent;
    position: relative;
    opacity: 0;
    margin: 0;
    padding: 0;
	display:block;
}

.atomion-radio-style + label,
.atomion-radio-style + span {
    cursor: pointer;
    padding-left: 2.4rem;
    position: relative;
}

.atomion-radio-style:checked + label::before,
.atomion-radio-style:not(:checked) + label::before,
.atomion-radio-style:checked + span::before,
.atomion-radio-style:not(:checked) + span::before {
    content: ' ';
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 0;
    border: 3px solid #DDDDDD;
    border-radius: 30px;
    background: white;
    margin-right: 0;
}

.atomion-radio-style:hover + label::before,
.atomion-radio-style:hover + span::before,
.atomion-radio-style:focus + label::before,
.atomion-radio-style:focus + span::before {
    background: #ddd;
}</pre></body></html>