﻿
 
 
/* Move it (define the animation) */
@-moz-keyframes scroll-right {
 0%   { -moz-transform: translateX(-100%); }
 100% { -moz-transform: translateX(100%); }
}
@-webkit-keyframes scroll-right {
 0%   { -webkit-transform: translateX(-100%); }
 100% { -webkit-transform: translateX(100%); }
}
@keyframes scroll-right {
 0%   { 
  -moz-transform: translateX(-100%); /* Firefox bug fix */
  -webkit-transform: translateX(-100%); /* Firefox bug fix */
  transform: translateX(-100%); 	
 }
 100% { 
 -moz-transform: translateX(100%); /* Firefox bug fix */
 -webkit-transform: translateX(100%); /* Firefox bug fix */
 transform: translateX(100%); 
 }
}
  


 
/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {right: 0; opacity: 0;}
  to {right:1%; opacity: 1;}
}

@keyframes fadein {  
  from {right: 0; opacity: 0;}
  to {right:1%; opacity: 1;} 
}

@-webkit-keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1
    }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1
    }
}



.notifications-container {
    position: fixed;
    bottom: 3%;
    right: 2%;
    z-index: 9999;
    width: 400px;
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

.notifications {
    border-radius: 4px;
    height: 120px;
    background-color: #117a8b;
    color: #eee;
    box-shadow: 0 0 20px 5px rgb(194 0 0 / 30%);
    box-shadow: #117a8b 0px 0px 0px 5px;
}

.notifications-p1 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: 16px;
    width: 20px;
    text-align: left; 
}

.notifications-p1 i {
        font-size: 25px;
}


.notifications-p2 {
    padding-left: 5px;
    padding-right: 15px;
    padding-top: 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 5px;
    left: 40px;
    height: 115px;
    width: 90%;
}

    .notifications-p2 h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .notifications-p2 p {
            font-size: 17px;
            margin-bottom: 0;
            font-weight: 600;
            color: #fff;
            line-height: 1.7;
    }



.notifications-p3 {
    color: #C20000;
    border-color: #C20000;
    opacity: 1;
    background-color: #eee;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #C20000;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #117a8b;
    border: 2px solid #117a8b;
}

 
 .h4, h4 {
    font-size: 1.1rem;
}