.bot-canvas{
    position: absolute;
    top: 0px;
    z-index: 1000;
}

.key-container{
    z-index: 10000;
    text-align: center;
    position: fixed;
    left: 50px;
    bottom: 50px;
    transition: 0.5s;
}

.key-container.hidden{
    opacity: 0;
    height: 0px;
    overflow: hidden;
}

.key{
    width: 75px;
    display: inline-block;
    text-align: center;
    padding: 5px 0px;
    border-radius: 15px;
    border: 8px solid rgba(20,20,20, 0.8);
    filter: opacity(0.8)
}

.key h1{
    margin: 0px !important;
    color: rgba(20,20,20,0.8);
    font-weight: bold;
}

.key.on{
    filter:  opacity(0.5);
}

.bot-info-box{
    width: 300px;
    height: 0px;
    position: fixed;
    left: 50px;
    bottom: 250px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 25px;
    padding: 10px;
    box-shadow: 2px -2px 8px rgba(0,0,0,0.2);
    z-index: 10;
    transition: 0.5s;
    opacity: 0;
    overflow: hidden;
    padding-bottom: 20px;
}

.bot-info-box.visible{
    opacity: 1;
    width: 300px;
    height: 200px;
    overflow: visible;
}

.bot-info-box .arrow{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 25px 0 25px;
    border-color: rgba(0,0,0,0.7) transparent transparent transparent;
    position: absolute;
    bottom: -25px;
    left: calc(50% - 25px);
}

.bot-info-box p{
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
}