.notifications-block-wrapper {
    margin: 0.625em 0;
}
.notifications-block {
    display: block;
    position: relative;
    margin: 1px 0;
    border-radius: 3px;
    overflow: hidden;
}

.notifications-block:hover {
    background-color: #424262;
}
.notifications-block:hover .notifications-block-caption {
    color: #ffa500;
}

.notifications-block-content {
    display: flex;
    position: relative;
    flex-direction: row;
    margin: 1px 0;
    border-radius: 3px;
    font-size: 0.875em;
    justify-content: space-between;
    min-height: 3.125em;
    align-items: center;
    overflow: hidden;
}

.notifications-block-date {
    width: 5rem;
    line-height: 1.6rem;
    color: #c2c2c2;
    padding: 0 0.875rem;
}

.notifications-block-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 50%;
    padding: 0.5rem 0.875rem;
}

.notifications-block-subject {
    color: #fff;
    text-transform: uppercase;
    padding: 0.3125rem 0;
    border-bottom: 2px solid transparent;
}

.notifications-block:hover .notifications-block-subject {
    border-bottom: 2px solid #ffa500;
}

.notifications-block:hover .notifications-block-status {
    opacity: 0;
    transition: 0.25s;
}

.notifications-block::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
}
.notifications-block::after {
    position: absolute;
    content: '';
    width: 3px;
    height: 100%;
    top: 0;
    right: 0;
}
.notifications-block:hover:before {
    background-color:  #ffa500;
    transition: 0.5s;
}
.notifications-block:hover:after {
    background-color:  #ffa500;
    transition: 0.5s;
}
.notifications-block-message {
    color: #c2c2c2;
    padding: 0.3125rem 0;
    line-height: 1.4;
}
.notifications-block-status {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
body[dir='rtl'] .notifications-block-status {
    left: unset;
    right: -5px;
}
.notifications-block-caption {
    text-transform: uppercase;
    padding: 5px 14px;
}

.notifications-block-status-text { 
    text-transform: uppercase;
    font-weight: 900; 
    padding: 0.3125rem 0.875rem;
    color: #c2c2c2; 
}
.notifications-block-status-0 { background-color: #d27777; }
.notifications-block-status-text-0 { color: #d27777; }
.notifications-block-status-1 { background-color: #42b742; }
.notifications-block-status-text-1 { color: #42b742; }
