div#idlePrompts {
    position: absolute;
    width: max-content;
    right: 50px;
    padding: 10px;
    bottom: 51px;
    box-shadow: 0 2px 10px 0 rgb(53 63 69 / 15%), 0 1px 2px 0 rgb(0 0 0 / 20%);
    border-radius: 10px;
    background-color: #416484;
    box-shadow: 0 2px 10px 0 rgb(53 63 69 / 15%), 0 1px 2px 0 rgb(0 0 0 / 20%);
    color: white;
}

    div#idlePrompts::before {
        content: ' ';
        position: absolute;
        width: 0;
        height: 0;
        left: auto;
        right: 6px;
        bottom: -11px;
        border: 8px solid;
        border-color: #416484 #416484 transparent transparent;
    }

#bot {
    height: 100% !important;
    width: 100% !important;
    background: white;
}

#hide {
    display: initial;
    position: absolute;
    /* margin-top: 40px; */
    right: 0px;
    padding: 15px;
    cursor: pointer;
    z-index: 9999999;
}


#botsection {
    display: none;
    z-index: 9999;
    min-width: 350px;
    max-width: 600px;
    max-height: 900px;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0px;
}

#boticon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #416484;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    position: fixed;
    right: 75px;
    bottom: 2%;
    cursor: pointer;
    z-index: 1000;
}

@media only screen and (max-width: 600px) {
    #boticon {
        height: 54px;
        width: 56px
    }

    #botsection {
        width: 100%;
        height: calc(100% - 0px);
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
    }

    div#idlePrompts {
        max-width: 50vw;
    }
}

@media only screen and (min-width: 601px) {
    #boticon {
        height: 60px;
        width: 63px;
    }

    #botsection {
        width: 40%;
        right: 35px;
        height: 85%;
        position: fixed;
        bottom: 5%;
    }
}
