.form-content-layout {
    display: block;
    margin-bottom: 25px;

    .form-content-layout-item {
        display: flex;
        align-items: center;
        padding: 17px 0;
        border-top: 1px solid #f1f1f1;
        min-height: 45px;
        box-sizing: content-box;

        &:first-child {
            border-top: 0;
            margin-top: 0;
        }

        &:only-of-type {
            padding: 0;
        }
    }

    .form-content-layout-label {
        display: flex;
        width: 100%;
        align-items: center;
        margin-bottom: 0;

        .form-content-layout-key {
            flex: 1;
            margin: 0 24px 0 0;

            .toggle-label {
                font-weight: bold;
                margin-bottom: 0;
                color: #000;
            }

            .toggle-description,
            & code {
                color: $color__ops-blueGray;
                font-size: 1.4rem;
                font-weight: normal;
                margin-bottom: 0;
            }
        }

        .form-content-layout-value {
            display: flex;
            align-items: center;

            .form-content-learn-more {
                display: block;
                width: 16px;
                height: 16px;
                margin-right: 12px;
                line-height: 14px;
                font-size: 0;
                font-family: sans-serif;
                text-indent: -24px;
                border: 1px solid #8e8e8e;
                border-radius: 50%;
                text-align: center;
                color: #8e8e8e;
                font-weight: normal;
                text-decoration: none;
                overflow: hidden;
                user-select: none;

                &::after {
                    content: "i";
                    display: inline-block;
                    font-size: 11px;
                    text-indent: 24px;
                }

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

        &.content-textarea-label {
            label {
                width: 100%;
            }
        }
    }

    .toggle-switch {
        width: 92px;
        font-size: 14px;
    }
}
