/* multiple */

    .kl-note-green, .kl-note-blue{
        position: fixed;
        z-index: 99999;
        width: 98%;
        margin: 0 auto;
        left: 0;
        right: 0;
        box-shadow: 2px 2px 37px rgb(0 0 0 / 27%);
        border-radius: 10px;
    }
    
/* green */

    .kl-note-green a{
        position: relative;
    }

    .kl-note-green a::before {
        content: "";
        position: absolute;
        background: #fff;
        width: 32px;
        height: 32px;
        display: block;
        opacity: 0.2;
        border-radius: 20px;
    }

    .kl-note-green a:hover::before {
        opacity: 0.4;
    }

    .kl-note-green {
        top: 95px;
        height: 77px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #34A853;
        padding: 30px;
    }

    .kl-note-green p {
        margin: 0;
        color: #fff;
        max-width: 80%;
    }

    .success{
        background-color: green;
    }
    
/* red */

    .kl-note-green.kl-note-red {
        top: 190px;
        background: #FB4E6E;
    }

    .kl-red-warning {
        color: #FB4E6E;
        font-size: 14px;
        display: flex;
        align-items: center;
        position: relative;
        bottom: 5px;
    }

    .kl-red-warning-pub {
        bottom: 30px;
    }
    
    .kl-red-warning img {
        position: relative;
        bottom: 2px;
        margin-right: 5px;
    }

    .error{
        background-color: red;
    }
    
/* blue */

    .kl-note-blue {
        background: #2A5EE3;
        bottom: 45px;
        height: 200px;
        padding: 25px;
        max-width: 409px;
    }

    .kl-note-blue .kl-know-more {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .kl-note-blue p {
        font-size: 16px;
        color: #fff;
        margin: 10px 0 0;
    }

    .kl-note-blue .kl-know-more h4 {
        font-size: 30px;
        color: #fff;
        margin: 0;
    }

    .kl-note-blue .kl-know-more h4 img {
        margin: 0 5px 5px 0;
    }

    .kl-note-blue a {
        position: relative;
        cursor: pointer;
    }

    .kl-note-blue a::before {
        content: "";
        position: absolute;
        background: #fff;
        width: 32px;
        height: 32px;
        display: block;
        opacity: 0.2;
        border-radius: 20px;
    }

    .kl-note-blue a:hover::before {
        opacity: 0.4;
    }
    
/* close */

    .kl-close-plus {
        padding: 3px;
        position: relative;
        width: unset;
    }

    .close {
        position: absolute;
        background-color: #000;
        width: 32px;
        height: 32px;
        opacity: 1;
    }

/* je ne sais pas encore */

    a.kl-forget-pass {
        position: absolute;
        z-index: 1;
        top: 11px;
        right: 14px;
        background: white;
        padding-left: 6px;
    }

/* Alertes responsiv */

    @media screen and (max-width: 1199.98px){
        .kl-note-green {
            width: 96%;
        }

        .kl-messaging img {
            width: 65px;
            height: 65px;
        }
    }
    
    @media screen and (max-width: 991.98px){
        .kl-note-green {
            height: auto;
        }

        .kl-note-green.kl-note-red {
            top: 250px;
        }

        .kl-messaging {
            right: 15px;
            bottom: 15px;
            position: fixed;
        }
    }

    @media screen and (max-width: 767.98px){
        .kl-red-warning-pub {
            bottom: 20px;
        }

        .kl-messaging img {
            width: 55px;
            height: 55px;
        }

        .kl-note-green {
            padding: 15px;
        }
    
        .kl-note-green p {
            padding: 0 15px;
            font-size: 14px;
        }
    }

    @media screen and (max-width: 450px){
        .kl-note-green.kl-note-red {
            top: 290px;
        }
    }

    @media screen and (max-width: 424.98px){
        .kl-note-blue {
            height: auto;
            width: 90%;
        }
        
        .kl-note-blue .kl-know-more h4 {
            font-size: 25px;
        }
        
        .kl-note-blue p {
            font-size: 15px;
        }
    }  