.ret-fixed-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 500px;
    max-width: 100%;
    z-index: 9999;

    > div {
        /* padding-right: 1rem;
        padding-left: 1rem;
        */
        box-shadow: 0 0 10px  rgba(60, 66, 83, 0.5);
        > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            text-decoration: none;
            padding: 0 1rem;
            background: #7E999C;
            color: #fff;
            width: 100%;
            height: 50px;
            transition: all ease-in-out 0.3s;

            &:hover {
                filter: brightness(75%);
            }

        }

        .ret-fixed-panel-content {
            display: none;
            width: 100%;
            background: #fff;
            padding: 1rem;
        }

    }
}

.ret_selected_units .ret-selected-unit .ret-selected-unit-name {
    width: auto;
}

.ret_loggedin.active .ret_display_username{
    display: block;
    max-width: 170px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.ret-no-units-message {
    margin-bottom: 1rem;
}