/* native */
.alert-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    background:rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    z-index: 999999;
    width: 100%;
    height: 100vh;
}
.alert-content {
    background: #fff;
    border-radius: 13px;
    z-index: 1000000;
    min-width: 280px;
    max-width: 450px;
    padding: 25px 30px 20px;
    border: none;
    box-shadow: 0 20px 70px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.alert-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 14px;
    color: #1d1d1f;
    margin: 0 0 25px 0;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
}
.alert-content a {
    font-family: inherit;
    border-radius: 6px;
    text-transform: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #fff;
    display: block;
    margin: 0 auto;
    width: 120px;
    background: #007aff;
    text-decoration: none;
    height: 36px;
    line-height: 36px;
    border: none;
}
.alert-content a:hover,
.alert-content a:focus {
    background: #0056cc;
    outline: none;
}