.oxy-fluent-form {
    width: 100%;
}

.oxy-fluent-form .fluentform .ff-checkable-grids {
    width: 100%;
}

.oxy-fluent-form .fluentform .ff-btn {
    transition-property: all;
}

.oxy-fluent-form .fluentform input[type=checkbox]{
    -webkit-appearance:checkbox;
}

.oxy-fluent-form .fluentform input[type=radio]{
    -webkit-appearance:radio;
}

.oxy-fluent-form .ff-el-group input[type=checkbox]:before,
.oxy-fluent-form .ff-el-group input[type=radio]:before{
    content:none;
}

.oxy-fluent-form .ff-el-group input[type=checkbox]:after,
.oxy-fluent-form .ff-el-group input[type=radio]:after{
    background-color:#fff;
    border-width:1px;
    display:inline-block;
    color:#212529;
    width:15px;
    height:15px;
    visibility:visible;
    border-style:solid;
    border-radius:.25rem;
    -webkit-transition:all .1s ease;
    transition:all .1s ease;
    background-size:9px;
    background-repeat:no-repeat;
    background-position:center center;
    position:absolute;
    box-sizing:border-box;
}

.oxy-fluent-form .ff-el-group input[type=checkbox]:checked:after,
.oxy-fluent-form .ff-el-group input[type=radio]:checked:after {
    border-width:1px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    -webkit-transition:all .3s ease-out;
    transition:all .3s ease-out;
    color:#fff;
}

.oxy-fluent-form .ff-el-group input[type=radio]:after{
    border-radius:50%
}

.oxy-fluent-form .ff-el-group input[type=radio]:checked:after{
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
}

.oxy-fluent-form .ff-el-progress-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.oxy-fluent-form .ff_net_table tbody tr td label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


