html{
    --fix-right: 1rem;
    --fix-bottom: 3.8rem;
}
#chatLine {
    position: fixed;
    right: var(--fix-right);
    bottom: var(--fix-bottom);
    background: linear-gradient(138deg, rgb(0, 63, 136), rgb(97, 140, 199));
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    box-sizing: border-box;
    padding: 1rem;

    /* animation: neonPulse 2s ease-in-out infinite alternate; */
    z-index: 600;
}

.cl_logo {
    width: 100%;
    height: 100%;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 5px #00ff88,
            0 0 10px #00ff88,
            0 0 15px #00ff88;
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px #00ff88,
            0 0 40px #00ff88,
            0 0 60px #00ff88;
        transform: scale(1.05);
    }
}

.cl_box_new_msg{
    position: fixed;
    border: 0px solid black;
    border-radius: .4rem;
    width: 30%;
    min-width: 20rem;
    min-height: 7rem;
    right: var(--fix-right);
    bottom: var(--fix-bottom);
    padding-left: 1rem;

    display: flex;
    flex-flow: column;
    justify-content: start;
    background-color: white;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    z-index: 500;
}


.cl_new_msg{
    padding: .5rem 2rem .5rem .2rem;
    position: relative
}
.cl_new_close{
    position: absolute;
    width: 1.6rem;
    height: 1.6rem;  
    right: .3rem;
    top: .3rem;
    z-index: 900;
}
.cl_fast_rep{
    display: flex;
    margin-top: 1rem;
}
.cl_fast_send{
    width: 1rem;
    height: 1rem;
}
.cl_fast_btn{
    background: linear-gradient(135deg, #007ba7 0%, #2a9df4 100%);
    box-shadow: 0 8px 32px rgba(42, 157, 244, 0.3);
    color: white;
    padding: .2rem .4rem;
    color: .8rem;
    border-radius: .3rem;
}