.page-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0, 50%);
}

.bottom-table-number {
    height: auto;
    background: #d9d9d9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
}

.bottom-table-number span {
    font-size: 17px;
    color: #000;
}

.bottom-table-number img {
    height: 28px;
    margin-right: 5px;
    transform: translate(0px, -3px);
}

.call-waiter {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    z-index: 99999;
    transition: 1000ms;
}

.call-waiter.lifted {
    transform: translateY(-150px);
    transition: 1000ms;
}

.call-waiter-top .call-text {
    padding: 6px 12px;
    background: #fff;
    color: #7868e6;
    border-radius: 8px;
    box-shadow: 3px 4px 0px 0px #7868e6;
    border: 1px solid #7868e6;
    font-size: 12px;
    transition: 400ms;
}

.call-waiter-top {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 1500ms;
}

.call-waiter-top.closed {
    transform: translateX(calc(100% + 35px)) !important;
    transition: 1500ms;
}

.call-waiter-top.closed button#waiter-close-button {
    rotate: 180deg !important;
    transition: 1000ms;
}

.call-waiter-bottom img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.call-waiter-bottom {
    display: flex;
    justify-content: flex-end;
}

button#waiter-close-button {
    width: 21px;
    height: 21px;
    border: none !important;
    background: #7868e6;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    font-size: 11px;
    margin-left: 10px;
    margin-bottom: -3px;
    transition: 1000ms;
}