@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");

.notifications_box {
    position: fixed;
    left: 30px;
    bottom: 30px;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@media (max-width: 480px) {
    .notifications_box {
        display: none !important;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.notification {
    background: #fc603f;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 1rem;
    font-size: 14px;
}

.notification span {
    font-size: 14px;
}

.notification .bi {
    color: rgba(255,255,255,.7);
    font-size: 2rem;
    line-height: 1;
}

.notification .name span {
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 260px;
    display: block;
    line-height: 17px;
    padding-right: 1.5rem;
}

.notification .time span {
    color: rgba(255,255,255,.7);
    font-size: 80%;
    line-height: 1;
    margin-top: 5px;
    display: block;
}
.notification .icon_col {
    flex: 0 0 auto;
    width: 16.66666667%;
    justify-content: center;
    align-items: center;
    display: flex;
    border-right: 1px solid rgba(255,255,255,.7);
}

.notification .content_col {
    flex: 0 0 auto;
    width: 83.33333333%;
    padding-left: 1rem;
}

.notif_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
}