@charset "utf-8";
#BotChatGoesHere {
    border: 4px solid #FFBC00;
    width: calc(30% + 200px);
    height: 90%;
    max-width: 100%;
    max-height: calc(100% - 150px);
    top: 100px;
    right: 1em;
    bottom: calc(3% + 50px);
    position: fixed;
    z-index: 9999;
    /* -webkit-transform: scale(1, 0); */
    /* transform: scale(1, 0); */
    /* -webkit-transform-origin: center top; */
    /* transform-origin: center top; */
    /* opacity: 0; */
    /* transition-property: opacity, transform, -webkit-transform; */
    /* transition-duration: .5s, 0s, 0s; */
    /* transition-delay: 0s, .5s, .5s; */
    background: #fff;
    border-radius: 10px;
    border-top-right-radius: 0;
    /* display: none; */
    visibility: hidden;
}
#BotChatGoesHere.isShow {

    /* display: block; */
}
@media (max-width: 1080px) {
    #BotChatGoesHere {
        width: 70%;
    }
}
@media (max-width: 767px) {
    #BotChatGoesHere {
        width: 100%;
        height: 100%;
        max-height: none;
        top: 0;
        right: 0;
        bottom: calc(2% + 10px);
        box-sizing: border-box;
        border-radius: 0;
        border-width: 3px;
    }
}
