#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.is-loading {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

.btn-delete {
    color: #82757d;
}

.btn-delete:hover {
    color: #fff !important;
    background-color: #f75964;
    border-color: #f75964;
}

.btn-view {
    color: #82757d !important;
}

.btn-view:hover {
    color: #fff !important;
    background-color: #0dacba;
    border-color: #0dacba;
}

.btn-download {
    color: #82757d !important;
}

.btn-download:hover {
    color: #fff !important;
    background-color: #1abc9c;
    border-color: #1abc9c;
}

.chat-area {
    position: fixed;
    top: 20vh;
    right: 300px;
    display: flex;
    flex-direction: column;
    z-index: 99999999;
    max-height: 350px;
    width: 700px !important;
}

.chat-wrapper {
    box-shadow: rgb(0 0 0 / 60%) 0px 5px 15px !important;    
}

.chat-header-wrapper {
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chat-messages {
    height: 100%;
    overflow-y: scroll;
    flex:1;
    max-height: 400px;
    min-height: 400px;
}

.chat-input-wrapper {
    display: flex;
    flex-direction:column;
}

.chat-selected-contact{
    border: 2px solid red;
}

.chat-bubble {
    height: 60px;
    width: 60px;
    background-color: #005ed0;
    border-radius: 50%;
    position: relative;
    box-shadow: rgb(0 0 0 / 60%) 0px 5px 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: white;
    margin-left: auto;
    margin-right: 30px;
    cursor: pointer;
}

.chat-icons-wrapper{
    display: flex;
}

.chat-icon:hover {
    opacity: 0.5;
}

.chat-noti-badge {
    display: inline-block !important;
    position: absolute;
    right: 75px;
    color: white;
}

.right-bar-noti-badge {
    position: absolute;
    top: 15px;
    right: 110px;
    color: white;
}

.top-bar-noti-badge {
    color: white !important;
}

.bubble-noti-badge {
    position: absolute;
    font-size: 14px;
    top: 0;
    right: 0;
    color: white;
}

.chat-right-bar-status {
    position: relative;
    right: 12px;
    top: 12px;
}

.shadow-hover:hover {
    font-weight: bold !important;
    opacity: 0.9;
}

.cursor-pointer
{
    cursor:pointer !important;
}

.loader {
    transition: opacity 1s ease-out;
}