.chatbot {
    position: fixed;
    right: 30px;
    bottom: 30px;
    margin: 0;
    z-index: 1000;
}
@media screen and (min-width: 1880px) {
    .chatbot {
        transform: scale(1.1);
        transform-origin: bottom right;
    }
}
@media screen and (min-width: 2200px) {
    .chatbot {
        transform: scale(1.2);
    }
}
@media screen and (min-width: 2600px) {
    .chatbot {
        transform: scale(1.4);
    }
}
.chatbot__help-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    background: white url(images/help-chatbot.svg) no-repeat center;
    background-size: auto;
    background-position: 10px 50%;
    border: 0;
    outline: 0;
}

.chatbot__content {
    display: none;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.3);
    max-width: 340px;
    padding-bottom: 5px;
}
.chatbot__content-inner > *{
    padding: 10px 15px;
}
.chatbot__header {
    border-bottom: 1px solid #DBDBDB;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot__close {
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
}

.chatbot__footer {
    position: relative;
}
.chatbot__footer input {
    width: 100%;
    background: #F5F3EF;
    font-size: 14px;
    border: 1px solid #DBDBDB;
    margin: 0;
    padding: 14px;
    padding-right: 50px;
}
.chatbot__footer input:focus + button {
    opacity: 1;
}
.chatbot__footer button {
    width: 32px;
    height: 32px;
    background: #FF2E38 url(images/arrow-right-white.svg) no-repeat center;
    border-radius: 50%;
    border: 0;
    outline: 0;
    position: absolute;
    right: 27px;
    top: 17px;
    opacity: 0;
    transition: .2s;
}

.conversation {
    max-height: 380px;
    overflow: auto; 
    line-height: 1.3;
    font-size: 14px;

    height: 380px;
    /*display: flex;
    flex-wrap: wrap;
    align-items: flex-end;*/

    position: relative;
}
.bubble {
    background: #F5F3EF;
    border-radius: 10px;
    border: 1px solid #DBDBDB;
    font-size: 14px;
    padding: 15px 26px;
    margin-top: 15px;
    /*width: 100%;*/
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative;

    float: left;
    clear: both;
}
.questions {
    padding-left: 30px;
    margin-top: 16px;
}
.questions li {
    cursor: pointer;
    margin: 8px 0;
    list-style: disc;
}
.questions li:hover {
    text-decoration: underline;
}

.bubble a {
    background: #FF2E38;
    color: white;
    text-align: center;
    display: block;
    margin: 10px 0;
    padding: 0 16px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}
.bubble:before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url(images/picto-chatbot.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: -10px;
    left: -10px;
}
.bubble.satisfait {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bubble.satisfait a {
    display: inline-flex;
    width: 46%;
}
.bubble.bubble--right {
    margin-left: auto;
    margin-right: -10px;
    background: #888888;
    color: white;
    float: right;
    padding-top: 12px;
    padding-bottom: 12px;
}
.bubble.bubble--right + .bubble.bubble--right {
    margin-top: 4px;
}
.bubble.bubble--right:before {
    display: none;
}

.bubble textarea {
    border: 1px solid #DBDBDB;
    min-height: 88px;
    padding: 4px 6px;
    width: 100%;
    margin-top: 8px;
}

.bubble p {
    margin: 0;
}
.bubble > *:first-child + p {
    margin-top: 10px;
}


@media screen and (max-width: 640px) {
    .chatbot {
        /*top: 60px;*/
        left: 0;
        bottom: 0;
        right: 0;
        transition: 0;
    }

    .chatbot.mobiletransitionstart {
        transform: translateY(100%);
    }
    .chatbot.mobiletransitionend {
        transition: 1.2s;
        transform: translateY(0);
    }

    .chatbot__help-icon {
        bottom: 15px;
        right: 15px;
    }
    .chatbot__content {
        max-width: 100%; 
        height: 100%;
    }
    .chatbot__content-inner {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .conversation {
        height: auto;
        max-height: none;
        flex: 1;
        max-height: calc(100vh - 210px);
    }

}





.wave .dot {
    display:inline-block;
    width:6px;
    height:6px;
    border-radius:50%;
    margin-right:5px;
    background:#303131;
    animation: wave 1.3s linear infinite;

}
.wave .dot:nth-child(2) {
    animation-delay: -1.1s;
}

.wave .dot:nth-child(3) {
    animation-delay: -0.9s;
}

@keyframes wave {
    0%, 60%, 100% {
        transform: initial;
    }

    30% {
        transform: translateY(-10px);
    }
}