.app_i_nudge_modal_container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: Inter;
    z-index: 1000000001;
    display: none;
}

.app_i_nudge_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.app_i_nudge_modal {
    position: absolute;
    right: 0;
    z-index: 101;
    background: #fff;
    top: unset;
    left: 0;
    bottom: -68%;
    width: 100%;
    border-radius: 16px 16px 0 0;
    animation: installModalAnimation 0.5s ease-in-out 0.1s 1 forwards;
}

@keyframes installModalAnimation {
    from {
        bottom: -68%;
    }
    to {
        bottom: 0;
    }
}

.app_i_nudge_close_btn {
    position: absolute;
    z-index: 102;
    cursor: pointer;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
}

.app_i_nudge_close_btn > img {
    object-fit: contain;
}

.app_i_nudge_modal_content {
    background-color: #fff;
    border-radius: inherit;
}

.app_i_nudge_modal_top {
    padding: 22px 16px 6px;
}

.app_i_nudge_modal_title {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    color: #45a081;
}
.app_i_nudge_sub_heading {
    margin: 0;
    color: #30363c;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.app_i_nudge_mid_sec {
    padding: 16px 16px 0;
}
.app_i_nudge_banner_heading {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.app_i_nudge_banner_heading > p {
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.06em;
    color: #6e787e;
}

.app_i_nudge_line {
    width: 80px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(110, 120, 126, 0.5) 0.68%,
        rgba(181, 205, 247, 0) 97.3%
    );
}

.app_i_nudge_banner {
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    margin-bottom: 24px;
    height: 64px;
    border: 1px solid transparent;
    box-shadow: 0px 1px 4px 0px #00000014;
    box-sizing: border-box;
}

.app_i_nudge_banner_ad {
    background: linear-gradient(270deg, #fff5f5 0%, #ffffff 100%) padding-box,
        linear-gradient(
                91.92deg,
                rgba(255, 245, 245, 0.2) 0.59%,
                rgba(252, 192, 194, 0.4) 100%
            )
            border-box;
}

.app_i_nudge_banner_discount {
    background: linear-gradient(269.99deg, #fff8e3 0.01%, #ffffff 99.99%)
            padding-box,
        linear-gradient(
                91.84deg,
                rgba(255, 248, 227, 0.2) 0%,
                rgba(246, 228, 171, 0.4) 98.96%
            )
            border-box;
}

.app_i_nudge_banner_discount > img {
    margin-left: -8px;
}

.app_i_nudge_banner_text {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #30363c;
}

.app_i_nudge_banner_text > span:first-child {
    font-weight: 700;
}

.app_i_nudge_banner_discount .app_i_nudge_banner_text {
    color: #766136;
}

.app_i_nudge_mobile_container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.app_i_nudge_phone {
    position: relative;
    z-index: 10;
    width: 262px;
    top: 200px;
    filter: drop-shadow(0px 39.1px 59.6px rgba(0, 0, 0, 0.05));
    animation: animatePhone 0.5s linear 0.2s forwards;
}

@keyframes animatePhone {
    from {
        top: 200px;
    }
    to {
        top: 25px;
    }
}

.app_i_nudge_green_bg {
    width: 100%;
    /* width: 360px; */
    height: 333px;
    background: radial-gradient(
        circle at 53% 74%,
        rgba(59, 122, 239, 0.2),
        rgba(59, 122, 239, 0.2),
        rgba(255, 255, 255, 0) 80%
    );
    position: absolute;
    z-index: 0;
}

.app_i_nudge_modal_footer {
    padding: 32px 16px 24px;
}

.app_i_nudge_download_cta {
    display: block;
    background-color: #30363c;
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.app_i_nudge_download_cta > div {
    display: inline-flex;
    gap: 8px;
}
.app_i_nudge_download_text {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}
