html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
    /* font-size: 62.5%; */
    height: 100%;
}
*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    cursor: pointer;
    /* color: #333; */
}

/* button {
    cursor: pointer;
} */
li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
    display: block;
    list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.pg-loading-cover {
    background-color: #fff;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.pg-loading-top-line {
    position: relative;
}
.pg-loading-top-bar {
    position: absolute;
    width: 4%;
    height: 6px;
    background-color: #02789c;

    animation: pg-loading-ani 5s linear infinite alternate;
}

@keyframes pg-loading-ani {
    0% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}
@-webkit-keyframes pg-loading-ani {
    0% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}
