.floating-download-btn {
    display: none;
}
@media only screen and (min-width: 992px) {
    .floating-download-btn {
        display: flex;
        width: 170px;
        height: 152px;
        background-color: #313134;
        border-radius: 8px 0 0 8px;
        position: fixed;
        right: -134px;
        top: 50vh;
        transform: translateY(-50%);
        z-index: 1002;
        transition: all .2s ease;
        cursor: pointer;
        justify-content: center;
        align-items: center;
    }

    .floating-download-btn:hover {
        right: 0;
    }

    .floating-download-btn .floating-label {
        color: #ffffff;
        position: absolute;
        bottom: 0;
        transform: rotate(-90deg);
        transform-origin: left;
        left: 17px;
        font-size: 16px;
    }

    .floating-download-btn .floating-label.fr {
        bottom: -15px !important;
        line-height: 1;
        text-align: center;
    }

    .floating-download-btn img {
        display: flex;
        margin-right: -24px;
    }
}