.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;white-space: nowrap;clip-path: inset(50%);
}

.notifications-container{
    position: fixed;
    right: 0;top: 10%;z-index: 99999;
}
.notifications-container .psf-link{
    display: block;
    width: 42px;
    height: 42px;
    padding: 10px;
}
.notifications-container  .notifications-icon{
    margin-bottom: 0;
    width: 14px;
    line-height: 13px;
    font-size: 11px;
    height: 13px;
    background-color: #d7410b;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    margin-left: 12px;
    display: none;
    text-align: center;

}
.notifications-container  #bell-icon-svg{
    color: #165dba;
    fill: currentColor;
}

.notifications-container .notifications-main{
    right: 42px;
    position: absolute; 
    top: 0px;
    width: 400px;
    height: auto;
    background-color: #efefef;
    border: 1px solid;
    border-color: #ccc #ccc #adadad;
    box-shadow: 0 3px 3px rgb(0 0 0 / 20%);
    padding: 10px;
    display: none;
}
@media screen and (min-width: 0) and (max-width: 568px)
{
    .notifications-container .notifications-main
    {
        left: -webkit-calc( -100vw + 42px);
        left: -moz-calc( -100vw + 42px);
        left: calc( -100vw + 42px);
        width: 100vw;top: 42px;
    }
}
.notifications-container .notifications-main .close-bg {
    position: relative;
    height: 25px;
}
.notifications-container .notifications-main .close-bg a.close-alert
{
    position: absolute;
    z-index: 10;
    top: 0px;
    right: 0;

    width: 13px;
    height: 13px;

    cursor: pointer;
    -webkit-transition: all .5s ease;
            transition: all .5s ease; 
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
@media screen and (min-width: 0) and (max-width: 568px)
{
    .notifications-container .notifications-main .close-bg a.close-alert
    {
        /*top: -50px;
        right: 0;

        width: 40px;
        height: 40px;*/
    }
}
.notifications-container .notifications-main .close-bg a.close-alert:hover
{
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
}
.notifications-container .notifications-main .close-bg a.close-alert:before
{
    position: absolute;
    top: 6px;
    right: 0;

    width: 100%;
    height: 1px;

    content: '';

    background: #000;
}
@media screen and (min-width: 0) and (max-width: 568px)
{
    .notifications-container .notifications-main .close-bg a.close-alert:before
    {
        /*top: 20px;*/
    }
}
.notifications-container .notifications-main .close-bg a.close-alert:after
{
    position: absolute;
    top: 0;
    left: 6px;

    width: 1px;
    height: 100%;

    content: '';

    background: #000;
}
@media screen and (min-width: 0) and (max-width: 568px)
{
    .notifications-container .notifications-main .close-bg a.close-alert:after
    {
        /*left: 20px;*/
    }
}
 

.notifications-container .notifications-main .alertNotification-scroll{
    max-height: 250px;
    overflow-y: auto; 
}
.notifications-container .notifications-main .alertNotification-scroll::-webkit-scrollbar {
    width: 5px;
    background: #fff;
    position: relative;
    left: 10px;
}

.notifications-container .notifications-main .alertNotification-scroll::-webkit-scrollbar-track {
    background: #f3f3f3;
/*    margin-top: 10px;
    margin-bottom: 10px;*/
    border-radius: 5px;
    margin-right: 10px;
}

.notifications-container .notifications-main .alertNotification-scroll::-webkit-scrollbar-thumb {
    background: #707070;
    border-radius: 5px;
    margin-right: 10px;
}

.notifications-container .notifications-main .notification-title {
    position: relative;
    padding: 0 15px;
    height: 34px;
    line-height: 36px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;    background-color: #767676;
}

.notifications-container .notifications-main .notification-body{
    font-size: 14px; 
    padding: 15px;
    background-color: #fff;
    margin: 0 0 10px;
    text-align: left;
    color: #767676;
}
.notifications-container .notifications-main .notification-body .notification-text a{
    text-decoration: underline;font-weight: bolder;
}

