/* body */
body {
    margin: 0 auto;
    max-width: 450px;
    background-attachment: fixed;
    width: 100%;
    height: auto;
}

#app_back {
    min-height: 100%;
    background: linear-gradient(57.29deg, #FFFFFF -3.11%, #D6F7E8 117.35%);
}

hr {
    margin: 4.267vw 1.333vw 0 1.333vw;
    background: #000000;
    opacity: 0.1;
}

.top_div {
    width: 100%;
    height: 9.8667vw;
}

.bottom_div {
    width: 100%;
    height: 10vw;
}

/* body */

/* header */
.header {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.header_info {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_left {
    margin-left: 6.6667vw;
    font-family: Albert Sans, Albert Sans;
    font-weight: 500;
    font-size: 4vw;
    color: #04C466;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.header_left img {
    width: 30.9333vw;
    height: 100%;
}

/* header_right这里给宽度是为了让title居中 */
.header_right {
    margin-right: 3.7333vw;
    width: 16.5333vw;
    height: 5.3333vw;
    border-radius: 55.84vw;
    background: linear-gradient(90deg,
            rgba(2, 212, 120, 0.2) 0%,
            /* 0.2 = 20% 不透明 */
            rgba(4, 205, 112, 0.2) 100%);

    font-family: Albert Sans;
    font-weight: 400;
    font-size: 3.2vw;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(4, 196, 102, 1);

    display: flex;
    align-items: center;
    justify-content: center;
}

/* header */

/* user */
.user {
    margin-top: 6.9333vw;
    width: 100%;
}

.user_bonus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_bonus img {
    width: 11.2vw;
    height: 11.2vw;
}

.user_bonus span {
    margin-right: 4vw;
    font-weight: 700;
    font-size: 10.6667vw;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
}

.user_info {
    text-align: center;
    font-weight: 800;
    font-size: 3.2vw;
    vertical-align: middle;
    text-transform: capitalize;
    color: rgba(4, 196, 102, 1);
}

/* user */

/* task */
.daily_task {
    margin-top: 7.4667vw;
    margin-left: 3.7333vw;
    font-family: Albert Sans;
    font-weight: 500;
    font-size: 4.5333vw;
    color: rgba(0, 0, 0, 1);
}

.task_list {
    width: 100%;
    height: auto;
    margin-top: 4.2667vw;
}

.task_list::-webkit-scrollbar {
    display: none;
}

.task_list_container {
    margin: 0vw 3.7333vw;
}

.item {
    width: 100%;
    min-height: 21.3333vw;
    height: auto;
    margin-bottom: 2.6667vw;
    padding: 2.78vw 0;
    border-radius: 2.1333vw;
    background: #FFFFFF;

    display: flex;
    align-items: flex-start;
    /* 左右顶端对齐 */
    gap: 2.66vw;
    /* 控制左右间距，替代 margin */
    box-sizing: border-box;
    /* 让 padding 不撑破 */
    align-items: center
}


.task_icon {
    flex: 0 0 10.9333vw;
    /* 固定宽度 */
    height: 10.9333vw;
    overflow: hidden;
    border-radius: 2.1333vw;
    border: .1333vw solid rgba(255, 255, 255, 0.08);
    margin-left: 2.9333vw;
}

.task_icon_img {
    width: 100%;
    height: 100%;
}

.task_item_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.task_title {
    color: #000000;
    font-weight: 500;
    font-size: 3.33vw;
    font-family: Albert Sans-Regular;
}

.task_bonus {
    display: flex;
    align-items: center;
    color: #F0A145;
    font-weight: 500;
    font-size: 3.61vw;
    letter-spacing: 0;
}

.task_bonus img {
    width: 3.75vw;
    height: 3.75vw;
}

.task_button {
    flex: 0 0 18vw;
    /* 固定宽度按钮区 */
    margin-right: 3.7333vw;
}

.task_btn {
    width: 17.3333vw;
    height: 6.93vw;
    font-family: Albert Sans, Albert Sans;
    font-weight: 400;
    font-size: 3.4667vw;
    border-radius: 58.1333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task_btn_go {
    color: #FFFFFF;
    background: linear-gradient(90deg, #02D478 0%, #04CD70 100%);
    transition: transform 100ms;
}

.task_btn_go:before {
    content: 'GO';
}

.task_btn_go:active {
    transform: scale(0.9);
}

.task_btn_already {
    color: #909090;
    background: #EFEFEF;
}

.task_btn_already:before {
    content: 'DONE';
}

.progress_item {
    gap: 0;
    grid-template-rows: 1fr 4vw 6.93vw;
}

.progress_item .task_bonus {
    margin-top: 0;
}

.task_progress {
    width: 34.72vw;
    height: 1.66vw;
    margin: 1.94vw 0;
    background: #504F4F;
    border-radius: 2.77vw;
    position: relative;
    overflow: hidden;
}

.task_progress_outside {
    display: flex;
    align-items: center;
}

.task_progress_done {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #02D478 0%, #04CD70 100%);
    border-radius: 2.77vw;
    position: relative;
    transition: width .4s;
    color: white;
    font-size: 2.77vw;
    line-height: 2.22vw;
    text-align: right;
}

.task_progress_done:before {
    content: '';
    left: 0;
    right: 0;
    height: 100%;
    position: absolute;
    border-radius: 2.77vw;
    background-image: url(../resource/task_progress.png);
    background-size: cover;
}

.task_progress_percent {
    font-size: 2.22vw;
    font-weight: 500;
    color: #FDB255;
    line-height: 1.67vw;
    margin-left: 1vw;
}

.empty_icon {
    background: #2E2E2E;
}

.empty_container {
    height: 3.2vw;
    border-radius: 1vw;
    overflow: hidden;
    background-color: #2E2E2E;
    position: relative;
}

.empty_container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(6px);
    background: linear-gradient(100deg, transparent 20%, #3D3D3D 50%, transparent 80%);
    transform: translateX(-100%);
    animation: loading 3.5s linear infinite;
}

@keyframes loading {
    100% {
        transform: translateX(100%);
    }
}

.empty_btn {
    background: #2E2E2E;
    width: 18.06vw;
    height: 6.94vw;
    border-radius: 4.8vw;
}

/* task */

/* apply */
#apply {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    overflow-y: auto;
    /* 内容超出时可滚动 */
}

.apply_div {
    background-color: #FFFFFF;
    border-radius: 4.2667vw;
    width: 73.6vw;
    height: 96vw;
    display: block;
    margin: 30% auto 0vw;
    text-align: center;
}

.apply_title {
    padding-top: 8vw;
    font-family: Albert Sans, Albert Sans;
    font-weight: 500;
    font-size: 5.8667vw;
    color: #000000;
    line-height: 5.8667vw;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.apply_img {
    margin: 5.3333vw auto 0vw;
    width: 34.1333vw;
    height: 34.1333vw;
    background: #F6F7F9;
    border-radius: 2.9333vw;
    position: relative;
}

.apply_img img {
    padding: 5.6vw;
    width: 23.4667vw;
    height: 23.4667vw;
    border-radius: 4.2667vw;
}

.apply_img span {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: Albert Sans, Albert Sans;
    font-weight: 500;
    font-size: 4.2667vw;
    color: #29C773;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.apple_user {
    padding-top: 3.7333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple_user img {
    width: 6.1333vw;
    height: 6.1333vw;
}

.apple_user span {
    font-weight: 600;
    font-size: 5.8667vw;
    color: #F0A145;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
}

.apply_confirm {
    margin: 4vw auto 0vw;
    width: 57.0667vw;
    height: 12.8vw;
    border-radius: 51.2vw;
    background: linear-gradient(90deg, #02D478 0%, #04CD70 100%);
    font-family: Albert Sans, Albert Sans;
    font-weight: bold;
    font-size: 5.0667vw;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply_cancel {
    margin-top: 2.6667vw;
    font-family: Albert Sans, Albert Sans;
    font-weight: 400;
    font-size: 4.2667vw;
    text-transform: uppercase;
    color: #999999;
}


.apply_close img {
    display: block;
    margin: 5.3333vw auto 0vw;
    width: 7.4667vw;
    height: 7.4667vw;
}

/* apply */


/* overlay */
#overlay {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.overlay_div {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 1.333vw;
    width: 30.555vw;
    height: 30.972vw;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 3500ms ease-in-out forwards;
}

@keyframes fadeOut {

    0%,
    85% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.overlay_bonus {
    margin-top: 2.133vw;
    display: inline-block;
    text-align: center;
}

.overlay_bonus_img {
    width: 7.777vw;
    height: 7.777vw;
    vertical-align: middle;
    animation: getBonus 1s cubic-bezier(0.05, 0.22, 0.98, 0.36);
}

@keyframes getBonus {

    35%,
    70%,
    to {
        transform: translateY(0);
        animation-timing-function: ease-out;
    }

    0% {
        transform: translateY(-4.44vw);
    }

    55% {
        transform: translateY(-2.22vw);
    }

    80% {
        transform: translateY(-1.11vw);
    }

}

.bonus_text1 {
    margin: 3.194vw 0 0.694vw;
    vertical-align: middle;
    font-size: 5vw;
    font-weight: 500;
    color: #FFFFFF;
}

.bonus_text2 {
    margin-left: 0.8vw;
    vertical-align: middle;
    font-size: 4.444vw;
    font-weight: 500;
    color: #FFFFFF;
}

.overlay_time {
    padding-bottom: 1.333vw;
    font-size: 2.667vw;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 4vw;
    opacity: 0.5;
}

/* overlay */

/* fail_overlay */

#fail_overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    transform: translate(-50%, -50%);
    width: 57.77vw;
    border-radius: 2.77vw;
    padding-top: 6.94vw;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.fail_overlay_icon {
    position: absolute;
    top: -6.94vw;
}

.fail_overlay_icon_star {
    height: 15vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fail_overlay_icon_coin {
    height: 13.88vw;
    border-radius: 50%;
    filter: grayscale(100%);
}

.fail_overlay_shadow {
    width: 15.83vw;
    height: 1.38vw;
    margin-top: 1.38vw;
    background: linear-gradient(270deg, rgba(223, 237, 253, 0) 0%, rgba(242, 242, 242, 0.7) 49%, rgba(237, 245, 255, 0) 99%);
}

#fail_overlay_text {
    width: 30.77vw;
    color: #e6e6e6;
    font-weight: 500;
    font-size: 4.16vw;
    text-align: center;
    margin-top: 1.94vw;
    word-wrap: break-word;
}

/* fail_overlay */

/* errorMsg */

#errorMsg {
    position: fixed;
    left: 50%;
    bottom: 10%;
    z-index: 100;
    transform: translate(-50%, 0);

    padding: 0.555vw 2.777vw;
    border-radius: 1.333vw;
    background: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    font-size: 4.444vw;

    animation: fadeOut 3500ms ease-in-out forwards;
}

/* errorMsg */

/* gift */
.gift_model {
    margin: 5.8667vw 3.7333vw 0vw 3.7333vw;
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    border-radius: 2.1333vw;
}

.gift_title {
    padding-top: 2.5333vw;
    padding-left: 2.6667vw;
    font-family: Albert Sans;
    font-weight: 600;
    font-size: 4.5333vw;
    vertical-align: middle;
    text-transform: capitalize;
}

.gift_list {
    margin-top: 1vw;
    display: flex;
    flex-wrap: wrap;
    /* 自动换行 */
    justify-content: left;
    /* 居中对齐，可以改成 space-between 看效果 */
}

.gift {
    width: 40vw;
    margin: 2vw 2vw 2vw 3vw;
}

.gift_img {
    width: 40.5333vw;
    height: 29.3333vw;
    background: #F6F7F9;
    border-radius: 2.9333vw;
    text-align: center;
    position: relative;
}

.gift_icon {
    margin-top: 3.2vw;
    width: 25.3333vw;
    height: 25.3333vw;
    border-radius: 2.9333vw;
}

.gift_img span {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: Albert Sans, Albert Sans;
    font-weight: 500;
    font-size: 4.2667vw;
    color: #29C773;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.gift_info {
    margin: 2.9333vw 0vw 0vw;
    font-family: Albert Sans;
    font-weight: 500;
    font-size: 3.7333vw;
    line-height: 3.7333vw;
    vertical-align: middle;
    text-transform: capitalize;
    text-align: left;
}

.gift_exchange {
    margin-top: 2.6667vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 左右分布 */
}

.gift_left {
    display: flex;
    align-items: center;
    gap: 1vw;
    /* 图片和文字间距 */
}

.gift_reward {
    font-family: Albert Sans, Albert Sans;
    font-weight: 500;
    font-size: 4vw;
    color: #F0A145;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.gift_exchange_img {
    width: 4.2667vw;
    height: 4.2667vw;
}

.gift_button {
    width: 20vw;
    height: 6.4vw;
    border-radius: 55.7333vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift_button_exchange {
    background: linear-gradient(90deg, #02D478 0%, #04CD70 100%);
    font-family: Albert Sans;
    font-weight: 500;
    font-size: 3.2vw;
    line-height: 6.0vw;
    color: rgba(255, 255, 255, 1);
}

.gift_button_end {
    background: #EFEFEF;
    font-family: Albert Sans;
    font-weight: 500;
    font-size: 3.2vw;
    line-height: 6.0vw;
    color: #909090;
}

/* gift */

/* exchange */
#exchange {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    overflow-y: auto;
    /* 内容超出时可滚动 */
}

.exchange_div {
    background: #FFFFFF;
    border-radius: 4.2667vw;
    width: 73.6vw;
    height: 85vw;
    display: block;
    margin: 30% auto 0vw;
    text-align: center;
}

.exchange_market {
    width: 100%;
    height: 69.3333vw;
}

.exchange_code {
    margin-top: 3.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

.exchange_code span {
    font-family: Albert Sans, Albert Sans;
    font-weight: 400;
    font-size: 3vw;
    color: #000000;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.exchange_code img {
    width: 5.0667vw;
    height: 5.0667vw;
}

.exchange_button {
    margin: 3.2vw auto 0vw;
    width: 57.0667vw;
    height: 12.8vw;
    border-radius: 51.2vw;
    background: linear-gradient(90deg, #02D478 0%, #04CD70 100%);
    font-family: Albert Sans, Albert Sans;
    font-weight: bold;
    font-size: 3.7333vw;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange_close img {
    display: block;
    margin: 5.3333vw auto 0vw;
    width: 7.4667vw;
    height: 7.4667vw;
}

/* exchange */


/* iframe */
#fullscreenIframeContainer {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #FFFFFF;
    z-index: 100;
}

#fullscreenIframe {
    width: 100%;
    height: 100%;
}

/* 关闭按钮 */
.close_btn {
    position: fixed;
    top: 10vw;
    left: 4vw;
    width: 10vw;
    height: 10vw;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6.6667vw;
    box-shadow: 0 .5333vw 1.3333vw rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.close-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* iframe */


@media (min-width: 451px) {
    .top_div {
        height: 37.5px;
    }

    .bottom_div {
        width: 100%;
        height: 37.5px;
    }


    /* header */
    .header_left {
        margin-left: 24.75px;
        font-size: 15px;
    }

    .header_left img {
        width: 112.5px;
    }

    .header_right {
        margin-right: 14.25px;
        width: 61.88px;
        height: 20.25px;
        border-radius: 210px;
        font-size: 12px;
    }

    /* header */

    /* user */
    .user {
        margin-top: 26.25px;
    }

    .user_bonus img {
        width: 42px;
        height: 42px;
    }

    .user_bonus span {
        margin-right: 15px;
        font-size: 41.25px;
    }

    .user_info {
        font-size: 12px;
    }

    /* user */

    /* task */
    .daily_task {
        margin-top: 27.75px;
        margin-left: 14.25px;
        font-size: 17.25px;
    }

    .task_list {
        margin-top: 15.75px;
    }

    .task_list_container {
        margin: 0px 14.25px;
    }

    .item {
        min-height: 82.5px;
        margin-bottom: 9.75px;
        padding: 10.5px 0;
        border-radius: 8.25px;
        gap: 9.98px;
    }

    .task_icon {
        flex: 0 0 37.5px;
        height: 37.5px;
        border-radius: 8.25px;
        margin-left: 11.25px;
    }

    .task_title {
        font-size: 12px;
    }

    .task_bonus {
        font-size: 14px;
        gap: 1px;
    }

    .task_bonus img {
        width: 14.06px;
        height: 14.06px;
    }

    .task_button {
        flex: 0 0 30px;
        margin-right: 14.25px;
    }

    .task_btn {
        width: 70px;
        height: 26.25px;
        font-size: 12.75px;
        border-radius: 217.5px;
    }

    .progress_item {
        gap: 0;
        grid-template-rows: 1fr 15px 26.25px;
    }

    .task_progress {
        width: 131.25px;
        height: 6px;
        margin: 7.5px 0;
        border-radius: 10.5px;
    }

    .task_progress_done {
        border-radius: 10.5px;
        font-size: 10.5px;
        line-height: 8.33px;
    }

    .task_progress_done:before {
        border-radius: 10.5px;
    }

    .task_progress_percent {
        font-size: 8.33px;
        line-height: 6.75px;
        margin-left: 3.75px;
    }

    .empty_container {
        height: 12px;
        border-radius: 3.75px;
    }

    .empty_btn {
        width: 67.5px;
        height: 26.25px;
        border-radius: 18px;
    }

    /* task */

    /* gift */
    .gift_model {
        margin: 21.75px 12px 0px 12px;
        border-radius: 8.25px;
    }

    .gift_title {
        padding-top: 13.5px;
        padding-left: 13.5px;
        font-size: 16.88px;
    }

    .gift_list {
        margin-top: 3.75px;
    }

    .gift {
        width: 150px;
        margin: 10px 7.5px 7.5px 40px;
    }

    .gift_img {
        width: 150px;
        height: 120px;
        border-radius: 11.25px;
    }

    .gift_icon {
        margin-top: 12px;
        width: 93.75px;
        height: 93.75px;
        border-radius: 11.25px;
    }

    .gift_img span {
        font-size: 15.75px;
    }

    .gift_info {
        margin: 7.5px 0px 0px;
        font-size: 12px;
        line-height: 12px;
    }

    .gift_exchange {
        margin-top: 7.5px;
    }

    .gift_left {
        gap: 3.75px;
    }

    .gift_reward {
        font-size: 14px;
    }

    .gift_exchange_img {
        width: 13.5px;
        height: 13.5px;
    }

    .gift_button {
        width: 75px;
        height: 24px;
        border-radius: 210px;
    }

    .gift_button_exchange {
        font-size: 12px;
        line-height: 22.5px;
    }

    .gift_button_end {
        font-size: 12px;
        line-height: 22.5px;
    }

    /* gift */

    /* apply */
    .apply_div {
        border-radius: 15.75px;
        width: 277.5px;
        height: 360px;
        margin: 15% auto 0px;
    }

    .apply_title {
        padding-top: 30px;
        font-size: 21.75px;
        line-height: 21.75px;
    }

    .apply_img {
        margin: 20.25px auto 0px;
        width: 127.5px;
        height: 127.5px;
        border-radius: 11.25px;
    }

    .apply_img img {
        padding: 21px;
        width: 90px;
        height: 90px;
        border-radius: 15.75px;
    }

    .apply_img span {
        font-size: 15.75px;
    }

    .apple_user {
        padding-top: 14.25px;
    }

    .apple_user img {
        width: 23.25px;
        height: 23.25px;
    }

    .apple_user span {
        font-size: 21.75px;
    }

    .apply_confirm {
        margin: 15px auto 0px;
        width: 217.5px;
        height: 48px;
        border-radius: 192px;
        font-size: 18.75px;
    }

    .apply_cancel {
        margin-top: 17.25px;
        font-size: 15.75px;
    }

    .apply_close img {
        margin: 20.25px auto 0px;
        width: 28.13px;
        height: 28.13px;
    }

    /* apply */

    /* exchange */
    .exchange_div {
        border-radius: 15.75px;
        width: 277.5px;
        height: 318.75px;
        margin: 15% auto 0px;
    }

    .exchange_market {
        height: 262.5px;
    }

    .exchange_code {
        margin-top: 12px;
        gap: 3.75px;
    }

    .exchange_code span {
        font-size: 11.25px;
    }

    .exchange_code img {
        width: 18.75px;
        height: 18.75px;
    }

    .exchange_button {
        margin: 12px auto 0px;
        width: 217.5px;
        height: 48px;
        border-radius: 192px;
        font-size: 14.25px;
    }

    .exchange_close img {
        margin: 20.25px auto 0px;
        width: 24.38px;
        height: 24.38px;
    }

    /* exchange */

    /* overlay */
    .overlay_div {
        border-radius: 5.25px;
        width: 112.5px;
        height: 112.5px;
    }

    .overlay_bonus {
        margin-top: 8.25px;
    }

    .overlay_bonus_img {
        width: 29.25px;
        height: 29.25px;
    }

    @keyframes getBonus {

        35%,
        70%,
        to {
            transform: translateY(0);
            animation-timing-function: ease-out;
        }

        0% {
            transform: translateY(-16.5px);
        }

        55% {
            transform: translateY(-8.25px);
        }

        80% {
            transform: translateY(-4.13px);
        }

    }

    .bonus_text1 {
        margin: 12px 0 2.25px;
        font-size: 18.75px;
    }

    .bonus_text2 {
        margin-left: 3px;
        font-size: 16.5px;
    }

    .overlay_time {
        padding-bottom: 5.25px;
        font-size: 9.75px;
        line-height: 15px;
    }

    /* overlay */

    /* fail_overlay */
    #fail_overlay {
        width: 217.5px;
        border-radius: 14.25px;
        padding-top: 26.25px;
    }

    .fail_overlay_icon {
        top: -30px;
    }

    .fail_overlay_icon_star {
        height: 56.25px;
    }

    .fail_overlay_icon_coin {
        height: 52.5px;
    }

    .fail_overlay_shadow {
        width: 60px;
        height: 5.25px;
        margin-top: 5.25px;
    }

    #fail_overlay_text {
        width: 112.5px;
        font-size: 15.38px;
        margin-top: 7.5px;
    }

    /* fail_overlay */

    /* errorMsg */
    #errorMsg {
        padding: 1.5px 10.5px;
        border-radius: 5.25px;
        font-size: 16.5px;
    }

    /* errorMsg */

    /* iframe */
    .close_btn {
        top: 32.5px;
        left: 15px;
        width: 75px;
        height: 75px;
        font-size: 50px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    /* iframe */
}