#notificationsContainer {
    position: relative;
    display: flex;
}
.notifications__active {
    background: #705744;
    transition: all 0.5s;
}
#notifications {
    position: relative;
    color: #FFF;
    transition: all 0.5s;
    text-decoration: none;
    padding-right: 30px;
}

#notifications .notifications__countdown-gray {
    position: absolute;
    top: 5px;
    right: 10px;
    padding: 10px 7px;
    border: 1px solid #c59368;
    border-radius: 50%;
    line-height: 0;
    background: #c59368;
    font-size: 1.2rem;
    animation-name: bell-ring;
    animation-duration: 0s;
    animation-iteration-count: infinite;
}

#notifications .notifications__countdown {
    position: absolute;
    top: 15px;
    right: 0;
    padding: 10px 7px;
    background: #ed5338;
    border: 1px solid #ed5338;
    border-radius: 50%;
    line-height: 0;
    font-size: 1.2rem;
    animation-name: bell-ring;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

#notifications div {
    border-radius: 50%;
    line-height: 0;
    position: absolute;
    top: 15px;
    right: 0;
    padding: 10px 7px;
    border: 1px solid #ed5338 !important;
    animation-name: bord-pop;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;
    font-size: 1.2rem;
}

.notifications__list {
    position: absolute;
    background: #FFF;
    width: 150%;
    left: 0px;
    margin-top: 65px;
    z-index: 1;
    border: 1px solid #e5e4e4;
    display: flex;
    flex-direction: column;
}

@media (max-width: 997px) {
    .notifications__list {
        width: 244px;
    }
}

.notifications__list-status {
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 5px;
    font-size: 0.5rem;
    background: #ed5338;
    border-radius: 50%;
    line-height: 0;
}

.notifications__list-elem {
    position: relative;
    border-top: 1px solid #e5e4e4;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.5s;
    display: inline-flex;
}

.notifications__list-elem:hover {
    background: #efefef;
    transition: all 0.5s;
}

.notifications__list h5 {
    margin: unset;
    line-height: 1.5rem;
    font-size: 1.5rem;
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
}

.notifications__list .notifications__list-prev {
    font-size: 1.2rem;
    line-height: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: unset;
}

@keyframes bord-pop {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.9);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.9);
        opacity: 0;
    }
}

@keyframes col {
    0% {
        transform: scale(1) translate(0, 0);
    }
    10% {
        transform: scale(1.1) translate(0, 0);
    }
    75% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

@keyframes bell-ring {
    0% {
        transform: translate(-50%, -50%);
    }
    5%, 15% {
        transform: translate(-50%, -50%) rotate(25deg);
    }
    10%, 20% {
        transform: translate(-50%, -50%) rotate(-25deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

#staticNotify h3 {
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    width: 90%;
}