:root {
    overflow-x: hidden;
}

* { margin: 0; padding: 0; box-sizing: border-box; } 

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    font-weight: 400;
    letter-spacing: 0;
    /* line-height: 1.3; */
}

a, button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}


ul, ol {
    list-style-type: none;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

p { margin: 0; }


/* 추가 */
input[type=checkbox] {
    transform: scale(1.25);
}
 


.cursor-pointer {
    cursor: pointer;
}


/* 스크롤 */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #eaeaea;
    border-radius: 10px;
}
*::-webkit-scrollbar-track {
    background: #eaeaea;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: #bebebe;
    border-radius: 10px;
}
