.step-progress {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 300px;
    max-width: 80%;
    margin: 15px auto;
    padding-bottom: 60px;
    &>div {
        position: relative;
    }
    .first,
    .two {
        width: 40px;
        height: 40px;
        background:  var(--color-third);
        line-height: 34px;
        border: 3px solid var(--color-third);
        position: relative;
        border-radius: 50%;
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: 600;

        &>div {
            position: absolute;
            top: 140%;
            left: 50%;
            transform: translate(-50%, 0);
            content: 'test';
            white-space: nowrap;
            font-size: 18px;
            font-weight: 900;
            color:  var(--color-secondary);
            line-height: 25px;
        }
    }
    .first {
        
    }
    .line {
        flex: 1;
        height: 4px;
        background:  var(--color-third);
        margin: 0 3px;
    }
    .two {
        
    }
}
#admin-circles-create {
    .step-progress {
        .line {
            background:  var(--color-gray-1);
        }
        .two {
            background:  #fff;
            color:  var(--color-gray-1);
            border: 3px solid var(--color-gray-1);
            &>div {
                color: var(--color-gray-1);
            }
        }
    }
}
#circles-create-step-2 {
    .step-progress {
        .first {
            background:  var(--color-secondary);
            border: 3px solid var(--color-secondary);
        }
    }
    solid-form {
        solid-form-dropdown-autocompletion.segment.block {
            display: inline-block;
            width: 80%;
        }
        div.add-member-button {
            display: inline-block;
            width: 19%;
            text-align: right;
        }
    }
}

#admin-circles {
    .add-member-button button {
        background: var(--color-primary);
        border: 2px solid var(--color-primary);
        border-radius: 4px;
        color: #fff;
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        margin: 10px 0;
        padding: 8px 12px;
        text-align: center;
        text-transform: uppercase;
    }

}

#circles-information {
    #circles-profile {
        background:  var(--color-bg-page);
        .circle-heading {
            [name="name"],[name="dash"],[name="subtitle"] {
                line-height: 33px;
                display:inline-block;
                vertical-align:middle;
                margin-right: 10px;
            }
            [name="name"],[name="dash"] {
                font-weight: 900;
                font-size: 24px;
                line-height: 33px;
            }
        }
        h3 {
            font-size: 18px;
            font-weight: 900;
            line-height: 25px;
            letter-spacing: 0px;
            text-align: left;
            color: var(--color-primary);

        }
        .circle-description {
            padding: 15px;
            box-shadow: 0 0 6px 0 rgba(46,63,88,.14);
            background-color: #fff;
        }
    }
    
    .circle-members {
        padding: 0;

        &>div {
            display: flex!important;
            flex-wrap: wrap;
            justify-content: center;
            overflow: visible;
        }
        &>div>* {
            display: flex;
            position: relative;
            width: 49%;
            white-space: nowrap;
            box-shadow: 0 0 6px 0 rgba(46,63,88,.14);
            background-color: #fff;
            margin: 0.5%;
            &:first-child {
                overflow: visible;
            }
            .tag {
                display: none;
            }
            &>div {
                display: block!important;
                position: relative;
                width: 100%;
                padding: 15px;

                [name="segment1"] {
                    width: 15%;
                    [name="user.account.picture"] {
                        width: 100%;
                    }
                    .avatar-tzcld img {
                        width: 70%;
                        border-radius: 50%;
                    }
                }
                [name="segment2"] {
                    width: 85%;
                }
                [name="user.name"] {
                    font-size: 16px;
                    font-weight: 800;
                    line-height: 22px;
                    letter-spacing: 0em;
                    text-align: left;
                }

                .user-actions {
                    position: absolute;
                    top: -8px;
                    right: -4px;
                    .icon {
                        display: inline-block;
                        padding: 10px;
                        border-radius: 50%;
                        background: var(--color-primary);
                        &:before {
                            color: #fff!important;
                        }
                    }
                }
            }
        }
    }
}
    #circles-chat #conversejs {
        .chat-msg__content {
            .badge {
                display: none;
            }
        }
    }