.sidebar-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    // border-bottom: 1px solid rgba(0,0,0,.07);
  
    .intro-avatar {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
        padding-top: 20px;
  
        img {
            width: 50%;
            border-radius: 50%;
            box-shadow: inset 0 0 10px rgba(179, 179, 179, 0.5);
            padding: 5px;
            opacity: 1;
            transform: rotate(0);
            -webkit-transform: rotate(0);
            -moz-transform: rotate(0);
            -o-transform: rotate(0);
            -ms-transform: rotate(0);
            transition: all ease 1s;
            -webkit-transition: all ease 1s;
            -moz-transition: all ease 1s;
            -o-transition: all ease 1s;
        }
        img:hover {
            transform: rotate(360deg);
            -webkit-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -o-transform: rotate(360deg);
            -ms-transform: rotate(360deg)
        }
    }
  
    .intro-nickname {
        h2 {
            font-size: 18px;
            margin: 10px 0;
        }
    }
  
    .intro-content {
        h6 {
            margin: 0;
            font-size: 14px;
            font-weight: 400;
        }
    }
  
    .intro-icons {
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    
        li {
            padding: 20px;
    
            a {
                color: inherit;
                transition: .2s ease;
    
                i {
                    display: block;
                }
            }
    
            a:hover {
                color: @sidebar-link-hover-color;
            }
        }
    }
}