.informer-holder {
    position: fixed;
    color: var(--color-dark-grey);
    background: white;
    max-height: 500px;
    width: 350px;
    z-index: 2;
    right: 10px;
    bottom: 10px;
    box-shadow: -2px -2px 1px 1px var(--color-grey-light);
}

.informer-content::-webkit-scrollbar {
    width: 5px;
    display: block;
}

.informer-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.informer-content::-webkit-scrollbar-thumb {
    background: #888;
}

.informer-header {
    background: var(--color-grey-light);
    height: 110px;
    padding: 5px 10px;
}

.informer-footer {
    height: 40px;
    padding: 5px 10px;
    text-align: center
}

.informer-message-filter-type {
    opacity: 0.5;
    font-size: 13px;
    margin-left: 20px;
    cursor: pointer;
}

.informer-message-filter-type:hover {
    opacity: 0.9;
}

.informer-content {
    padding: 5px 5px;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 350px;
}

.informer-row {
    font-size: 13px;
    margin-top: 5px;
    padding: 5px 5px;
    border-radius: 5px;
    background: var(--color-grey-light);
}

.informer-row-info {
    background: #edf8fb;;
}

.informer-row-success {
    background: #e6f5e7;
}

.informer-row-danger {
    background: #fff2f2;
}

.informer-notification-icon {
    position: absolute;
    right: 15px;
    top: 15px;
    margin: 9px;
    color: rgb(252, 85, 157);
    font-size: 16pt;
}