/* Hidden on desktop/tablet */
#tt-install-app {
    display: none;
}

@media (max-width: 767px) {

    #tt-install-app {
        position: fixed;
        right: 0;
        top: 45%;

        width: 185px;
        min-height: 58px;

        display: flex;
        align-items: center;

        background: #d71920;
        color: #fff;

        border-radius: 12px 0 0 12px;

        box-shadow: 0 3px 12px rgba(0,0,0,.25);

        overflow: hidden;

        z-index: 999999;

        transform: translateX(110%);
        transition: transform .35s ease;
    }

    #tt-install-app.show {
        transform: translateX(0);
    }

    .tt-app-logo {
        width: 50px;
        height: 50px;

        margin: 4px;

        flex-shrink: 0;

        background: #fff;
        border-radius: 8px;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .tt-app-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .tt-app-text {
        display: flex;
        flex-direction: column;

        padding: 5px 7px;

        line-height: 1.15;
    }

    .tt-app-text strong {
        font-size: 13px;
    }

    .tt-app-text span {
        font-size: 12px;
        font-weight: 600;
        margin-top: 3px;
    }

    .tt-app-arrow {
        font-size: 20px;
        padding-right: 8px;
    }
}