.ws-dock {
    display: flex;
    align-items: flex-end;
    width: fit-content;
    height: auto;
    position: relative;
}

.ws-dock .ws-dock__item {
    width: var(--dimensions);
    height: var(--dimensions);
    min-width: unset !important;
    min-height: unset !important;
    outline: unset !important;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: none;
}

.ws-dock .ws-dock__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1;
    pointer-events: none;
}

.ws-dock .ws-dock__icon i {
    display: block;
    line-height: 1;
}

.ws-dock .ws-dock__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}

.ws-dock .ws-dock__item::before {
    white-space: nowrap;
    content: attr(data-tooltip);
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: 0.1s ease-out opacity;
    z-index: 100;
}

.ws-dock .ws-dock__item:hover::before {
    opacity: 1;
}

.elementor-widget-ws_dock {
    position: relative;
    z-index: 1;
}