/* Minification failed. Returning unminified contents.
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,17): run-time error CSS1039: Token not allowed after unary operator: '-cnt-inner-width'
(109,33): run-time error CSS1038: Expected hex color, found '#0003'
 */
#dialog_app_time_trial_content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    --cnt-inner-height: 80vh;
    --cnt-inner-width: 32vw;
}

.content_inner {
    position: relative;
    width: var(--cnt-inner-width);
    /*height: var(--cnt-inner-height);*/
    background-color: #0e81c1;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.bg2 {
    width: 200%;
    height: 100%;
    background-color: #0969aa;
    position: absolute;
    /*top: calc((var(--cnt-inner-height) / 2 + (100vh - var(--cnt-inner-height)) / 2) * (-1));*/
    top: -35%;
    /*left: calc(((80vw - var(--cnt-inner-width)) / 2) * (-1));*/
    left: -50%;
    border-radius: 50%;
    z-index: -1;
}

.cnt_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .cnt_top span {
        color: #fff;
        /*font-size: 1.4rem;*/
        font-size: 18px;
    }

    .cnt_top img {
        width: 5%;
        cursor: pointer;
    }

.di_app_info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    color: #fff;
    font-family: MontserratR;
}

.di_app_name {
    font-family: MontserratSemiBold;
    margin: 1rem 0;
    /*font-size: 1.2rem;*/
    font-size: 16px;
}

.di_noti_cnt {
    /*font-size: 1.1rem;*/
    font-size: 14px;
}

.di_dayleft {
    font-family: MontserratSemiBold;
    color: #ffb726;
    /*font-size: 1.2rem;*/
    font-size: 16px;
}

.app_icon {
    width: 26%;
    height: 26%;
    padding: 1rem;
    background-color: #ffffffb3;
    border-radius: 15px;
}

    .app_icon img {
        width: 100%;
        height: 100%;
    }

.cnt_bottom {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex: 1;
}

.di_btn {
    padding: 0.7rem 2.5rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 0px #0003;
    background-color: #f0f8fc;
    outline: none;
    border: none;
    /*font-size: 1.2rem;*/
    font-size: 16px;
    color: #0e81c1;
    font-family: MontserratSemiBold;
}

.di_btn_buynow {
    background-color: #ffb726;
    color: #fff;
    margin-right: 2rem;
}

.di_promo_info {
    background-color: #fff;
    border-radius: 15px;
    border: dashed 1px #ffb726;
    padding: 1rem 2rem;
    margin: 1rem 0;
    text-align: center;
}

.di_promo_name {
    font-family: MontserratSemiBold;
    color: #0cad7a;
    /*font-size: 1.1rem;*/
    font-size: 14px;
}

.di_promo_date {
    font-family: MontserratR;
    color: #606060;
    /*font-size: 0.85rem;*/
    font-size: 11px;
}

.di_promo_stick {
    margin: 1rem 0;
    position: relative;
}

    .di_promo_stick img {
        width: 100%;
        height: auto;
    }

.di_promo_price {
    color: #056295;
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 65%;
    padding-right: 5rem;
    border-left: 2px dashed #fff;
    font-family: MontserratSemiBold;
}

.di_promo_priceafter {
    /*font-size: 3rem;*/
    font-size: 28px;
}

.di_promo_priceraw {
    /*font-size: 1.2rem;*/
    font-size: 16px;
    text-decoration: line-through;
    font-family: MontserratR;
}

.di_promo_discount {
    position: absolute;
    left: 0;
    width: 35%;
    top: 0.5rem;
    bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1rem;
}

.di_sticker {
    display: inline-grid;
    grid-template-areas: "text";
    place-items: center;
    font-family: "MontserratBold";
    font-weight: 800;
    font-size: 10rem;
    /*font-style: italic;*/
    text-transform: uppercase;
    color: #ff4242;
    z-index: 0;
}

    .di_sticker span {
        background: #ff4242;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke: 0px #fff;
    }

    .di_sticker > *, .di_sticker::before, .di_sticker::after {
        grid-area: text;
    }

    .di_sticker::before, .di_sticker::after {
        content: attr(data-text);
        color: #fff;
    }

    .di_sticker::before {
        -webkit-text-stroke: 0.12em #fff;
    }

    .di_sticker::after {
        text-shadow: 0.07em 0.1em 0em rgba(0, 0, 0, 0.3);
        z-index: -1;
    }

