.udla-share {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 38px;
    height: 38px;
    padding: 8px;
    opacity: 0.6;
}
.udla-share:hover {
    opacity: 1;
}
.udla-share-buttons {
    position: absolute;
    bottom: -5px;
    right: -115px;
    z-index: 100;
    display: none;
    width: auto;
    height: auto;
    background-color: #393939;
    border-radius: 5px;
    padding: 10px;
    transform: translateX(calc(50% - 20px));
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    gap: 5px;
}
.udla-share-buttons.active {
    display: flex;
}
.udla-share-buttons::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: rotate(18deg) translateY(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #393939;
}
.udla-share-buttons a {
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.6;
}
.udla-share-buttons a:hover {
    opacity: 1;
    color: #fff;
}

@media (max-width: 768px) {
}
