    /* RADIO INPUT STYLES */

    .radio_container
    {
        padding-bottom: 20px;
    }


    .radio_label_wrap
	{
		display: inline-flex;
		align-items: center;
        justify-content: center;
		cursor: pointer;
		margin-right: 10px;
        user-select: none;
		font-weight: bold;
    }
	
	.radio_input
	{
		display: none;
	}
	
	.radio_radio
	{
		width: 1.25em;
		height: 1.25em;
		border: 2px solid #fD6A02;
		border-radius: 50%;
		margin-right: 10px;
		box-sizing: border-box;
		padding: 2px;
	}
	
	.radio_radio::after
	{
		content: "";
		width: 100%;
		height: 100%;
		display: block;
		background: #fD6A02;
		border-radius: 50%;
		transform: scale(0);
		transition: transform 0.15s;
	}
	
	.radio_input:checked + .radio_radio::after
	{
		transform: scale(1);
	}


	