body{
    overflow: auto;
}
#pageLoader{
    display: none;
}
.notification{
    height: 80px !important;
}
.notification.js{
    z-index: 16;
    display: block !important;
    bottom: -80px;
    height: 0px;
    animation: fadeNoJs 5s ease 0s 1 normal;
}
.notification.cookies{
    display: block !important;
    bottom: -80px;
    animation: fadeCook 10s ease 0s 1 normal;
}
.notificationCont{
    padding: 0px;
}
.button.notificationBtn{
    display: none;
}

@keyframes fadeNoJs{
    0%{
        bottom: 0px;
    }
    90%{
        bottom: 0px;
    }
    100%{
        bottom: -80px;
    }
}
@keyframes fadeCook{
    0%{
        bottom: 80px;
    }
    45%{
        bottom: 80px;
    }
    50%{
        bottom: 0px;
    }
    95%{
        bottom: 0px;
    }
    100%{
        bottom: -80px;
    }
}