.notificationsDiv{
    padding:5px;
    text-align: center;
    color:white;
}

.notificationsBackgroundDiv{
    position: fixed;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color:rgba(51, 54, 59, 0.2);
    padding:20px;
}

.notificationsModalBackground{
    position: relative;
    max-width:700px;
    width:100%;
    height: 400px;
    background:url("../image/notificationsBackground.jpg") no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:20px;
    opacity: 0;
    animation-duration : 0.33s;
    animation-name: showModal;
    animation-fill-mode: forwards;
}
.animationTest{
    animation-duration : 0.33s;
    animation-name: showModal;
    animation-fill-mode: forwards;
}
@keyframes showModal {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}


.notificationsModal{
    background:white;
    max-width:400px;
    width:100%;
    padding:20px;
}


.notificationsModal h2{
    text-align: center;
    font: normal normal bold 35px/41px Helvetica Neue LT Std;
    letter-spacing: 0px;
    color: #D8232A;
    text-transform: uppercase;
}

.notificationsModal p{
    text-align: center;
    font: normal normal bold 18px/26px Montserrat;
    letter-spacing: 0px;
    color: #2B2B2B;
    text-transform: uppercase;
}

.notificationsModal div, .notificationsModal p{
    margin-top: 20px;
}
.notificationsModal button{
    width:30%;
    height:30px;
    border:none;
    color:white;
    font-weight: 100;
    transition:0.33s;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 5px;
}


.RejectNotification{
    background: #000000 0% 0% no-repeat padding-box;
}

.RejectNotification:hover{
    color:rgb(209, 207, 207) !important;
    cursor:pointer;
}

.AcceptNotification{
    background: #D8232A 0% 0% no-repeat padding-box;
}

.AcceptNotification:hover{
    color:rgb(33, 33, 33) !important;
    cursor:pointer;
}

.closeNotifications{
    position: absolute;
    top:0;
    left:90%;
    width:10%;
    height:10%;
}


.notificationsNext, .notificationsPrevious{
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    position: absolute;


}
.notificationsNext{
    transform: rotate(45deg);
    left: 93%;
    top: 50%;
}
.notificationsPrevious {
    transform: rotate(225deg);
    left: 2%;
    top: 50%;
}


.notificationsNext::before,  .notificationsPrevious::before{
     content: '';
     width: 100%;
     height: 100%;
     border-width: .8vmin .8vmin 0 0;
     border-style: solid;
     border-color: #fafafa;
     transition: .2s ease;
     display: block;
     transform-origin: 100% 0;
 }


.notificationsNext::after, .notificationsPrevious::after {
     content: '';
     float: left;
     position: relative;
     top: -100%;
     width: 100%;
     height: 100%;
     border-width: 0 .8vmin 0 0;
     border-style: solid;
     border-color: #fafafa;
     transform-origin: 100% 0;
     transition:.2s ease;
 }

.notificationsNext:hover::after, .notificationsPrevious:hover::after {
     transform: rotate(45deg);
     border-color: orange;
     height: 120%;
 }
.notificationsNext:hover::before, .notificationsPrevious:hover::before {
     border-color: orange;
     transform: scale(.8);

 }

