.pwaInstall{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    width: 100%;
    padding: 10px;
    position: fixed;
    bottom: -100px;
    left: 0;
    background-color: white;
    transition: bottom 0.3s;
    box-sizing: border-box;
    z-index: 9002;
    box-shadow: 0 0 3px gray;
}

.pwaInstall.show{
    bottom: 0;
}

.pwaInstall .content{
    width: auto;
    vertical-align: middle;
    line-height: 32px;
}

.pwaInstall .links{
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    text-align: right;
}

.pwaInstall .links a{
    display: inline-block;
    padding: 0 10px;
    line-height: 32px;
    margin-left: 10px;
    background-color: #f7ab02;
    color: white;
    border-radius: 4px;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}


@media (max-width: 600px) {
    .pwaInstall{
        flex-direction: column;
        -webkit-flex-direction: column;
    }

    .pwaInstall .content{
        width: 100%;
        line-height: inherit;
        margin-bottom: 5px;
        text-align: center;
    }

    .pwaInstall .links{
        width: 100%;
        text-align: center;
    }

    .pwaInstall .links a{
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 460px) {
    .pwaInstall{
        flex-direction: column;
        -webkit-flex-direction: column;
    }
}