@charset "utf-8";

/**
* 기본 스타일
* [공용] / [레이아웃] / [본문] / [하단] / [버턴] / [페이징] / [스크롤] / [로딩] / [색상]
*
* @author 박성용
* @version 1.0, 퍼블리싱 - 20220928
**/

/* [공용] */
* {
    margin: 0;
    padding: 0;
}

html {
    overflow: auto;
    border: 0;
}

body {
    width: 100%;
    min-width: 1440px;
    height: 100%;
    color: #121212;
    background-color: #ffffff;
    overflow: auto;
}

table{
    width: 100%;
    border-collapse:collapse;
    border-spacing:0;
}
th {
    font-size:14px;
    background-color: #f5f5f5;
    font-weight:700;
}
th, td{
    border: 1px solid #dddddd;
    text-align:center;
    font-size:12px;
    border-collapse:collapse;
}

textarea {
    resize: none;
}

li { list-style: none; }

a {
    color: #121212;
    text-decoration: none;
    border:0px;
}
a:hover{
    color: #ffc13d;
    text-decoration:none;
    border:0px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #b5b5b5;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #b5b5b5;
    opacity:1;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #b5b5b5;
    opacity:1;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #b5b5b5;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}

/* 기본 INPUT */
.basic-input-item {
    width: 100%;
    height: 2.92vw;
    background-color: var(--white);
}
.basic-input-item::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    /*color: var(--verypinkish-grey);*/
    color: #ffffff;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}
.basic-input-item:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    /*color: var(--verypinkish-grey);*/
    color: #ffffff;
    opacity:1;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}
.basic-input-item::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    /*color: var(--verypinkish-grey);*/
    color: #ffffff;
    opacity:1;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}
.basic-input-item:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    /*color: var(--verypinkish-grey);*/
    color: #ffffff;

    line-height: inherit;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    word-break:break-all;
}

::-ms-clear {
    display: none;
}

/* [레이아웃] */
.psr-left {
    float: left;
}
.psr-right {
    float: right;
}
.psr-clear {
    clear: both;
}
.psr-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
    word-break:break-all;
}
.psr-flex-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    text-align: left;
    word-break:break-all;
}
.psr-flex-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    text-align: right;
    word-break:break-all;
}
.psr-flex-column-left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    word-break:break-all;
}
.psr-flex-column-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    text-align: right;
    word-break:break-all;
}

/* [본문] */
.content-base {
    width: 100%;
}
.content-container {
    padding: 90px 2.77vw 200px 2.77vw;
}

/* 본문 섹션 */
.content-box-item {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
}
.content-box-main-container {
    /*padding: 1.04vw 1.04vw 0.83vw 1.04vw;*/
    padding: 0 1.04vw 0 1.04vw;
    cursor: pointer;
}
.content-box-sub-container.off {
    display: none;
}

/* 문구 */
.content-big-text-item {
    font-family: SuitMedium;
    font-size: 1.56vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #444;
}
.content-middle-text-item {
    font-family: SuitMedium;
    font-size: 0.94vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #444;
}
.content-small-text-item {
    font-family: SuitMedium;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #444;
}
.content-very-small-text-item {
    font-family: SuitMedium;
    font-size: 0.73vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #444;
}

/* 본문 제목 문구 */
.content-main-title-text-item {
    font-family: SuitSemiBold;
    font-size: 1.56vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #444;
}
/* 본문 제목 설명 문구 */
.content-main-title-explain-text-item {
    font-family: SuitSemiBold;
    font-size: 0.83vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #444;
}
/* 본문 목록 제목 문구 */
.content-list-title-text-item {
    font-family: SuitBold;
    font-size: 1.04vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    vertical-align: top;
    color: #444;
}
/* 본문 목록 제목 숫자 문구 */
.content-list-title-number-item {
    font-family: SuitBold;
    font-size: 1.04vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    vertical-align: top;
    color: #1973ff;
}
/* 본문 목록 제목 설명 문구 */
.content-list-title-detail-text-item {
    font-family: SuitSemiBold;
    font-size: 0.83vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #777777;
}
/* 본문 목록 드롭다운 문구 */
.content-list-title-dropdown-text-item {
    font-family: SuitBold;
    font-size: 0.89vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #121212;
}
/* 본문 목록 컬럼 문구 */
.content-list-column-text-item {
    font-family: SuitMedium;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}
/* 본문 목록 데이터 문구 */
.content-list-data-text-item {
    font-family: SuitMedium;
    font-size: 0.73vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}

/* 본문 메인 탭 메뉴 문구 */
.content-main-tab-menu-text-item {
    font-family: SuitSemiBold;
    font-size: 1.04vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}

/* 안내 제목 문구 */
.content-guide-title-text-item {
    font-family: SuitSemiBold;
    font-size: 1.04vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #121212;
}
/* 안내 설명 문구 */
.content-guide-explanation-text-item {
    font-family: SuitRegular;
    font-size: 0.83vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #777777;
}
/* 안내 설명 문구 - 색상 있을 경우 */
.content-guide-detail-explanation-highlight-text-item {
    font-family: SuitRegular;
    font-size: 0.73vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
}
/* 안내 설명 문구 - 기본 색상 */
.content-guide-detail-explanation-text-item {
    font-family: SuitSemiBold;
    font-size: 0.73vw;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #777777;
}

/* 문구 강조 - 주황색 */
.highlight-orange {
    color: #ff4e00;
}
/* 문구 강조 - 파란색 */
.highlight-blue {
    color: #1973ff;
}
/* 문구 강조 - 회색 */
.highlight-gray {
    color: #a0a0a0;
}
/* 문구 강조 - 빨강 */
.highlight-red {
    color: #ec0010;
}
/* 문구 강조 - 녹색 */
.highlight-green {
    color: #00cb88;
}

/* [하단] */
.footer-base {
    width: 100%;
    /*height: 100px;*/
    height: 5.26vw;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}
.footer-item {
    height: 0.94vw;
    font-family: SuitMedium;
    font-size: 0.73vw;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #feec88;
    padding: 0 0 0 2.77vw;
    line-height: inherit;
}

/* [로딩] */
.loading-mask{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:9995;
    background-color: #ffffff;
}
.loading-mask-opacity {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:9995;
    background-color: #ffffff;
    opacity: .8;
}
.loading{
    position:absolute;
    z-index:9996;
    width : 32px;
    height : 32px;
    left : 50%;
    top : 50%;
    margin : -30px 0px 0px -30px;
    background: url('/resourceS/static/imageS/common/loading_32.gif') no-repeat center center;
}