/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Align radio buttons horizontally for a specific field with the class 'horizontal-radio-buttons' */
body .gform_wrapper .horizontal-radio-buttons .gfield_radio ul {
    display: flex;            /* Use Flexbox for horizontal layout */
    padding: 0;               /* Remove default padding */
    margin: 0;                /* Remove default margin */
    list-style-type: none;    /* Remove default list styling */
}

body .gform_wrapper .horizontal-radio-buttons .gfield_radio li {
    margin-right: 20px;       /* Space between radio buttons */
}

body .gform_wrapper .horizontal-radio-buttons .gfield_radio label {
    display: inline-block;    /* Ensure label is inline with the radio button */
}