.share-buttons {
    background-color: #FC6203;
    border-radius: 5px;
    padding: 0 10px;
    display: none;
    position: absolute;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 5px;
    z-index: 1000;
}

.share-buttons::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #FC6203;
}

.share-buttons span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 5px;
}

.share-buttons .project_line {
    width: 25px;
}

.share-buttons .project_facebook {
    width: 25px;
}

.share-buttons .project_x {
    height: 25px;
    width: 25px;
}

.share-buttons .project_note {
    height: 25px;
    width: 25px;
}

@media (max-width: 768px) {
    .share-buttons {
        padding: 0 5px;
    }

    .share-buttons span {
        font-size: 1rem;
        font-weight: 400;
        margin-right: 0;
    }
}
