/* 앱 실행중 화면 */
.loading_cont .dim {
    display: flex;
    width: 100%;
    height: 353px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(/static/common/img/bg_bottom.png) no-repeat center/cover;
}

.loading_cont .loading_wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.loading_cont .loading_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.loading_cont .loading_title {
    font-size: 30px;
    font-weight: 700;
    color: #9E9E9E;
}

.loading_cont .dots_ani {
    display: flex;
    height: 8px;
}

.loading_cont .loading_text {
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #5E5E5E;
}

/* 웹접근성 컨텐츠 숨김 */
.sr_only {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    z-index: -1;
    border: none;
    padding: 0;
    margin: 0;
    position: absolute;
}

.hide {
    display: none !important;
}

@media screen and (max-width:1023px) {

    /* 앱 실행중 화면 */
    .loading_cont .loading_title {
        font-size: 20px;
    }

    .loading_cont .dots_ani {
        height: 6px;
    }

    .loading_cont .loading_text {
        margin-top: 8px;
        font-size: 12px;
    }
}