.bottombar {
    position: relative;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    min-height: 320px;
    height: 320px;
    box-sizing: border-box;

    background-color: #f0f5f9;
    color: #b5b5b5;

    z-index: 999;
}

.bottombar__toolbar {
    display: flex;
    gap: 5px;

    height: 50px;
    border-radius: 25px;

    background-color: #e1e4e6;
    margin-left: 60px;
}

.bottombar__button {
    padding: 0 30px;
    height: 50px;

    font-size: 15px;
    font-family: "OpenSans";
    color: #b5b5b5;

    background-color: transparent;

    border: none;
    border-radius: 25px;

    cursor: pointer;
}

.bottombar__button_close {
    position: absolute;
    right: 50px;
    top: 50px;
}

.bottombar__button:hover,
.bottombar__button.active,
.bottombar__button:active {
    background-color: #1e2022;
    color: #fff;
}

.bottombar__panel {
    position: absolute;
    top: -5px;

    width: 100%;
    height: 5px;
    background-color: #b3b3b3;

    cursor: ns-resize;
}

.bottombar_hidden {
    display: none;
}

.bottombar__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5px;
    width: 100%;
    overflow-x: auto;
}
