[x-cloak] {
            display: none !important;
        }

/* 색 */
.bg-black {
    background-color: black;
}

/* 포지션 */
.position-fixed {
    position: fixed;
    z-index: 1000;
}
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.top-0 {
    top: 0;
}
.left-0 {
    left: 0;
}
.w-100 {
    width: 100%;
}