#notificationBtn {
    top: 18px;
    left: 18px;
}
#notificationBtn:after {
    background-image: url('../images/ico_list.png');
}
#popupNotification .popupInner {
    flex-direction: column;
}
#outerNotification {
    position: absolute;
    width: 400px;
    left: 65px;
    top: 32px;
    z-index: 1;
}

#outerNotification .notificationLine {
    background-color:rgba(255,255,255,0.9);
    padding: 3px;
    padding-right: 21px;
}
#notificationPanel {
    height: 300px;
    overflow: auto;
    width: 600px;
    padding: 10px;
}
.notificationTime {
    font-weight: bold;
    margin-right: 5px;
}
.notificationLine {
    text-align: left;
    font-size: 12px;
    margin-bottom: 2px;
}
.notificationLine[data-notificationType="addObject"] {
    color: #ba4d3c;
}
.notificationLine[data-notificationType="removeObject"] {
    color: #808080;
}
.notificationLine[data-notificationType="newQuest"] {
    color: #fbb03b;
}
.notificationLine[data-notificationType="questDone"] {
    color: #81aa33;
}
.notificationLine[data-notificationType="receivedHint"] {
    color: #32677a;
}
#notificationPanel .clearSingleNotification {
    display:none;
}
.clearSingleNotification {
    position: absolute;
    right: 3px;
    top: 3px;
    /* float: right; */
    font-size: 16px;
    border: 1px solid black;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    font-weight: bold;
    cursor: pointer;
    transform: rotate(45deg);
    display: block;
    text-align: center;
    line-height: 13px;
    color: black !important;
}
.clearSingleNotification:after {
    content: '+';
}
#notificationBtn.newNotification:after {
    background-image: url('../images/ico_new-noti.png');
}
