.m-sticky {
    position: fixed;
    z-index: 999;
    right: 0px;
    top: 50%;
    display: flex;
    background-color: #ff996c;
    padding: 19px 12px 29px;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.m-sticky .m-sticky-icon {
    height: 44px;
    width: 44px;
}

.m-sticky .m-sticky-link-text {
    display: none;
    line-height: 34px;
    width: 287px;
    padding: 0 0 0 35px;
}

.m-sticky .m-sticky-link-text a {
    color: #000000;
    font-size: 30px;
    font-weight: 600;
}

.m-sticky:hover {
    padding: 35px 92px 56px 28px;
    transition: opacity 0.5s ease-in-out;
}

.m-sticky:hover .m-sticky-link-text {
    display: block;
}

.m-sticky-icon img {
    filter: grayscale(100%) brightness(0) invert(0);
}

@media (max-width: 500px) {
    .m-sticky .m-sticky-link-text {
        width: 230px;
    }

    .m-sticky:hover {
        padding: 35px 32px 70px 24px;
    }

    .m-sticky .m-sticky-link-text a {
        font-size: 24px;
    }
}