.form-design-tabs {
    width: 100%;
    height: 100%;

    >.tabs-bar {
        padding-top: 5px;
        display: flex;
        height: 43px;
        border-bottom: 1px solid #e8e8e8;

        >.tabs-nav-wrap {

            .flip-list-move {
                transition: transform 0.5s;
            }

            >.transition-group {
                display: flex;
                padding-left: 1px;

                >.tabs-tab {
                    cursor: move;
                    position: relative;
                    margin: 0;
                    margin-right: 2px;
                    padding: 0px 25px 0px 16px;
                    height: 38px;
                    line-height: 38px;
                    background: #fafafa;
                    border: 1px solid #e8e8e8;
                    border-bottom: 0;
                    border-radius: 4px 4px 0 0;
                    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);

                    >.caption {
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        max-width: 150px;
                    }

                    >.delete {
                        cursor: pointer;
                        position: absolute;
                        top: -1px;
                        right: 5px;
                    }

                    >.delete:hover {
                        color: #1890ff;
                    }
                }

                >.tabs-tab.active {
                    padding-bottom: 1px;
                    color: #1890ff;
                    background: #fff;
                    border-color: #e8e8e8;
                }

                >.tabs-tab:hover {

                    >.caption {
                        color: #1890ff;
                    }
                }
            }

        }

        >.tabs-add {
            height: 38px;
            width: 38px;

            .ant-btn {
                height: 38px;
                width: 38px;
                border-radius: 4px 4px 0px 0px;
            }
        }
    }

    >.tabs-content {
        height: calc(100% - 43px);
        overflow: hidden;
    }

    .tabs-content-item {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
    }
}