@import "../styles/variables.scss";

.main {
    cursor: pointer;
    align-items: center;
    margin-block-start: 7px;
    margin-inline-end: 0;
    margin-block-end: 7px;
    margin-inline-start: 0;


    .radioButtonInput {
        display: none;
    }

    .radioButtonLabel {
        padding-block-start: 0;
        padding-inline-end: 0;
        padding-block-end: 0;
        padding-inline-start: 7px;
    }

    .outerCircle {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 1px solid #ced6d9;
        box-shadow: 1px 1px 2px -2px #313131;

        .innerCircle {
            display: none;
        }
    }    

    &.checked {
        &.adjoinLabel{
            .radioButtonLabel {
                color: $text-on-light;
            }
        }

        .outerCircle {
            box-shadow: 1px 1px 2px -2px #313131 inset;
            .innerCircle {
                display: block;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: $text-on-light;
            }
        }
    }
}
.leftRadio{
    padding-inline-end:10px;
    display:flex;
    height: 53px;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    align-self: flex-start;
}
.radioDataField{
    flex-grow:3;

    .radioButtonLabel{
        padding-inline-start:0;
        margin-bottom:10px;
    }
}