  #bsh {
    z-index: 1000;
    position: absolute;
    bottom: 0;
    background-color: white;
    width: 100vw;
    height: fit-content;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    padding: 1rem;
    padding-top: 2rem;
}
#bsh-toggle {
    z-index: 1001;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 50px;
    height: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#bsh-toggle:hover {
    cursor: pointer;
}

#bsh-close {
    width: 24px;
    color: #585858;
    float: right;
    position: absolute;
    right: 0.25rem;
    top: 0.25rem;
    text-align: center;
}

#bsh-content:blank {
    visibility: hidden;
}

@media (min-width: 550px) {
    #bsh {
        visibility: hidden;
    }

    #bsh-toggle {
        visibility: hidden;
    }
}
