.popup-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.android-popup {
    width: 320px;
    background: whitesmoke;
    position: relative;
    text-align: center;
    border-radius: 10px;
    padding: 0 15px 15px;
}

.round-icon {
    width: 75px;
    margin-top: -50px;
    border-radius: 50%;
    border-color: white;
    border: 2px solid #777;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.switch-img {
    width: 100px;
    border-radius: 50%;
}

.android-popup h2 {
    color: black;
    font-size: 22px;
    font-weight: 500;
    margin: 10px 0 10px;
}

.install-text {
    font-size: 14px;
    color: black;
}

.ios-install-help {
    align-items: center;
    color: black;
    display: flex;
    font-size: 12px;
    justify-content: center;
    margin: 0;
}

.ios-install-help-icon {
    margin: 0 2px 1px;
    width: 20px;
}

.android-popup button {
    width: 100%;
    margin-top: 10px;
    padding: 8px 0;
    color: white;
    background: #229527;
    border: 0;
    outline: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.android-popup button:active {
    background-color: #05fa1a;
}

.popup-close {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 42px;
    color: #333;
    transform: rotate(45deg);
    cursor: pointer;
}

.pwa_block_install {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999999;
    background: whitesmoke;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.pwa_block_install .inner {
    display: none;
    align-items: center;
}
.pwa_block_install .inner .block_close {
    width: 28px;
    height: 28px;
    line-height: 8px;
    padding: 5px;
}
.pwa_block_install .inner .block_close img {
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.pwa_block_install .inner .logo {
    width: 36px;
}
.pwa_block_install .inner .logo img {
    width: 38px;
    border-radius: 2px;
}
.pwa_block_install .inner .name {
    padding-left: 8px;
    text-align:left;
}

.banner_title {
    color: black;
    font-size: 16px;
    font-weight:bold;
}
.banner_description {
    font-size: 12px;
    color: black;
}
.pwa_block_install .inner .cta {
    margin-left: auto; 
    margin-right: 40px;
}

.store_icon{
    width: 200px;
    border-radius: 2px;
}

.pwa_block_install_btn
{
    width: 100%;
    margin: 10px;
    padding: 8px 0;
    color: white;
    background: #229527;
    border: 0;
    outline: none;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);

}
.container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .progress-bar__container {
    width: 50%;
    height: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    will-change: transform;
    box-shadow: 0 0 5px #e76f51;
  }
  
  .progress-bar {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #e76f51;
    top:0;
    bottom: 0;
    left: -100%;
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items:center;
    color: white;
    font-family: sans-serif;
  }
  
  .progress-bar__text {
    display: none;
  }
  