@charset "utf-8";

/*-------------------------------------------------
Author : WEB,Seo
Create date : 2025. 01. 17
Last update : 
-------------------------------------------------*/

/* ========== Root ========== */
:root {
    --input-bg-color: var(--white-color);
    --main-color: #2a27c4;
    --line-color: #E2E2E2;
    --white-color: rgb(255, 255, 255);

}
/* ========== //Root ========== */

.__font-wave {
    font-family: 'WavvePADO';
}

.__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);
    height: 100%;
    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;
}

.__w-full {
    width: 100%;
}

.__h-full {
    height: 100vh;
}


.__flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.__flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.__flex-column-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.__flex-column {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.__fc-main {
    color: var(--main-color);
}



/* 문장 형광펜 */
.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;
}



.__pt-10 {
    padding-top: 10px;
}



.__pb-10 {
    padding-bottom: 10px;
}

.__pb-20 {
    padding-bottom: 20px;
}


.__pb-30 {
    padding-bottom: 30px;
}

.__pb-40 {
    padding-bottom: 40px;
}

.__mb-10 {
    margin-bottom: 10px;
}

.__mb-20 {
    margin-bottom: 20px;
}


.__mb-30 {
    margin-bottom: 30px;
}

.__gap-20 {
    gap: 20px;
}


.__gap-50 {
    gap: 50px;
}

.d_br, .t_br, .m_br {
    display: none;
}