/**
 * Filename:    sa_radio_group.css
 * 
 * Description: Implementation of the sa_radio_group class.
 * 
 * Copyright © 1999-2023 by Interact Solutions Ltda.
 * Rua Carlos Fett Filho, 47/301
 * 95.900.000, LAJEADO, RS
 * BRAZIL
 * 
 * The copyright to the computer program(s) herein
 * is the property of Interact Solutions Ltda., Brazil.
 * The program(s) may be used and/or copied only with
 * the written permission of Interact Solutions Ltda.
 * or in accordance with the terms and conditions
 * stipulated in the agreement/contract under which
 * the program(s) have been supplied.
 */

.sa_radio_group .sa_field__center
{
    height: unset !important;
}

.sa_radio_group .sa_radio_group__group
{
    padding: 0 !important;
    display: flex; 
    gap: 4px;
}

.sa_radio_group.sa_radio_group__horizontal .sa_radio_group__group
{
    flex-direction: row;
}

.sa_radio_group.sa_radio_group__vertical .sa_radio_group__group 
{
    flex-direction: column;
}

.sa_radio_group .sa_radio_group__option 
{
    display: flex;
    column-gap: 3px;
    flex-direction: row;
    align-items: center;
}

.sa_radio_group .sa_radio_group__option input 
{
    margin: 3px 3px 3px 4px;
    cursor: pointer;
    width: auto;
} 

.sa_radio_group .sa_radio_group__option label 
{
    display: flex;
    column-gap: 3px;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
