.fixed-social {
    position: fixed;
    bottom: 4rem;
    right: 0.5rem;
    padding: 1.25rem;
    z-index: 1000;
}

.fixed-social .link-item {
    position: relative;
    margin-bottom: 0.625rem;
}

.fixed-social .link-item span {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0.625rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 3.75rem;
    border: 3px solid rgb(32, 45, 56);
    border-right: 0;
}

.fixed-social .social-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.625rem;
    background-color: rgb(32, 45, 56);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-button svg {
    width: 24px;
    height: 24px;
}

.fixed-social .social-button:hover {
    transform: scale(1.1);
}

.fixed-social .social-button img {
    width: 1.75rem;
    height: auto;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(32, 45, 56, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.pulse-1 {
    animation: pulse 0.8s infinite;
}

.pulse-2 {
    animation: pulse 1.2s infinite 0.2s;
}

.pulse-3 {
    animation: pulse 1.5s infinite 0.4s;
}

.pulse-4 {
    animation: pulse 1.7s infinite 0.1s;
}
