/* Sticky Social Right */
.sticky-social {
    position: fixed;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.sticky-social__item {
    display: block;
    width: 58px;
    height: 58px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.sticky-social__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.sticky-social__item:hover {
    transform: translateX(-6px);
    filter: brightness(1.15);
}

/* Sticky LINE WARZ Bottom */
.sticky-line-warz {
    position: fixed;
    right: 5px;
    bottom: 50px;
    z-index: 9999;
    width: 190px;
    display: block;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.sticky-line-warz img {
    width: 100%;
    display: block;
}

.sticky-line-warz:hover {
    transform: translateY(-6px);
    filter: brightness(1.3);
}


/* Mobile */
@media (max-width: 992px) {
    .sticky-line-warz {
        bottom: 110px;
    }
}

@media (max-width: 575px) {

    .sticky-social__item {
        width: 48px;
        height: 48px;
    }

    .sticky-line-warz {
        width: 130px;
        right: 5px;
        bottom: 75px;
    }
}