.avatar {
    position: relative;
    width: 40px;
    height: 40px;
    margin: auto;
}
.status {
    position: absolute; 
    right: 2px; 
    bottom: 5px; 
    width: 6px; 
    height: 6px; 
    border-radius: 100%; 
}
.online {
    background: #009900;
}
.offline {
    background: #1d9bf0;
}
.card.fig {
    transition: 0.2s ease-in-out;
}
.card.fig:hover {
    background: #1d9bf0;
    color: #fff !important;
}
.card.fig:hover .image {
    color: #fff !important;
}
.card .image {
    float: left;
    width: 85px;
    height: 80px;
    padding: 5px;
    border-radius: 5px;
    color: #1d9bf0;
    overflow: hidden;
}
.card .image img {
    border-radius: 5px;
}
.card .image .icon {
    font-size: 50px;
    line-height: 65px;
}
.card button.x {
    position: absolute;
    border: none;
    background: none;
    top: 5px;
    right: 20px;
    color: inherit;
    cursor: pointer;
    opacity: .0;
    transition: all ease-in;
}
.card:hover button {
    opacity: 1;
}
.card .aside {
    width: 100%;
    height: 80px;
    padding-top: 14px;
    padding-left: 100px;
    font-size: 12px;
    text-align: left;
}
.card .aside span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}
.card .aside span i {
    display: inline-block;
    width: 10px;
}
.dropdown {
    display: none;
    width: 100%;
    height: auto;
    max-height: 150px;
    background: #fff;
    position: absolute;
    z-index: 1;
    top: 70px;
    right: 0;
    margin-top: -5px;
    border: 1px solid #eee;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 30px 30px #eee;
    overflow: auto;
}
.dropdown .item {
    display: block;
    height: 35px;
    padding: 5px 10px 0 15px;
    color: #666;
    cursor: pointer;
    font-size: small;
    transition: 0.2s ease-in-out;
}
.dropdown .item:hover {
    background: #eee;
}
.dropdown .item input {
    width: 15px !important;
    float: right !important;
    height: 15px !important;
    margin-top: 2px;
}
.quill, .plain {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.quill {
    display: none;
    overflow: hidden;
}
.quill #toolbar {
    border: none;
    background: #eee;
    padding: 5px;
}
.quill #editor {
    width: 100%;
    height: 150px;
    border: none;
    background: #fff;
}
.quill.lg {
    display: block;
    height: 300px;
    width: 700px;
    min-height: 250px;
    margin: auto;
    margin-top: 10vh;
    resize: vertical;
    overflow: hidden;
}
.quill.lg #editor {
    height: 100%;
}
.close, .ql-close {
    color: white;
    margin: auto;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    text-align: center;
    padding: 10px;
    font-size: 30px;
    line-height: 0;
    border: 1px solid #fff;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.ql-close:hover {
    color: #1d9bf0;
    background: #fff;
}
.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: 0.5s ease-in-out;
}
.overlay.fh {
    justify-content: unset;
}
.overlay.show {
    opacity: 1;
    visibility: visible;
}
.overlay .sfc-data {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 400px;
    height: 200px;
    padding: 50px;
    background: #fff;
}


@media only print    {  /* Custom print stylesheet overrides */
    section.App {
        position: relative;
    }
    .App .headbar
    ,
    .App .sidebar
    ,
    #no-print, #x {
        display: none;
    }
    .App .mainbar {
        position: relative;
        left: 0;
        width: 100%;
        height: 100%;
        background: #f4f5f8;
        padding: 50px;
    }
    .App .mainbar .trailer {
        display: none;
    }   
}