.fixed-class {
    position: fixed;
    bottom: 100px;
    right: 100px;
    cursor: pointer;
    z-index: 3;
}

@media (max-width: 425px) {
    .fixed-class {
        display: none;
    }

}