body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;  /* 스크롤바 숨기기 */

    /* 텍스트 블락 방지 */
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}

body {

}

#common_container {
    width: 1920px;
    height: 1020px;
    transform-origin: top left;
    position:relative;
}


.common_layer {
    position: absolute;
    width: 1920px;
    height: 1020px;
    border: 0;
    display: none;
}

.common_layer_iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}
.common_layer_iframe.show {
    display: block;
}


.common_layer.show {
    display: block;
}

.common_layer .common_dim {
    position: absolute;
    background: black;
    opacity: 0.9;
    width: 1920px;
    height: 1020px;
}

.common_layer .common_content {
    position: absolute;
}

.loading-area {
    top: 0;
    left: 0;
    position: absolute;
    width: 1920px;
    height: 1020px;
    background-color: rgb(245, 245, 243);
    z-index: 99999;
}


.loading-area-1 {
    top: 0;
    left: 0;
    position: absolute;
    width: 1920px;
    height: 1020px;

}

.loading-area-1.default {
    background-color: rgb(245, 245, 243);
}

.loading-area-1.black {
    background-color: black
}


.loading-area-1 > img {
    position: absolute;
    width: 274px;
    height:265px ;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.loading-area > img {
    position: absolute;
    width: 274px;
    height:265px ;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading-area.loading-social > img {
    position: absolute;
    width: 950px;
    height:650px ;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
}

* {
    -webkit-tap-highlight-color: transparent; /* 터치 시 하이라이트 제거 */
}