@charset "utf-8";

/*-------------------------------------------------
Author : WEB,Seo
Create date : 2025. 01. 17
Last update : 
-------------------------------------------------*/

/* ========== Root ========== */
:root {
    --black-color: #222;
    --gray-color: #686868;
    --blue-color: #EBF5FA;
    --yellow-color: #FFFDE6;
    --orange-color: #FFF2D6;
    --pink-color: #FFEDED;
    --green-color: #F5FCD5;
    --blue-color2: #8CC7E7;
    --yellow-color2: #FFF56F;
    --orange-color2: #FFB612;
    --pink-color2: #FFBEBE;
    --green-color2: #C9EE0B;

}
/* ========== //Root ========== */

.__font-face {
    font-family: 'the_face';
}

.__font-concon {
    font-family: 'ongle_concon';
}

.__font-mimi {
    font-family: 'ongle_mimi';
}

.__font-lee {
    font-family: 'leeseoyun';
}

.__scroll-wrap {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    overflow-y: scroll;
    overflow-x: clip;
}

.__scroll-wrap::-webkit-scrollbar {
    width: 8px;
}

.__scroll-wrap::-webkit-scrollbar-thumb {
    width: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* 스크롤바 색상 */
    border-radius: 10px;
    /* 스크롤바 둥근 테두리 */
}

.__base-wrap {
    max-width: 1600px;
    width: calc(100% - 30px);
    margin: 0 auto;
}

.__base-wrap.max-w-lg {
    max-width: 1400px;
}

.__base-wrap.max-w-ms {
    max-width: 1200px;
}

.__base-wrap.max-w-sm {
    max-width: 960px;
}

.__h-full {
    height: 100vh;
}

.__flex {
    display: flex;
}

.__align-center {
    align-items: center;
}

.__flex-center {
    display: flex;
    justify-content: center;
}

.__flex-column {
    display: flex;
    flex-direction: column;
}

.__flex-between {
    display: flex;
    justify-content: space-between;
}

.__flex-reverse-center {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}



/* 문장 형광펜 */
.deco {
    background-color: rgba(249, 175, 6, 0.4);
    display: inline-block;
    border-radius: 99px;
    font-weight: 500;
    height: 80%;
}


/* 말줄임 한줄 */
.__txtCut {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}

/* 말줄임 여러줄 */
.__txtCut-multi {
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 문장 형광펜 */
.txt-line {
    display: inline-block;
    position: relative;
}

.txt-line:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    opacity: 0.4;
    z-index: -1;
    width: 110%;
    height: 80%;
    border-radius: 99px;

}

/* 초기 값 셋팅 */
#initial * {
    margin: initial;
    padding: initial;
    font-size: initial;
    border: initial;
    font: initial;
    vertical-align: initial;
    list-style: initial;
    font-style: initial;
    font-weight: initial;
}

#initial b {
    font-weight: bold !important;
}

#initial b * {
    font-weight: bold !important;
}