.block__install {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999999;
    background: white;
    padding: 15px;
    border-radius: 4px;
    border:1px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

    .block__install .inner {
        display: flex;
        align-items: center;
    }

        .block__install .inner .close {
            width: 32px;
            height: 32px;
            line-height: 32px;
        }

            .block__install .inner .close img {
                width: 32px;
                height: 32px;
            }

        .block__install .inner .logo {
            width: 48px;
        }

            .block__install .inner .logo img {
                width: 42px;
                border-radius: 2px;
            }

        .block__install .inner .name {
            padding-left: 10px;
        }

            .block__install .inner .name span {
                display: block;
                font-size: 1.125rem;
                line-height: 1;
                font-weight: 600;
            }
        .block__install .inner .cta {
            margin-left: auto;
        }

    .block__install.is-active {
        display: block;
    }

@media (max-width: 768px) {

}

.close {
    color: #333333;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc !important;
    font-family: "Helvetica Neue","Segoe UI",helvetica,verdana,sans-serif;
    line-height: 1.35715;
}

.btn {
    background-color: #fff;
    border: 1px solid lightgray !important;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* add animation effects */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}