@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:wght@400;700&display=swap');

html, body {
  font-family: 'Noto Sans KR', Arial, sans-serif !important;
}

:root {
  overflow-x: hidden;
  /* 메인 컬러 */
  --main-color: #FF7725;
  --bk-color: #161616;

  /* 메인 타이틀 사이즈 */
  --main-title-size: 1.5rem;
  /* 서브 타이틀 사이즈 */
  --sub-title-size: 1.2rem;
  /* 서브 텍스트 사이즈 */
  --sub-text-size: 0.9rem;
  /* 기본 폰트 사이즈 */
  --base-font-size: 16px;
  /* 기본 폰트 두께 */
  --base-font-weight: 400;
}

.main-color { color: var(--main-color) !important; }
.main-title { font-size: var(--main-title-size) !important; }
hr.line {
  border: none;
  border-top: 2px solid var(--main-color);
  height: 0;
  background: transparent;
  max-width: 800px;
  margin: 0 auto;
}



* { 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:not(.btn, .page-link) { 
  /* color: inherit !important; */
  text-decoration: none !important;
  cursor: pointer !important;
}

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; }



.cursor-pointer { cursor: pointer !important; }
.cursor-not-allowed { cursor: not-allowed; }

/* 넘치는 글씨 ... */
.text-elipsis {
    display: inline-block;
    width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* 스켈레톤 UI */
.bg-skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.txt-skeleton-50 {
    width: 50% !important;
    height: 1.2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.txt-skeleton-50.sm { height: 0.9rem; }
.txt-skeleton-50.lg { height: 2rem; }

.txt-skeleton-100 {
    width: 100% !important;
    height: 1.2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.txt-skeleton-100.sm { height: 0.9rem; }
.txt-skeleton-100.lg { height: 2rem; }


/* 스크롤 */
*::-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;
}


.s-lg { height: 100px !important; }




/* scale */
.scale-1 { transform: scale(1); }
.scale-2 { transform: scale(1.25);}
.scale-3 { transform: scale(1.5) !important; }
.scale-4 {transform: scale(1.75); }
.scale-5 { transform: scale(2); }

/* top bottom left right */
.top-1 { top: 1px; }
.top-2 { top: 2px; }
.top-3 { top: 3px; }
.top-4 { top: 4px; }
.top-5 { top: 5px; }
.top-6 { top: 6px; }
.top-7 { top: 7px; }
.top-8 { top: 8px; }
.top-9 { top: 9px; }
.top-10 { top: 10px; }

.bottom-1 { bottom: 1px; }
.bottom-2 { bottom: 2px; }
.bottom-3 { bottom: 3px; }
.bottom-4 { bottom: 4px; }
.bottom-5 { bottom: 5px; }
.bottom-6 { bottom: 6px; }
.bottom-7 { bottom: 7px; }
.bottom-8 { bottom: 8px; }
.bottom-9 { bottom: 9px; }
.bottom-10 { bottom: 10px; }

.left-1 { left: 1px; }
.left-2 { left: 2px; }
.left-3 { left: 3px; }
.left-4 { left: 4px; }
.left-5 { left: 5px; }
.left-6 { left: 6px; }
.left-7 { left: 7px; }
.left-8 { left: 8px; }
.left-9 { left: 9px; }
.left-10 { left: 10px; }

.right-1 { right: 1px; }
.right-2 { right: 2px; }
.right-3 { right: 3px; }
.right-4 { right: 4px; }
.right-5 { right: 5px; }
.right-6 { right: 6px; }
.right-7 { right: 7px; }
.right-8 { right: 8px; }
.right-9 { right: 9px; }
.right-10 { right: 10px; }
