.admin-test.is-hidden {
    height: 80px;   
    transition: all .1s ease-in;
    overflow: hidden;
}
.admin-test {
    position: relative;
    z-index: 100;
    width: 100%;
    padding: 1em;
    bottom: 0;
    right: 5px;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
}
.admin-test header {
    position: relative;
    /*border-bottom: 1px solid #000;*/
}
.admin-test__content {
    height: 100%;
    max-height: 450px;
    overflow-y: scroll;    
}
.at__close {
    position: absolute;
    right: 1em;
    background: #F7F7F9;
    color: #bd4147;
    font-size: .8rem;
    font-weight: 800;
    display: inline-block;
    padding: .12rem;
}
.at-data-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.at-data-item {
    overflow:hidden ;
    display: flex;
    align-content: center;
    /*justify-content: space-between;*/
    margin: .47em 0;
}
.at-data-item > span {
    font-size: .9rem;
    display: block;
    width: 100%;
    max-width: 120px;
    line-height: 1;

}

@media only screen and (max-width : 992px) {
    .admin-test.is-hidden {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        bottom: 5.4em;
        right: .8em;
        overflow: hidden   ;
    }
    .admin-test.is-hidden header {
        border-bottom: 2px solid transparent!important;
    }
    .admin-test.is-hidden .at__close {
        position: absolute;
        top: 5px;
        right: -10px;
    }
    .admin-test.is-hidden .admin-test__content {
        margin: 3em 0 0 0;
    }
    .admin-test.is-hidden .at__header {
        display: none;
    }

}