mor-formgroup{
    width: 100%;
    display: block;

    > header{
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        text-align: center;
        background: inherit;
        margin-top: 1.875em;

        h5{
            color: #666;
            font-weight: 600;
            margin: 0;
            font-size: @fontSize*0.875;
            line-height: 1.6em;
        }

        p{
            font-size: @fontSize*0.75;
            color: #CCC;
            margin: 0;
        }
    }

    > .action{
        width: 100%;
        text-align: center;
        padding: 1.875em 0;
    }

    .item{
        width: 90%;
        display: flex;
        flex-flow: row nowrap;
        margin-left: 5%;
        margin-right: 5%;
        padding: 1.875em 0;

        & + .item{
            border-top: 1px @colorComponentItemBorder solid;
        }
    }

    .item > .title{
        position: relative;
        width: 30%;
        font-weight: 400;
        text-align: left;
        vertical-align: middle;
        margin: 0;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        justify-content: center;
        padding-right: 1em;

        mor-center p{
            color: #BBB;
            font-size: @fontSize*0.8125;
            text-align: left;
            white-space: nowrap;
        }
    }

    .item > .content{
        width: 70%;

        .form{
            margin-bottom: 10px;

            & > *{
                margin: 0;
            }

            &:last-child{
                margin-bottom: 0;
            }
        }

        & > h6{
            font-size: @fontSize*0.8125;
            color: #666;
            font-weight: 400;
            margin-bottom: 0.375em;
            margin-top: 0;
        }

        & > p{
            font-size: @fontSize*0.75;
            color: #AAA;
            margin-top: 0;
            margin-bottom: 0.375em;
            line-height: 1em;
            transform-origin: 0;
        }

        & > h6 + p{
            margin: -0.15em 0 0.375em;
        }
    }

    &.inline {
        > header{
            margin-bottom: 1.5em;
        }

        .row{
            width: 100%;
            font-size: 0;
            display: flex;

            .item{
                width: inherit;
                font-size: @fontSize;
                display: block;
                border-top: none;
                padding: 0.5em;
                margin: 0;

                > .title,
                > .content{
                    display: block;
                    width: 100%;
                }

                > .title{
                    margin-bottom: 8px;
                }

                > .content{
                    > h6 {
                        font-size: @fontSize*0.75;
                    }

                    .form {
                        margin-bottom: 4px;
                    }
                }
            }
        }
    }

    &.item-title-left{
        .row .item > .title{
            text-align: left;
        }

        .item > .title{
            justify-content: flex-start;
        }
    }

    &.item-title-center{
        .row .item > .title{
            text-align: center;
        }

        .item > .title{
            justify-content: center;
        }
    }

    &.item-title-right{
        .row .item > .title{
            text-align: right;
        }

        .item > .title{
            justify-content: flex-end;
        }
    }

    // default status
    &{}
}
