.social-sticky {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    padding: 15px 10px;
    border-radius: 12px 0 0 12px;

    display: flex;
    flex-direction: column;
    gap: 10px; 
}

.social-item {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FC4C02;
    color: #fff;
    border-radius: 50%;

    text-decoration: none;
    font-size: 22px;

    transition: all .3s ease;
}

.social-item:hover {
    transform: scale(1.1);
    background: #301288;
	color: #fff;
}
