#fixed-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-color: white;
    color: black;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    font-size: 24px;
    transition: all .3s ease
}

#fixed-button::before {
    content: "\1F91D";
    font-family: fontawesome
}

#fixed-button.open::before {
    content: "X"
}

#fixed-panel {
    position: fixed;
    bottom: 0;
    left: -500px;
    z-index: 9998;
    width: 500px;
    height: 100%;
    background-color: #fff;
    transition: left .3s ease
}

@media(max-width:500px) {
    #fixed-panel {
        width: 100%
    }
}

#fixed-panel.open {
    left: 0
}

#fixed-panel>.card {
    height: 100%;
    overflow-y: scroll
}

#busyNotify {
    display: none
}