#pwa-bottom-banner{
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    border-radius: 16px 16px 0 0;
    transition: .4s ease-in-out;
    z-index: 999999;
}
#pwa-bottom-banner.show{
    bottom: 0;
}

#pwa-bottom-banner .title{
    font-size: 17px;
    font-weight: 700;
}

#pwa-bottom-banner .text{
    font-size: 14px;
    margin-top: 4px;
    color: #555;
}

#pwa-bottom-banner .btn-install{
    background: var(--accent);
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    color: var(--primary);
    font-size: 15px;
    margin-top: 10px;
    border: none;
}

#pwa-bottom-banner .close-btn{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #888;
}