﻿.notif-box::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 5px
}

.notif-box::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
    border-radius: 5px
}

.notif-box::-webkit-scrollbar-thumb {
    background-color: black;
    border: 2px solid black;
    border-radius: 5px
}


.notif-icons {
    display: none; /*inline;*/
    float: right
}

.notif-notification {
    /*padding-top: 30px;*/
    position: relative;
    display: inline-block;
}

.notif-number {
    height: 32px;
    width: 32px;
    background-color: #d63031;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: absolute;
    top: -10px;
    left: 60px;
    /*padding: 3px;*/
    border-style: solid;
    border-width: 2px;
    animation: pulse 2s ease-out;
    animation-iteration-count: infinite;
}

    .notif-number:empty {
        display: none;
    }

.notif-notBtn {
    transition: 0.5s;
    cursor: pointer
}

.notif-fas {
    font-size: 20pt;
    padding-bottom: 10px;
    color: black;
    margin-right: 40px;
    margin-left: 40px;
}

.notif-box {
    width: 500px;
    height: 0px;
    border-radius: 10px;
    transition: 0.5s;
    position: absolute;
    overflow-y: auto;
    padding: 0px;
    left: -300px;
    margin-top: 5px;
    background-color: #F4F4F4;
    -webkit-box-shadow: 10px 10px 23px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 10px 10px 23px 0px rgba(0,0,0,0.1);
    box-shadow: 10px 10px 23px 0px rgba(0,0,0,0.1);
    cursor: context-menu;
    z-index: 10000;
    scrollbar-width: thin;
    scrollbar-color: #337ab7 #96c5ee;
}

.notif-fas:hover {
    color: #d63031;
}

.notif-notBtn:hover > .notif-box {
    height: 60vh
}

.notif-content {
    padding: 20px;
    color: black;
    vertical-align: middle;
    text-align: left;
}

.notif-gry {
    background-color: #F4F4F4;
}

.notif-top {
    color: black;
    padding: 10px;    
}

.notif-display {
    position: relative;
}

.notif-cont {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #F4F4F4;
}

    .notif-cont:empty {
        display: none;
    }

.notif-stick {
    text-align: center;
    display: block;
    font-size: 50pt;
    padding-top: 70px;
    padding-left: 80px
}

    .notif-stick:hover {
        color: black;
    }

.notif-cent {
    text-align: center;
    display: block;
}

.notif-sec {
    padding: 25px 10px;
    background-color: #F4F4F4;
    transition: 0.5s;
}

.notif-profCont {
    padding-left: 15px;
}

.notif-profile {
    /*-webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);*/
    max-width: 75px;
    max-height:105px;
    float: left;
}

.notif-txt {
    vertical-align: top;
    font-size: 1.25rem;
    padding: 5px 10px 0px 115px;
}

.notif-sub {
    font-size: 1rem;
    color: grey;
}

.notif-new {
    border-style: none none solid none;
    border-color: red;
    padding-bottom: 30px;
    min-height: 150px;
}

.notif-sec:hover {
    background-color: #BFBFBF;
}

@keyframes pulse {
    40% {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.3, 1.3, 1.3);
    }

    55% {
        transform: scale3d(1, 1, 1);
    }

    60% {
        transform: scale3d(1.3, 1.3, 1.3);
    }

    65% {
        transform: scale3d(1, 1, 1);
    }
}
