/* * {
    margin: 0;
    padding: 0;
} */

/* ========================

    chatbot detail

===========================*/

.section__chat-detail {
    width: 400px;
    position: fixed;
    right: 10px;
    bottom: -400px;
}
/* =========================

    Chatbot button

===========================*/

.chat__box {
    position: relative;
    height: 100vh;
    background-color: #e7e7e7;
}

.chat__box--user {

    text-align: center;
}

.chat__box--user > i {
    font-size: 30px;
    line-height: 60px;
    color: #fff;
}
/*
    styling chat box section
*/

.chat__box--user {
    width: 60px;
    height: 60px;
    background: #0066bf;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    bottom: 15px;
    z-index: 999;
    opacity: 1;
    
    -webkit-animation: fadeIn-out 10s;
    -moz-animation: fadeIn-out 10s;
    -o-animation: fadeIn-out 10s;
    -ms-animation: fadeIn-out 10s;
    animation: fadeIn-out 10s;

    /* -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    -ms-animation-delay: 2s;
    animation-delay: 2s; */
}


/* // safari and chrome */
@-webkit-keyframes fadeIn-out {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        bottom: 20px;
        opacity: 1;
    }

    80% {
        bottom: 20px;
        opacity: 1;
    }
    100% {
        bottom: 20px;
        opacity: 1;
    }
}

/* // firefox */
@-moz-keyframes fadeIn-out {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        bottom: 20px;
        opacity: 1;
    }

    80% {
        bottom: 20px;
        opacity: 1;
    }
    100% {
        bottom: 20px;
        opacity: 1;
    }
}

/* // opera */
@-o-keyframes fadeIn-out {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        bottom: 20px;
        opacity: 1;
    }
    80% {
        bottom: 20px;
        opacity: 1;
    }
    100% {
        bottom: 20px;
        opacity: 1;
    }
}

/* // edge */
@-ms-keyframes fadeIn-out {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        bottom: 20px;
        opacity: 1;
    }
    80% {
        bottom: 20px;
        opacity: 1;
    }
    100% {
        bottom: 20px;
        opacity: 1;
    }
}

/* // Standard syntax */
@keyframes fadeIn {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        bottom: 20px;
        opacity: 1;
    }

    80% {
        bottom: 20px;
        opacity: 1;
    }
    100% {
        bottom: 20px;
        opacity: 1;
    }
}





/* // safari and chrome */
@-webkit-keyframes slide-out {
    0% {
        right: 0;
        opacity: 0;
    }
    15% {
        right: 30px;
        opacity: 1;
    }
    80% {
        right: 30px;
        opacity: 1;
    }
    100% {
        right: 0;
        opacity: 0;
    }
}

/* // firefox */
@-moz-keyframes slide-out {
    0% {
        right: 0;
        opacity: 0;
    }
    15% {
        right: 30px;
        opacity: 1;
    }
    80% {
        right: 30px;
        opacity: 1;
    }
    100% {
        right: 0;
        opacity: 0;
    }
}

/* // opera */
@-o-keyframes slide-out {
    0% {
        bottom: 0;
        opacity: 0;
    }
    10% {
        bottom: 50px;
        opacity: 1;
    }
    80% {
        bottom: 50px;
        opacity: 1;
    }
    100% {
        bottom: 0px;
        opacity: 0;
    }
}

/* // edge */
@-ms-keyframes slide-out {
    0% {
        right: 0;
        opacity: 0;
    }
    15% {
        right: 30px;
        opacity: 1;
    }
    80% {
        right: 30px;
        opacity: 1;
    }
    100% {
        right: 0;
        opacity: 0;
    }
}

/* // standard */
@keyframes slide-out {
    0% {
        right: 0;
        opacity: 0;
    }
    15% {
        right: 30px;
        opacity: 1;
    }
    80% {
        right: 30px;
        opacity: 1;
    }
    100% {
        right: 0;
        opacity: 0;
    }
}

.chat__box--message {
    width: 350px;
    padding-left: 30px;
    border-radius: 80px;
    background-color: #1d88c2;
    position: absolute;
    /* // z-index:-100; */
    right: 30px;
    bottom: 20px;
    opacity: 0;
    /* -webkit-animation: slide-out 6s;
    -moz-animation: slide-out 6s;
    -o-animation: slide-out 6s;
    -ms-animation: slide-out 6s;
    animation: slide-out 6s;

    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    -o-animation-delay: 4s;
    -ms-animation-delay: 4s;
    animation-delay: 4s; */
}



.chat__box--message p {
    color: #e7e7e7;
    line-height: 50px;
    font-family: "open sans";
}
