﻿.notifications-container {
    overflow: hidden;
}
.notification-img {
    background-image: url('../images-new/notifications/fireworks.svg');
    background-color: #32c626;
    width: 25%;
    min-width: 72px;
    border-radius: 10px 29px 29px 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
.aside-notification {
    top: initial;
    bottom: initial;
    left: initial;
    right: initial;
    transform: initial;
    box-shadow: 1px 2px 10px 0 rgba(0,0,0,.36);
    /*padding: 10px 50px;*/
    animation: shook 10s infinite;
    display: flex;
    align-items: center;
    max-width: 300px;
    min-height: 70px;
}
    .aside-notification.disappear-left {
        animation: hide-left .5s;
    }
    .aside-notification.disappear-right {
        animation: hide-right .5s;
    }
    .shadow-notification.aside-notification .notification-message {
        font-size: 18px
    }
.shadow-notification.aside-notification .notification-tab {
    text-align: left;
    padding: 0;
    padding-left: 33%;
    padding-right: 23px;
    color: #656565;
    flex: 1;
}
.aside-notification img {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 11px;
}
    .aside-notification img:hover {
        cursor: pointer;
    }
    .aside-notification .btn {
        margin-bottom: 15px;
        font-size: 12px;
    }
@keyframes hide-left {
    0% {
        transform: translateX(0px);
    }
    10% {
        transform: translateX(10px);
    }
    20% {
        transform: translateX(20px);
    }
    30% {
        transform: translateX(30px);
    }
    40% {
        transform: translateX(40px);
    }
    50% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(-500px);
    }
}
@keyframes hide-right {
    0% {
        transform: translateX(0px);
    }
    10% {
        transform: translateX(-10px);
    }
    20% {
        transform: translateX(-20px);
    }
    30% {
        transform: translateX(-30px);
    }
    40% {
        transform: translateX(-40px);
    }
    50% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(500px);
    }
}
@keyframes shook {
    0% {
        transform: rotate(2.5deg);
    }

    1.5% {
        transform: rotate(-2.5deg);
    }

    2.5% {
        transform: rotate(2.5deg);
    }

    3% {
        transform: rotate(-2.5deg);
    }

    3.5% {
        transform: rotate(2.5deg);
    }

    4% {
        transform: rotate(-2.5deg);
    }

    4.5% {
        transform: rotate(2.5deg);
    }

    5% {
        transform: rotate(-2.5deg);
    }

    5.5% {
        transform: rotate(2.5deg);
    }

    6% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}