.side-socials {
    --side-socials-icon-size: 40px;
    position: fixed;
    top: 50%;
    left: 100%;
    z-index: 10;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    transform: translateX(-40px) translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

body.has-loading-screen.pace-done .side-socials,
body:not(.has-loading-screen) .side-socials {
    opacity: 0.8;
    pointer-events: all;
}

.side-socials:hover {
    transform: translateX(-100%) translateY(-50%);
}

.side-socials__link {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background: #1a1a1a;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-socials__link:hover {
    background: #000000 !important;
    color: white !important;
}

.side-socials__link__icon {
    height: var(--side-socials-icon-size);
    width: var(--side-socials-icon-size);
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    fill: white;
}

.side-socials__link__text {
    flex: 1;
    padding: 0 20px;
}

.white-color{
    color: white !important;
}