﻿.icons {
    display: inline;
    float: right;
}

.notification {
    position: relative;
    display: inline-block;
}

.number {
    height: 1.5rem;
    width: 1.5rem;
    background-color: #FF2F2F;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: absolute;
    top: -7.5px;
    right: -6px;
    font-size: 13px;
    font-weight: bold;
}

    .number:empty {
        display: none;
    }

.notBtn {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.bell-svg {
    fill: #27345e;
    transition: 0.3s;
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.notBtn:hover .bell-svg {
    fill: #c58d2b;
}

.box {
    width: 328px;
    max-height: 0;
    border-radius: 10px;
    transition: max-height 0.4s ease;
    position: absolute;
    overflow-y: hidden;
    overflow-x: hidden;
    left: -300px;
    margin-top: 5px;
    background-color: #FFFFFF;
    cursor: context-menu;
    z-index: 10;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

    .box.show {
        max-height: 40vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

.scrollable-content {
    max-height: calc(40vh - 45px);
    overflow-y: auto;
    overflow-x: hidden;
}

.display {
    position: relative;
    padding: 10px;
}

.nothing {
    text-align: center;
    padding: 10px;
}

.nothing-txt {
    color: #555;
    margin-top: 10px;
}

.note-content {
    background-color: #FFFFFF;
}

.note-msg {
    background-color: #FFFFFF;
    border-radius: 6px;
    transition: 0.3s;
}

    .note-msg:hover {
        background-color: #f5f6fb;
    }

.txt {
    font-size: 13px;
    padding: 6px 10px;
    color: #27345E;
}

.sub {
    font-size: 12px;
    color: #999;
}

.note-msg .note-icon .ki-close {
    color: #B5B5C3;
    opacity: 0.5;
    transition: color 0.2s, opacity 0.2s;
}

.note-msg:hover .note-icon .ki-close {
    color: #3699FF;
    opacity: 1;
    cursor: pointer;
}

.box .display a[title="View History"] .fa-history {
    color: #B5B5C3;
    opacity: 0.5;
    transition: color 0.2s, opacity 0.2s;
}

.box .display a[title="View History"]:hover {
    color: #3699FF !important;
}

    .box .display a[title="View History"]:hover .fa-history {
        color: #3699FF;
        opacity: 1;
    }
