.return_notif {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 4100;
}
.notif {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--black);
    z-index: 4000;
    width: 300px;
    border-radius: var(--primary-border-radius);
    padding: 20px;
}
.return_notif .notif {
    margin-bottom: 10px;
    position: relative;
    top: 0px;
    right: 0px;
    z-index: 0;
    cursor: pointer;
}
.notif.bf {
    border-radius: var(--secondary-border-radius);
    padding: 15px 40px 15px 10px;
}
.notif > div{
    width:100%;
}
.notif.valid {
    background-color: var(--primary-normal);
}
.notif.bf.valid {
    background-color: var(--primary-pressed);
}
.notif.bf.valid.catalogue {
    background-color: var(--white);
    border: 5px solid var(--blue);
    border-radius: 0px;
    padding: 20px 50px 20px 15px;
}
.notif.novalid {
    background-color: var(--third-normal);
}
.notif img {
    height: 80px;
    width: auto;
}
.notif.bf img {
    height: 50px;
}
.notif img.close {
    height: 30px;
    width: auto;
    position: absolute;
    top: 10px;
}
.notif p {
    color: var(--white);
    font-family: var(--secondary-font);
    font-size: 0.875em;
    margin-left: 20px;
    font-weight: 500;
    line-height: 20px;
}
.notif.bf p {
    font-family: var(--secondary-font);
    font-size: 0.875em;
    margin-left: 15px;
    line-height: 18px;
}
.notif.bf p b {
    font-family: var(--primary-font);
}
.notif.bf.catalogue p {
    color: var(--black);
    font-weight: 300;
}
/** Redirection vers les réseaux sociaux **/
.notif.next_step {
    cursor: pointer;
}
.notif.next_step a {
    font-family: var(--secondary-font);
    font-weight: 500;
    line-height: 20px;
    width: 100%;
}
.notif.next_step {
    background-color: var(--pressed);
    top: 145px;
}
.notif.next_step:hover {
    background-color: var(--black);
}
.notif.next_step a p {
    text-transform: uppercase;
    margin: 0;
}
.notif.next_step img {
    width: 20px;
    height: auto;
}
/** Loader **/
.notif .loader_close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    z-index: 2000;
}
.notif .loader_close svg:first-child {
    margin: auto;
    display: block;
    border-radius: 50%;
    height: auto;
    max-width: 100%;
    width: 30px;
    transform: rotate(-90deg);
}
.notif:not(.is-hidden) .svg-outer-circle {
    fill: none;
    stroke-dasharray: 0 100;
    stroke-width: 50;
    stroke: var(--white);
    animation: countDown 10s linear forwards;
    animation-direction: reverse;
}
.notif.catalogue:not(.is-hidden) .svg-outer-circle {
    stroke: var(--secondary-normal);
}
.notif .loader_close .succes {
    fill: var(--secondary-normal);
}
.notif.catalogue .loader_close .succes {
    fill: var(--white);
}
.notif.catalogue .cross path{
    fill: var(--secondary-normal);
}
.notif svg {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
}
.bounceInRight {
    -webkit-animation: bounceInRight 1s linear;
    -moz-animation: bounceInRight 1s linear;
    -o-animation: bounceInRight 1s linear;
    animation: bounceInRight 1s linear;
}
/** Keyframes **/
@keyframes countDown {
    to {
        stroke-dasharray: 100 100;
    }
}
@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}