#notifArea {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 250px;
}
.notif {
    margin-top: 10px;
    width: 100%;
    opacity: 0;
    transform:  translateX(100%) translateX(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100px;
    padding: 10px;
    border: 1px var(--ott-brown) solid;
    background-color: var(--ott-BE-dark-bg);
    border-radius: 5px;
    box-shadow: 3px 3px 3px 0 rgba(30,30,30,0.5);
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: left;
}
.notif.shown {
    transform: translateX(0);
    opacity: 1;
}
.notif > * {
    height: 100%;
}
.notif img {
    width: auto;
}
.notif .title {
    width: 100%;
    text-align: left;
    padding-left: 10px;
}
.notif .title h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--ott-blue-play);
    position: relative;
    padding-top: 15px;
}
.notif .title h4::before {
    content: "";
    position: absolute;
    top:0;
    left: 0;
    background-color: red;
    width: 10px;
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    animation: pulse-red 2s infinite, opacityPulse 2s ease-out;
    animation-iteration-count: infinite;
    border-radius: 10px;
}
.notif .title h4::after {
    content: "ON AIR";
    position: absolute;
    top:-4px;
    left: 17px;
    color: red;
    font-size: 10px;
    line-height: 17px;
    display: inline-block;
    font-weight: 600;
    vertical-align: middle;
    margin-right: 5px;
    letter-spacing: 1px;
}


.notif .play {
    cursor: pointer;
    width: 26px;
    display: block;
    position: relative;
    top:10px;
    left: 10px;
}
.notif .play svg {
    stroke-linejoin: round;
    stroke-linecap: round;
    fill: none;
}
.notif .play circle {
    transition: fill .3s,stroke .3s;
}
.notif .play circle {
    fill: var(--ott-black-overlay);
    stroke: var(--ott-white);
    stroke-width: 2;
}
.notif .play path {
    fill: var(--ott-white);
}
.notif .play::after {
    content: var(--ott-play-text);
    color: var(--ott-white);
    font-size: 12px;
    font-weight: 700;
    display: block;
    position: absolute;
    top: 0;
    line-height: 26px;
    left: 100%;
    padding-left: 5px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.notif .play:hover::after {
    opacity: 1;
}
.notif .play:hover circle {
    fill: var(--ott-blue-play);
    stroke: hsla(0,0%, 100%, 0);
}
.notif .on-air {
    position: absolute;
    bottom: 10px;
    right: 10px;
}