@media screen and (max-width: 1200px) {
    #wrap-all-chatbot{
        display: none;
    }
}


@media screen and (min-width: 1200px) {
    #peekobot-container {
        border: 1px solid hsl(0, 0%, 90%);
        border-radius: 12px;
        box-shadow: 2px 2px 5px hsl(0, 0%, 60%);
        padding: 1rem 1rem 2rem 1rem;
    / / position: relative;
        width: 20vw;
        height: 20vw;
        position: fixed;
        z-index: 1000;
        bottom: 5px;
        right: 25px;
        display: none;
        background-color: white;
    }

    #peekobot-inner {
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        scroll-behavior: smooth;
        position: relative;
        /* Hiding scrollbars is a pain. This is from: https://redstapler.co/css-hidden-scrollbar-while-scrollable-element/ */
        scrollbar-width: none;
        -ms-overflow-style: none;
        z-index: 1000;

    }

    #peekobot-inner::-webkit-scrollbar {
        display: none; /* Chrome Safari */
    }

    .chat-response,
    .chat-ask {
        opacity: 0; /* Set to activated to show */
        transform: translateY(-50%); /* Set to activated to move down */
        transition: all 0.3s 0.3s;
        border-radius: 12px;
        background-color: hsl(0, 0%, 90%);
        padding: 0.5rem 0.7rem;
        line-height: 1.4;
        color: black;
        width: 80%;
        margin-bottom: 0.5rem;
        z-index: 1000;

    }

    .chat-response {
        margin-left: 26px;
        position: relative;
        z-index: 1000;

    }

    .chat-response:before {
        display: block;
        content: '';
        width: 24px;
        height: 24px;
        position: absolute;
        left: -26px;
        top: 6px;
        background-image: url("https://www.mediverif.fr/chatbot.png");
    / / background-color: #999;
        background-repeat: no-repeat;
        background-size: 100%;
        border-radius: 100%;
        z-index: 1000;
        border: 0.5px black solid;
        background-position-y: center;
    }

    .chat-ask {
        background-color: hsl(207, 96%, 55%);
        margin-right: 0;
        margin-left: auto;
        z-index: 1000;

        color: hsl(0, 0%, 100%);
    }

    .choices {
        opacity: 0; /* Set to active to show */
        transform: translateY(-50%); /* Set to activated to move down */
        transition: all 0.3s 0.3s;
        transition: opacity 0.3s 0.3s;
        margin-top: 0.5rem;
        margin-left: 22px;
        z-index: 1000;

    }

    .choice {
        display: inline-block;
        outline: none;
        border: 1px solid hsl(0, 0%, 0%);
        padding: 0.3rem 0.8rem;
        background-color: hsl(0, 0%, 90%);
        border-radius: 1rem;
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
        margin-right: 0.5rem;
        text-decoration: none;
        color: inherit;
        z-index: 1000;

        cursor: pointer;
    }

    .choice:disabled {
        color: hsl(0, 0%, 80%);
        border-color: hsl(0, 0%, 80%);
    }

    .activated {
        opacity: 1;
        transform: translateY(0);
        z-index: 1000;

    }

    .restart {
        position: absolute;
        bottom: 0.5rem;
        right: 0.5rem;
        outline: none;
        font-size: 12px;
        color: hsl(0, 0%, 50%);
        box-shadow: none;
        border: 1px solid hsl(0, 0%, 60%);
        border-radius: 1rem;
        background-color: #ee4b52;
        padding: 0.2rem 0.5rem;
        cursor: pointer;
        z-index: 1000;

    }

    #button-bot {
        width: 50px;
        height: 50px;
        background-color: #ee4b52;
        border-radius: 100%;
    / / position: absolute;
        bottom: 15px;
        right: 15px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        position: fixed;
        z-index: 1000;
        border: 2px black solid;
    }

    #button-bot img {
        margin: auto;
        z-index: 1000;
    }

    #header-chatbot {
        width: 20vw;
        margin-bottom: 5px;
        border-bottom: 1px black solid;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: -1rem;
        background-color: #45869b;
        height: 10%;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        margin-top: -1rem;
        z-index: 1000;

    }

    #name-chatbot {
        display: inline-block;
        margin-top: 5px;
        z-index: 1000;
        color: black;
    }

    #cross-chatbot {
        z-index: 1000;
        color: black;
        float: right;
        cursor: pointer;
        margin-top: 5px;
    }


    .circular-sb {
        width: 140px;
        border: 2.5px solid black;
        padding: 30px 0px;
        border-radius: 50%;
        text-align: center;
        font-size: 12px;
        font-weight: bold;
        font-family: arial;
        position: fixed;
        color: black;
        z-index: 1000;
        bottom: 60px;
        right: 85px;
        background: #ee4b52;
    }

    .circle1 {
        border: 2.5px solid black;
        position: absolute;
        width: 17.5px;
        padding: 10px;
        border-radius: 50%;
        right: -7.5px;
        bottom: 11px;
        background: #ee4b52;
    }

    .circle1:before {
        content: "";
        position: absolute;
        width: 17.5px;
        padding: 10px;
        border-radius: 50%;
        right: 0px;
        bottom: 0px;
        background: #ee4b52;
    }

    .circle2 {
        border: 2.5px solid black;
        position: absolute;
        width: 2.5px;
        padding: 5px 7.5px;
        border-radius: 50%;
        right: -30px;
        bottom: 2.5px;
        background: #ee4b52;
    }
}