.deeplink_modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-items: center;
    align-items: center;
}

.deeplink_modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
}

.deeplink_modal-body {
    border-radius: 16px;
    position: fixed;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: calc(100% - 30px);
    padding: 32px 16px;
    background: #FFFFFF;
}

.deeplink_modal-body h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}
