.ios-popup-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    text-align: left;
    padding: 12px 40px 12px 12px;
    z-index: 9998;
    font-size: 14px;
    box-sizing: border-box;
}

.ios-popup-banner-content {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
}
.ios-popup-banner-content img.icon {
    width: 70px;
    border-radius: 11px;
    box-shadow: 2px 2px 4px #00000045;
}
.ios-popup-banner-content .ios-popup-banner-text {
    margin-top: 10px;
    margin-left: 18px;
}
.ios-popup-banner-content a {
    color: black;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}
.ios-popup-banner-content p {
    color: #525252;
    font-size: 12px;
}

.ios-popup-banner-close {
    position: absolute;
    top: 0;
    right: -20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #525252;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
}

.ios-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ios-popup-content {
    background: #E9E9E9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: fixed;
    bottom: 20px;
    margin: 0px 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.ios-popup-content h1 {
    color:#484848;
    font-size: 1.5rem;
}
.ios-popup-content p {
    font-size: 1.1rem;
    color: #525252;
}
.ios-popup-content ol {
    text-align: left;
}
.ios-popup-content ol li {
    padding-left: 20px;
    color: #525252;
}
.ios-popup-content ol li b {
    color:#484848;
}
.ios-popup-content img.share-icon {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
}
.ios-popup-content img.icon {
    width: 70px;
    border-radius: 11px;
    box-shadow: 2px 2px 4px #00000045;
}
.ios-popup-content:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -17px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 17px solid #E9E9E9;
}

.ios-popup-hint {
    font-size: 0.85rem;
    color: #757575;
    margin-top: 8px;
    text-align: left;
}

.ios-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    font-weight: 100;
    background: none;
    border: none;
    color: #525252;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
}
