@charset "UTF-8";


/*한글 범위:  U+AC00-D7A3*/
/*호환용 한글(자음, 모음):3131~318F*/
/*영어 대문자 범위 :  U+0041-005A*/
/*영어 소문자 범위 :   U+0061-007A*/
/*숫자 범위 : U+0030-0039*/
/*특수 문자: U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E*/

/* CSS Document */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
    /*font-weight:normal;*/
}
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    line-height:1.5 !important;
    min-height: 1000px;
    font-size: 14px;
    font-family: 'Pretendard',-apple-system, "Apple SD Gothic Neo" , BlinkMacSystemFont,"Malgun Gothic",  sans-serif;
    letter-spacing: -0.025em;
}

     /*p, a, h1, h2, h3, h4, h5, h6 {*/
/*    transform: skew(-0.1deg);*/
/*}*/

/*-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica*/
/*Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji*/

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

ul,ol,li {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    vertical-align:baseline;
    background:transparent;
    color: #292929;
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    /*border-collapse:collapse;*/
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
    font-family: 'Pretendard',sans-serif;
}

textarea{
    font-family: 'Pretendard',sans-serif;
}

input::placeholder{
    font-family: 'Pretendard',sans-serif;
}

input::placeholder::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: 'Pretendard',sans-serif;
}

input::placeholder::-moz-placeholder { /* Firefox 19+ */
    font-family: 'Pretendard',sans-serif;
}
input::placeholder:-ms-input-placeholder { /* IE 10+ */
    font-family: 'Pretendard',sans-serif;
}
input::placeholder:-moz-placeholder { /* Firefox 18- */
    font-family: 'Pretendard',sans-serif;
}

/* 버튼지우는 reset */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*공통 css pc 버전입니다.*/
.hide {
    display: none;
}
.hideForce {
    display: none!important;
}

.middle > div{
    margin: 0 auto;
}

.floatLeft{
    float: left;
}

.floatRight{
    float: right;
}

.div_editable{
    border: 1px solid #dcdcdc;
    overflow-y: auto;
}

.btn22 {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
    color: #373737;
    border: 1px solid #dadada;
    cursor: pointer;
    box-sizing: border-box;
}


.horizonCrop{
    position: relative;
    overflow: hidden;
}
.horizonCrop img{
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100% !important;
    width: auto !important;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.verticalCrop{
    position: relative;
    overflow: hidden;
}
.verticalCrop img{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100% !important;
    height: auto !important;
}

.bold_700 {
    font-weight: 700;
}

/*.cmsBanner img, .cmsBanner iframe, .cmsBanner embed {*/
/*    max-width: none !important;*/
/*    max-height: none !important;*/
/*}*/

.width88 {
    width: 88px;
}


/*----------------------common css From Event------------------------*/


/*btn size*/

button{
    font-family: 'Pretendard',sans-serif;
    border: 0;
    background: none;
}

.btnBig{
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}
.btnMiddle{
    display: inline-block;
    height: 36px;
    line-height: 35px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}
.btnSmall{
    display: inline-block;
    height: 27px;
    line-height: 27px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

/*btn size end*/

/*btn style*/
.btnMain1{
    background-color: #1891c3;
    border: 1px solid #1891c3;
    color: #fff;
}
.btnMain2{
    background-color: #f97141;
    border: 1px solid #f97141;
    color: #fff;
}
.btnMain3{
    background-color: #959595;
    border: 1px solid #959595;
    color: #fff;
}
.btnSub1{
    background-color: #f97141;
    border: 1px solid #f97141;
    color: #fff;
}
.btnSub2{
    background-color: #ddeff6;
    border: 1px solid #1891c3;
    color: #1891c3;
}
.btnSub3{
    background-color: #42499d;
    border: 1px solid #42499d;
    color: #fff;
}
.btnSub4{
    background-color: #eee;
    border: 1px solid #d0d0d0;
    color: #1891c3;
}
.btnSub5{
    background-color: #eee;
    border: 1px solid #d0d0d0;
    color: #333;
}
.btnSub6{
    background-color: #fff;
    border: 1px solid #959595;
    color: #333;
}
.btnSub7{
    background-color: #fff;
    border: 1px solid #959595;
    color: #959595;
}

/*btn style2*/


.tagSquare1{
    display: inline-block;
    height: 24px;
    padding: 15px;
    font-size: 12px;
    background-color: #fff;
    border:1px solid #42499d;
    color: #42499d;
}

.tagRound1{
    display: inline-block;
    background-color: #1891c3;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound2{
    display: inline-block;
    background-color: #8bc8e1 ;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound3{
    display: inline-block;
    background-color: #dddddd;
    color: #1891c3;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound4{
    display: inline-block;
    background-color: #959595;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound5{
    display: inline-block;
    background-color: #42499d;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagRound6{
    display: inline-block;
    background-color: #c34444;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}

.tagEventPayFree{
    display: inline-block;
    background-color: #55c891;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}
.tagEventPay{
    display: inline-block;
    background-color: #f0a841;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
}

.width80{
    width: 80px;
}
.width88{
    width: 88px;
}
.width148{
    width: 148px;
}



.btn01{
    display: inline-block;
    height:22px;
    line-height:22px;
    font-size: 12px;
    font-weight: bold;
    color: #42499d;
    padding:0 15px;
    text-decoration: none;
    background-color: #ebebeb;
    margin-bottom:5px;
    text-align: center;
}
.btn01:hover{
    background-color: #e4e4e4;
}
.btn02{
    width:203px;
    height:42px;
    border:0;
    background-color: #57c16b;
    color: #fff;
    font-size:16px;
    font-weight: 500;
    margin-left: 209px;
    margin-bottom: 20px;
    cursor: pointer;
}
.btn02:hover{
    background-color: #51bb65;
}

.btn03{
    width: 195px;
    height: 45px;
    border: 0;
    background-color: #1891c3;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    float: right;
}

.btn03:hover{
    background-color: #198dbd;
}
.btn06{
    color: #9c9c9c;
    cursor: pointer;
}
.btn06{
    padding:15px 0;
    box-sizing: border-box;
    text-align: center;
}
.btn07{
    position: absolute;
    left:0;
    top:0;
    display: inline-block;
    width:173px;
    height:60px;
    line-height:60px;
    color: #fff;
    box-sizing:border-box;
    font-size: 20px;
    font-weight: bold;
    background-color: #27a2d6;
}
.btn07:hover{
    background-color: #2395c5;
    cursor: pointer;
}
.btn11{
    display: inline-block;
    padding:13px 50px;
    border:1px solid #dfdfdf;

}
.btn11 > a{
    text-decoration: none;
}
.btn12{
    background-color: #4195f5;
    cursor: pointer;
    text-align: center;
    padding: 15px 0;
    width:456px;
    margin: 0 auto;
    display: block;
    text-decoration: none;
    color: #fff;
}

.btn12 span{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.btn12:hover{
    background-color: #3d8eeb;
}
.btn13{
    background-color: #C12C0C;
    color: #fff;
    padding: 11px 0;
    text-align: center;
    display: block;
    cursor: pointer;
    padding:11px 0;
    text-align: center;
}

.btn14{
    border: 1px solid #1891c3;
    background-color: #1891c3;
    padding:7px 0;
    color: #fff;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.btn14:hover{
    background-color: #177ea9;

}

.btn15{
    border: 1px solid #dadada;
    background-color: #fff;
    padding:7px 0;
    color: #7e7e7e;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.btn15:hover{
    background-color: #f5f5f5;
    color: #373737;
}


.btn21{
    display:block;
    width: 100%;
    padding:10px 0;
    text-align:center;
    background-color:#1891c3;
    border:1px solid #1891c3;
    color:#fff;
    cursor: pointer;
    box-sizing: border-box;
}
.btn21:hover{
    background-color: #177ea9;
    color: #fff;
}

.btn23{
    display:block;
    width: 100%;
    border: 1px solid #dadada;
    background-color: #fff;
    padding: 10px 0;
    text-align:center;
    color: #7e7e7e;
    box-sizing: border-box;
}
.btn23:hover{
    background-color: #f5f5f5;
    color: #373737;
}
.btn24{
    display:block;
    width: 100%;
    border: 1px solid #dadada;
    background-color: #fff;
    padding: 10px 0;
    text-align:center;
    color: #7e7e7e;
    box-sizing: border-box;
}
.btn24:hover{
    background-color: #1891c3;
    color: #fff;
}
.btn25{
    display:inline-block;
    text-align:center;
    color: #42499d;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    background-color: #ebebeb;
    padding:5px 15px;
    margin-bottom:5px;
    box-sizing: border-box;
}
.btn25:hover{
    background-color: #e4e4e4;
}
.btn26{
    display:block;
    text-align:center;
    color: #1891c3;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #1891c3;
    background-color: #fff;
    padding:15px 0;
    box-sizing: border-box;
}
.btn27{
    display:block;
    text-align:center;
    font-size: 17px;
    font-weight: 400;
    padding:10px 0;
    box-sizing: border-box;
    color: #fff;
}
.btn28{
    display:block;
    text-align:center;
    font-size: 17px;
    font-weight: 400;
    padding:12px 0;
    box-sizing: border-box;
    background-color: #fc9e60;
    color: #fff;
    margin:0 auto;
    cursor: pointer;
}

.btn29{
    display:block;
    text-align:center;
    font-size: 14px;
    font-weight: 400;
    padding:6px 0;
    box-sizing: border-box;
    background-color: #dddddd;
    color: #727272;
    cursor: pointer;
}
.btn30{
    display:block;
    text-align:center;
    font-size: 38px;
    font-weight: 500;
    padding:25px 0;
    box-sizing: border-box;
    background-color: #78c3a3;
    color: #fff;
    cursor: pointer;
}
.btn31{
    display:block;
    text-align:center;
    padding:8px 23px;
    box-sizing: border-box;
    background-color: #aaaaaa;
    border:1px solid #aaaaaa;
    color: #fff;
    /*border-radius: 7px;*/
    font-weight: 300;
    cursor: pointer;
}
.btn32{
    display:block;
    text-align:center;
    font-weight: 500;
    padding:20px 0;
    box-sizing: border-box;
    background-color: #fc9e60;
    border:1px solid #fc9e60;
    color: #fff;
    cursor: pointer;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.width100px {
    width: 100px;
}

/*common Category*/
ul.commonCategoryWrap{
    height: 27px;
    border-bottom: 2px solid #9c9c9c;
    overflow: hidden;
}
.commonCategoryWrap > li{
    float: left;
    font-size:16px;
}

.commonCategroyGray{
    color: #7d7d7d;
}
.commonCategroyGray a{
    text-decoration: none;
    color: #7d7d7d;;
}
.commonCategroyGray a:visited{
    color: #7d7d7d;
}
.commonCategroyBar{
    margin: 0 8px;
    color: #7d7d7d;
    margin-top: -2px;
}
.commonCategoryBlue{
    color: #354992;
}
.commonCategoryBlue a:visited{
    color: #354992;
}
.commonCategoryBlue a{
    text-decoration: none;
    color: #354992;
}
/*common Category end*/



.newsletter5{
    width: 100%;
}

.mgAuto{
    margin:0 auto;
}

.pdUp{padding-bottom: 15px}

.g-recaptcha>div{
    margin:0 auto;
}

.top{
    position: fixed;
    right: 20px;
    bottom: 8px;
    cursor: pointer;
}

.border_item{
    border: 1px solid #EDEDED;
    border-radius: 10px;
    background: #fff;
}

.title_border_bottom{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EDEDED;
}

.shadow_item{
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    background: #fff;
}


/*하늘색 버튼*/
.new_btn01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #E6F1FF;
    color: #4294FF;
    padding: 6px 12px;
}

/*파란색 버튼*/
.new_btn02{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #4294FF;
    color: #fff;
    padding: 6px 12px;

}

/*회색 버튼*/
.new_btn03{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #F1F1F5;
    color: #767676;
    padding: 10px 12px;
}

/*진회색 버튼 - 선택불가 버튼*/
.new_btn04{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    /*cursor: pointer;*/
    letter-spacing: -0.35px;

    background: #bbbbbb;
    color: #fff;
    padding: 10px 12px;
}

/*border파란색 버튼*/
.new_btn05{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #fff;
    color: #4294FF;
    border: 1px solid #4294FF;
    padding:9px 12px;
}

/*노란색 버튼*/
.new_btn06{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #FFB21A;
    color: #fff;
    padding: 10px 12px;
}

/*border 회색 버튼*/
.new_btn07{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    border:1px solid #DBDBDB;
    color: #767676;
    padding: 0 12px;
}

/* 흰배경 보라색글자 */
.new_btn08{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    background: #E3E0FF;
    color: #4E53F1;
    padding: 0 12px;
}

/* 하얀색 선, 택스트 */
.new_btn09{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.35px;

    border: 1px solid #fff;
    color: #fff;
    padding: 0 12px;
}


/*글쓰기 버튼*/
.write_btn{
    display: flex;
    width: 86px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #4294FF;
    color: #4294FF;
    letter-spacing: -0.35px;
}

.write_btn img{
    margin-right: 4px;
}


.gradation_div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;

    border: 1px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(150deg, rgba(102,204,255,1) 0%, rgba(102,102,255,1) 50%, rgba(204,102,255,1) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.gradation_txt {
    background: linear-gradient(150deg, rgba(102,204,255,1) 0%, rgba(102,102,255,1) 50%, rgba(204,102,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-size: 14px;
    padding: 6px 12px;
    font-weight: 500;
    letter-spacing: -0.35px;
}

.full_gradation_div {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;

    background:  linear-gradient(135deg, #80D4FF 16.67%, #8080FF 52.08%, #D480FF 87.5%);
    padding: 7px 12px;
}

.full_gradation_div p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.35px;
}

/* 공유, 링크복사 버튼 */
.btn_copy_link,.btn_open_modal_share{
    cursor: pointer;
}

.disabled{
    cursor: default;
}

    /*140px로 고정된 버튼*/
.new_btn_wid_140{
    width: 140px;
    height: 40px;
}

.btn_wid_133{
    width: 133px;
}

/*100퍼센트 너비 버튼*/
.new_btn_wid_100P{
    width: 100%;
}

/*높이별 버튼*/
.new_btn_hei_28{
    height: 28px;
    font-size: 13px;
    padding: 6px 8px;
}

.new_btn_hei_30{
    height: 30px;
}

.new_btn_hei_32{
    height: 32px;
}

.new_btn_hei_36{
    height: 36px !important;
}

.new_btn_hei_40{
    height: 40px;
}

.new_btn_hei_48{
    height: 48px;
    font-size: 16px;
}

.new_btn_wid_100P{
    width: 100%;
}

/*공통태그*/

/*title*/
.new_title1{
    color: #111;
    font-weight: 700;
    font-size: 24px;
}
.new_title2{
    color: #111;
    font-weight: 700;
    font-size: 20px;
}
.new_title3{
    color: #111;
    font-weight: 700;
    font-size: 18px;
}
.new_title4{
    font-size: 17px;
    font-weight: bold;
}
.new_title5{
    font-size: 16px;
    font-weight: bold;
}
.new_title6{
    font-size: 15px;
    font-weight: bold;
}

.new_title7{
    font-size: 15px;
    font-weight: bold;
}

.sub_title_text{
    font-size: 14px;
    color: #767676;
    font-weight: 500;
    letter-spacing: -0.35px;
}

.sub_title_text2{
    font-size: 16px;
    color: #767676;
    font-weight: 500;
    letter-spacing: -0.35px;
}

.sub_title_text3{
    font-size: 16px;
    color: #767676;
    font-weight: 700;
    letter-spacing: -0.35px;
}

.title_wrap_space_between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*본문 font text */
.body1{
    color: #111111;
    font-size: 16px;
}
.body2{
    color: #111111;
    font-size: 15px;
}
.body3{
    color: #111111;
    font-size: 14px;
}
.body4{
    color: #111111;
    font-size: 13px;
}
.body5{
    color: #111111;
    font-size: 12px;
}

.new_txt_blue{
    color: #4294FF;
}

.new_txt_gray{
    color: #767676;
}

.error_red{
    color: #F65252;
    font-size: 12px;
    letter-spacing: -0.3px;
    padding: 0 4px;
}

.new_marginB8{
    margin-bottom: 8px;
}

.new_marginB4{
    margin-bottom: 4px;
}

.new_marginR12{
    margin-right: 12px;
}

.underline_txt{
    text-decoration : underline;
    text-underline-position : under;
}

.dot_text{
    position: relative;
    padding-left: 20px;
}

.dot_text::after{
    content:'';
    position: absolute;
    left: 10px;
    top: 8px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #111;
}

/*color txt*/
.red_txt{
    color: #F65252;
}

.blue_txt{
    color: #4294FF;
}

.gray_txt9{
    color: #767676;
}

.gray_txt8{
    color: #999999;
}

.gray_txt7{
    color: #BBB;
}

.green_txt7{
    color: #29CC96;
}


/*font size*/
.font12{
    font-size: 12px;
}

.font13{
    font-size: 13px;
}

.font16{
    font-size: 16px;
}

.font20{
    font-size: 20px;
}

.font24{
    font-size: 24px;
}

.font26{
    font-size: 26px;
}

.font28{
    font-size: 28px;
}

.font32{
    font-size: 32px;
}

.font34{
    font-size: 34px;
}

.caption{
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

.fw_b{
    font-weight: bold;
}

.font_bold{
    font-weight: bold;
}

.font_weight_500{
    font-weight: 500;
}

.line_height0{
    line-height: 0;
}


/*카태고리*/
.board_category{
    font-weight: 500;
    font-size: 12px;
    border-radius: 20px;
    padding: 3px 8px;
    display: inline-block;
    text-align: center;
    width: fit-content;
    height: 24px;
}

.board_category_0{
    color: #999999;
    background: #EDEDED;
}

.board_category_1{
    color: #FF9900;
    background: #FFF0D4 ;
}

.board_category_2{
    color: #8256FF;
    background: #EDE7FF;
}

.board_category_3{
    color: #29B67B;
    background: #E4F9F0 ;
}

.board_category_4{
    color: #00BCE5;
    background: #E4FAFF;
}

.board_category_5{
    color: #EA48E3;
    background: #FFE3FE;
}

.board_category_6{
    color: #2F80EB;
    background: #E6ECFF ;
}

.board_category_7{
    color: #FF7511;
    background: #FFF3DB ;
}

.board_category_8{
    color: #999;
    background: #EDEDED ;
}

.board_line_category_3{
    color: #24B283;
    border: 1px solid #A1E5CF;
}
.board_line_category_7{
    color: #FF7511;
    border: 1px solid #FFCA99;
}

.board_new_category{
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: -0.015em;
}

.board_new_category_0{
    color: #767676;
}

.board_new_category_1{
    color: #8256FF;
}

.board_new_category_2{
    color: #29CC96;
}

/*질문게시판*/
.board_new_category_3{
    color: #4294FF;
}

.board_new_category_4{
    color: #00B6DE;
}

/*차트분석*/
.board_new_category_5{
    color: #00B6DE;
}

/*손익인증*/
.board_new_category_6{
    color: #EA48E3;
}

.search_category{
    display: inline-block;
    border: 1px solid #EDEDED;
    color: #767676;
    padding: 6px 12px;
    border-radius: 4px;
    width: 76px;
    height: 40px;
    margin-right: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline:none;
    background: url(/assets/images/tokenpost_new/forum/arrow.svg) 90% 50% no-repeat;
    background-size: 13px;
    font-size: 14px;
}

.search_category option{
    border: 1px solid #DBDBDB;
    color: #767676;
}

.search_category option:hover{
    background-color:#F7F7FA ;
}

.show_item_970{
    display: none;
}

.show_item_1280{
    display: revert;
}

.common_table .show_item_970{
    display: none;
}

.common_table .show_item_1280{
    display: revert;
}
@media all and (max-width: 1399px) {
    .show_item_970{
        display: revert;
    }

    .show_item_1280{
        display: none;
    }

    .common_table .show_item_970{
        display: revert;
    }

    .common_table .show_item_1280{
        display: none;
    }
}

/* 파란색 table */
.common_table_v1{
    border-radius: 10px;
    border: 2px solid #4294FF ;
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.common_table_v1 th{
    background: #4294FF;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.35px;
    padding: 10px;
    vertical-align: middle;
}

.common_table_v1 td{
    color: #767676;
    letter-spacing: -0.35px;
    padding: 20px 10px;
    border-bottom: 1px solid #EDEDED;
    border-right: 1px solid #EDEDED;
    vertical-align: middle;
}

.common_table_v1 td:last-child{
    border-right: 0;
}

/* 라운드 있는 테이블 */
.common_table_border_wrap{
    border-radius: 10px;
    border: 1px solid #EDEDED;
    border-bottom: none;
}

.common_table_border_wrap .common_table_gray tr:first-child th:first-child{
    border-radius: 10px 0 0 0;
}

.common_table_border_wrap .common_table_gray tr:first-child th:last-child{
    border-radius: 0 10px 0 0;
}

.common_table_border_wrap .common_table_gray tr:first-child td:last-child{
    border-radius: 0 10px 0 0;
}

.common_table_border_wrap .common_table_gray tr:last-child th:first-child{
    border-radius: 0 0 0 10px;
}

.common_table_border_wrap .common_table_gray tr:last-child td:last-child{
    border-radius: 0 0 10px 0;
}

/* 제목만 회색배경 테이블 */
.common_table_gray{
    width: 100%;
    text-align: center;
}

.common_table_gray th{
    color: #767676;
    font-weight: 500;
    letter-spacing: -0.35px;
    padding: 8px 10px;
    border-bottom: 1px solid #EDEDED;
    border-right:1px solid #EDEDED;
    background: #FAFAFB;
    vertical-align: middle;
}
.common_table_gray th:last-child{
    border-right:0;
}


.common_table_gray td{
    color: #767676;
    letter-spacing: -0.35px;
    padding: 8px 10px;
    border-bottom: 1px solid #EDEDED;
    border-right:1px solid #EDEDED;
    vertical-align: middle;
}

.common_table_gray td:last-child{
    border-right:0;
}

/* top, bottom 에만 선있고 제목은 회색배경 */
.common_table_gray_v2{
    width: 100%;
    text-align: center;
}

.common_table_gray_v2 th{
    text-align: left;
    font-size: 12px;
    color: #767676;
    font-weight: 500;
    letter-spacing: -0.35px;
    padding: 8px 10px;
    border-top: 1px solid #EDEDED;
    border-bottom: 1px solid #EDEDED;
    background: #FAFAFB;
    vertical-align: middle;
}

.common_table_gray_v2 td{
    text-align: left;
    letter-spacing: -0.35px;
    padding: 8px 10px;
    vertical-align: middle;
    word-break: break-word;
}

.table {
    overflow: hidden;
}

/* 아무 선이 없는 테이블 */
.common_table_v2{
    width: 100%;
    text-align: left;
}

.common_table_v2 th{
    color: #767676;
    font-weight: 500;
    letter-spacing: -0.35px;
    padding: 6px;
}

.common_table_v2 td{
    color: #111;
    vertical-align: middle;
    word-break: break-word;
    padding: 6px;
    letter-spacing: -0.35px;
}

/*숫자 화살표 없애기*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*체크박스*/
.new_checkbox{
    position: relative;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    display: flex;
    align-items: center;
}
.new_checkbox input[type="checkbox"] {
    display: none;
}

.new_checkbox input[type="checkbox"] + label span {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    background: url('/assets/images/tokenpost_new/common_new/checkbox_off.svg') center center no-repeat;
    flex-shrink: 0;
}

.new_checkbox input[type="checkbox"]:checked + label span {
    background: url('/assets/images/tokenpost_new/common_new/checkbox_on.svg') center center no-repeat;
    border: 0;
    width: 16px;
    height: 16px;
    background-size: cover;
}

.new_checkbox label,
.new_checkbox input[type="checkbox"]{
    cursor: pointer;
}

.new_checkbox label{
    color: #767676;
    border: 0;
    font-size: 14px;
    letter-spacing: -0.35px;
    display: flex;
    align-items: center;
    line-height: normal;
}

.new_checkbox input[type="checkbox"]:disabled + label{
    cursor: default;
}

.new_checkbox input[type="checkbox"]:disabled + label span{
    cursor: default;
    background: url('/assets/images/tokenpost_new/common_new/checkbox_disable.svg') center center no-repeat;
}

.new_checkbox p{
    display: inline;
    color: #111;
}

/* radio */
.common_radio_wrap{
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.common_radio_item {
    position: relative;
    display: flex;
    min-height: 21px;
}

.common_radio_item input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.common_radio_item input[type="radio"] + label {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding-left: 22px;
    color: var(--color-body-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: inherit;
    z-index: 2;
}

.common_radio_item.no_text input[type="radio"] + label{
    padding-left: 16px;
}

.common_radio_item input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url('/assets/images/tokenpost_new/common_new/radio_off.svg') center no-repeat;
    background-size: cover;
    z-index: 2;
}

.common_radio_item input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    background: url('/assets/images/tokenpost_new/common_new/radio_on.svg') center no-repeat;
    background-size: cover;
    z-index: 2;
}


/* toggle switch*/
.input_toggle_switch {
    display: none;
}

.btn_toggle_switch {
    position: relative;
    display: block;
    width: 28px;
    height: 16px;
    background: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background: #CCCCCC;
}

.btn_toggle_switch::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.input_toggle_switch:checked + .btn_toggle_switch {
    background-color: #4294FF;
}

.input_toggle_switch:checked + .btn_toggle_switch::before {
    transform: translateX(12px);
}

/*안내사항 회색배경 */
.gray_guidance,
.guide_wrap{
    background: #FAFAFB !important;
    padding: 28px;
    border-radius: 10px;
}

.guide_wrap.guide_small{
    padding: 16px;
}


.gray_guidance li,
.guide_wrap li{
    position: relative;
    margin-bottom: 4px;
    color: #767676;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.325px;
    padding-left: 10px;
}

.gray_guidance li::after,
.guide_wrap li::after{
    position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    background: #767676;
    border-radius: 25px;
    left: 0;
    top: 8px;
}

.gray_guidance p,
.guide_wrap p{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.325px;
    margin-bottom: 8px;
    color: #767676;
}

/*기본 모달창 기본 디자인*/
.modal_wrap{
    display: none;
    position: fixed;
    /*width: 90%;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 24px;
    overflow: hidden;
}

.modal_title {
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
}

.modal_close {
    position: absolute;
    width: 24px;
    cursor: pointer;
    right: 24px;
    top: 20px;
    z-index: 9;
    text-align: center;
}

.modal_close img{
    display: inline-block;
    width: 18px;
    vertical-align: middle;
}

.modal_dim{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 998;
}
.modal_btn_twin{
    display: flex;
    justify-content: center;
}

.modal_btn_twin .new_btn_wid_100P:first-child,
.modal_btn_twin .new_btn_wid_140:first-child{
    margin-right: 12px;
}

/* 모달창 사이즈 별 */
.modal_size_S{
    width: 340px;
}

.modal_size_m{
    width: 100%;
    max-width: 600px;
}

/*컨탠츠 스크롤 있을때 모달 -> 수정 필요*/
.modal_wrap.modal_content_scroll{
    padding: 0;
}

.modal_wrap.modal_content_scroll .modal_title_wrap{
    padding: 18px 24px;
    border-bottom: 1px solid #EDEDED;
}

.modal_wrap.modal_content_scroll .modal_content_scroll{
    padding: 4px;
}

.modal_wrap.modal_content_scroll .modal_content{
    padding: 20px;
}

.modal_wrap.modal_content_scroll .modal_bottom{
    padding: 20px 24px;
    text-align: center;
}


/* 컨탠츠 스크롤 있을때 모달 */
.modal_wrap.modal_scroll_wrap{
    padding: 0;
}

.modal_wrap.modal_scroll_wrap .modal_title_wrap{
    padding: 20px;
    border-bottom: 1px solid #EDEDED;
}

.modal_wrap.modal_scroll_wrap .modal_content_scroll{
    padding: 4px;
    /*height: 100%;*/
}

.modal_wrap.modal_scroll_wrap .modal_content{
    padding: 20px;
    overflow-y: auto;

}

.modal_wrap.modal_scroll_wrap .modal_bottom{
    padding: 20px 24px;
    text-align: center;
}

/* modal common */
.common_modal_wrapper{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(23,23,23,0.8);
    z-index: 99999;
    display: none;
}

.common_modal_wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 14px;
}

.common_modal_wrap .modal_close_wrap{
    text-align: right;
    line-height: normal;
}

.common_modal_wrap .btn_modal_close{
    cursor: pointer;
}

.common_modal_wrap .modal_body{
    overflow-y: auto;
    height: auto;
    max-height: calc(100vh - 230px);
    padding: 10px;
}

.modal_body .modal_content_title{
    margin-bottom: 4px;
}

.modal_body .modal_content_text{
    color: #767676;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.375px;
}

.common_modal_wrap .modal_body::-webkit-scrollbar {
    width: 14px;  /* 스크롤바의 너비 */
}

.common_modal_wrap .modal_body::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #EDEDED; /* 스크롤바의 색상 */
    background-clip: padding-box;
    border-radius: 10px;
    border: 5px solid transparent;
}

.common_modal_wrap .modal_body::-webkit-scrollbar-track {
    background: #fff;  /*스크롤바 뒷 배경 색상*/
}

.common_modal_wrap .modal_body .exclamation_image{
    margin: 0 auto 12px auto;
}

.common_modal_wrap .modal_footer{
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.common_modal_wrap.modal_small{
    width: 340px;
}

.common_modal_wrap.modal_medium{
    width: 600px;
}

.common_modal_wrap.modal_large{
    width: 900px;
}

/* common popup */
.common_popup_wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    /*top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);*/
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    /*filter: opacity(1);*/
    z-index: 99998;
}

.common_popup_wrap .popup_header {
    padding: 18px 24px;
    border-bottom: 1px solid #EDEDED;
}

.common_popup_wrap .popup_title_text{
    color: #111;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: normal;
}

.common_popup_wrap .popup_body{
    padding: 24px 24px 0px 24px;
    margin-bottom: 24px;
    overflow-y: auto;
    height: auto;
    max-height: calc(100vh - 230px);
}

.common_popup_wrap .popup_body::-webkit-scrollbar {
    width: 14px;  /* 스크롤바의 너비 */
}

.common_popup_wrap .popup_body::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #EDEDED; /* 스크롤바의 색상 */
    background-clip: padding-box;
    border-radius: 10px;
    border: 5px solid transparent;
}

.common_popup_wrap .popup_body::-webkit-scrollbar-track {
    background: #fff;  /*스크롤바 뒷 배경 색상*/
}

.common_popup_wrap .popup_contents_wrap{
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.common_popup_wrap .popup_contents_title{
    margin-bottom: 12px;
}

.common_popup_wrap .popup_contents_title .title_text{
    float: none;
    line-height: normal;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.375px;
}

.common_popup_wrap .popup_contents_sub_title{
    margin-bottom: 4px;
}

.common_popup_wrap .popup_footer{
    display: flex;
    padding: 0 24px 24px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.common_popup_wrap .btn_popup_close{
    cursor: pointer;
}

/* popup header tab있는 경우 */
.common_popup_wrap .popup_tab_header{
    padding: 18px 24px 0 24px;
}

.common_popup_wrap .popup_tab_header .title_wrap{
    margin-bottom: 8px;
}

/* popup size */
.common_popup_wrap.popup_small{
    width: 360px;
}

.common_popup_wrap.popup_medium{
    width: 600px;
}

.common_popup_wrap.popup_large{
    width: 900px;
}

.common_popup_wrap .common_modal_wrapper{
    border-radius: 9px;
}

    /* 아래의 모든 코드는 영역::코드로 사용 */
.common_scroll::-webkit-scrollbar {
    width: 14px;  /* 스크롤바의 너비 */
}
.common_scroll::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #EDEDED; /* 스크롤바의 색상 */
    background-clip: padding-box;
    border-radius: 10px;
    border: 5px solid transparent;
}
.common_scroll::-webkit-scrollbar-track {
    background: #fff;  /*스크롤바 뒷 배경 색상*/
}

.common_scroll2::-webkit-scrollbar {
    width: 14px;  /* 스크롤바의 너비 */
}

.common_scroll2::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #EDEDED; /* 스크롤바의 색상 */
    background-clip: padding-box;
    border-radius: 10px;
    border: 5px solid transparent;
}

.common_scroll2::-webkit-scrollbar-track {
    background: #fff;  /*스크롤바 뒷 배경 색상*/
}

/*-----------*/

/* 공통 form*/
/*자동완성 할때 배경색 변하는거 방지*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: none !important;
    -webkit-text-fill-color: #111 !important;
}

.common_input_txt input[type="text"] {
    height: 40px;
    width: 100%;
    border: 1px solid #EDEDED;
    border-radius: 4px;
    color: #111;
    font-size: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
}

.common_input_txt input[type="text"]::placeholder{
    color: #999;
}

.common_input{
    width:100%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    background: #FFF;
    box-sizing: border-box;
    padding: 8px 12px;
}

.common_input:focus{
    border: 1px solid #4294FF;
}

.common_input_wrap{
    position: relative;
    width: 100%;
}

.common_input:disabled{
    background: #F7F7F7;
    color: #999;
}

.common_input:disabled::placeholder{
    color: #999;
}

.error_txt{
    color: #F65252;
    font-size: 12px;
    letter-spacing: -0.3px;
    margin-top: 4px;
}

.error_txt .underline_txt{
    color: #111;
}

.error_input{
    border: 1px solid #F65252;
    border-radius: 4px;
}

.error_txt_item,
.input_bottom_text{
    /*min-height: 18px;*/
    font-size: 12px;
    margin-top: 4px;
}

.error_txt_item .default_text,
.input_bottom_text .default_text{
    color: #999;
}

.error_txt_item .active_text,
.input_bottom_text .active_text{
    color: #4294FF;
}

.error_txt_item .error_text,
.input_bottom_text .error_text{
    color: #F65252;
}

.input_action_btn {
    position: absolute;
    right: 12px;
    top: 9px;
    display: flex;
    align-items: center;
}

/*검색 버튼이 있는 input-text*/
.common_input_txt._search_btn{
    position: relative;
    display: inline-block;;
}

.common_input_txt._search_btn .search_input_btn{
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
    z-index: 1;
}

.common_input_txt._search_btn .search_input_btn button{
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
    box-sizing: content-box;
    border: 0;
    background: none;
    cursor: pointer;
}

.common_input_date {
    position: relative;
    background: url('/assets/images/tokenpost_new/common_new/calendar.svg') no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    color: #999;
    letter-spacing: -0.35px;
}

input.common_input_date[type="date"]::-webkit-clear-button,
input.common_input_date[type="date"]::-webkit-inner-spin-button {
    display: none;
}
input.common_input_date[type='date']::-webkit-calendar-picker-indicator {
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
}
input.common_input_date[type='date']::before {
    content: attr(data-placeholder);
    width: 100%;
    cursor: pointer;
}

input.common_input_date[type='date']:valid::before {
   display: none;
}


.common_input_time{
    position: relative;
    background: url('/assets/images/tokenpost_new/common_new/time.svg') no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    color: #999;
    letter-spacing: -0.35px;
}

input.common_input_time[type="time"]::-webkit-inner-spin-button {
    display: none;
    appearance: none;
}

input.common_input_time[type="time"]::-webkit-calendar-picker-indicator{
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: transparent;
}

.area_custom_select {
    position: relative;
    display: inline-block;
    width:100%;
    height: 40px;
}

.custom_select_text{
    color: #767676;
    cursor: pointer;
    line-height: normal;
}

.custom_select_text .from_disabled {
    position: absolute;
    left: 0;
    top: 0;
    cursor: not-allowed;
    width: 100%;
    height: 40px;
    padding: 8px 12px ;
    border-radius: 4px;
    background: #fafafa url(/assets/images/tokenpost_new/forum/arrow.svg) 95% 52% no-repeat;
}

.custom_select {
    position: relative;
    display: inline-flex;
    align-items: center;
    border: 1px solid #EDEDED;
    color: #767676;
    padding: 8px 30px 8px 12px;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*background: url(/assets/images/tokenpost_new/forum/arrow.svg) 95% 52% no-repeat;*/
    background-size: 13px;
    outline: none ;
    cursor: pointer;
}

.custom_select.disabled {
    cursor: default;
}

.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.select_origin {
    display: none;
}

.custom_select_arrow {
    /*transition: transform 0.2s;*/
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
}

.custom_select_arrow.rotate{
    transform: rotate(180deg) translate(0, 50%);
}

.custom_select_list  {
    position: absolute;
    font-size: 18px;
    width: 100%;
    height: auto;
    overflow-y: auto;
    max-height: 200px;
    z-index: 15;
    background-color: #ffffff;
    text-align: left;
    margin-top: 5px;
    box-sizing: border-box;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.20);
    border-radius: 4px;
}

.custom_select_list.fixed{
    position: fixed;
}

.custom_select_option {
    min-height: 44px;
    padding: 12px 16px;
    cursor: pointer;
    box-sizing: border-box;
    color: #767676;
    font-size: 14px;
}

.custom_select_option:hover {
    background-color: #F7F7FA;
    box-sizing: border-box;
}

.selected_option{
    width: inherit;
    color: #111;
}

.area_custom_select.disabled{
    background: #F7F7F7;
}

.area_custom_select.disabled .selected_option{
    color: #999;
}

.area_custom_select.disabled .custom_select{
    cursor: default;
}

.custom_select_search_wrap{
    width: 100%;
}

.custom_select_search_input{
    width: 100%;
    border: 0;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.35px;
}

.area_custom_select.searchable .custom_select_list_box{
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.20);
}

.area_custom_select.searchable .custom_select_list_box .custom_select_list{
    position: relative;
    margin-top: 0;
    box-sizing: border-box;
    box-shadow: none;
}

.area_custom_select.searchable .custom_select_list_box .custom_select_search_input{
    padding: 12px 16px;
}

.area_custom_select.searchable .custom_select_search_wrap{
    display: inherit;
}

.area_custom_select .custom_select_search_wrap{
    display: none;
}

/*-----------------------------*/

/*버튼 두개씩 있을떄*/
.twin_btn_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.twin_btn_wrap .new_btn_wid_100P:first-child{
    margin-right: 12px;
}

.common_textarea_wrap{
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    overflow: hidden;
}

.common_textarea{
    background: #FFF;
    resize: none;
    width: 100%;
    outline: none ;
    border: 0;
}

/*복사 아이콘, 택스트 */
.copy_item{
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-left: 8px;
    vertical-align: middle;
    cursor: pointer;
}

.copy_item button{
    color: #999;
    font-size: 13px;
    background: none;
    padding: 0;
    cursor: pointer;
}

.copy_item img{
    margin-right: 4px;
}

.copy_gray_wrap{
    display: flex;
    padding: 6px 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 4px;
    background: #F7F7FA;
    word-break: break-all;
}

/*컨탠츠용 div*/
.content_wrap{
    padding: 28px;
}

.content_wrap2{
    padding: 20px;
}

.content_wrap3{
    padding: 16px;
}

.content_title_wrap{
    padding: 28px 28px 24px 28px;
    border-bottom: 1px solid #EBEBF0;
}
.content_bottom_btn{
    text-align: center;
    margin-top: 24px;
}


/* 탭 */
.common_tab_list{
    padding: 0px;
    list-style: none;
    background: #FFFFFF;
    border-bottom: 1px solid #EDEDED;
    margin: 12px 0 24px 0;
}

.common_tab_list.marginT0{
    margin-top: 0;
}

.common_tab_list.small_tab{
    display: flex;
    gap: 12px;
    border-bottom: 0;
    margin: 0;
}

.common_tab_list .common_tab_item {
    display: inline-block;
    cursor: pointer;
}

.common_tab_list .tab_link{
    display: block;
    color: #767676;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 8px;
    text-align: center ;
    letter-spacing: -0.4px;
    width: max-content;
}

.common_tab_list.marginT0 .tab_link{
    padding-top: 0;
}

.common_tab_list.small_tab .tab_link{
    padding: 6px 4px;
}

.common_tab_list .common_tab_item.current .tab_link{
    color: #4294FF;
    font-weight: 700;
    border-bottom: 2px solid #4294FF;
}

.common_tab_content_wrap .tab_content {
    display: none;
}

.common_tab_content_wrap .tab_content.current {
    display: inherit;
}

/* 탭 타이틀 부분 하단 선이 있을때 추가 */
.common_tab_title_wrap{
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 20px;
}

.common_tab_title_wrap .common_tab_list{
    margin: 0;
    border-bottom: 0;
}

/* 회색 배경 탭 */
.common_tab_list2{
    display: flex;
    background: #F1F1F5;
    border-radius: 10px;
    padding: 5px 4px;
    text-align: center;
}

.common_tab_list2 .common_tab_item{
    width: 100%;
    display: inline-block;
    color: #999;
    padding: 8px 0;
    font-weight: 500;
}

.common_tab_list2 .common_tab_item.current{
    background: #fff;
    color: #111;
    border-radius: 7px;
}

/*좋아요 싫어요 버튼 */
.common_vote_list{
    display: flex;
    align-items: center;
    gap: 8px;
}

.common_vote_list .vote_item{
    min-width: 60px;
    height: 32px;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    background: #FFF;
    padding: 5px 14px 6px 35px;
}

.common_vote_list .vote_item.comment_vote_up,
.common_vote_list .vote_item.comment_vote_down {
    cursor: pointer;
}

.common_vote_list .vote_item span{
    color: #999;
    font-size: 13px;
}

.common_vote_list .up_vote{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_up.svg) 16px 8px no-repeat;
}

.common_vote_list .down_vote{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_down.svg) 16px 10px no-repeat;
}

.common_vote_list .up_vote.check{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_up_on.svg) 16px 8px no-repeat;
}

.common_vote_list .down_vote.check{
    background: #fff url(/assets/images/tokenpost_new/common_new/vote_down_on.svg) 16px 10px no-repeat;
}

.common_vote_list .up_vote.check span{
    color: #4294FF;
}

.common_vote_list .down_vote.check span{
    color: #F65252;
}


.common_edit_delete_item {
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common_edit_delete_list{
    display: none;
    position: absolute;
    width: 70px;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
    right: 7px;
    top: 25px;
    text-align: center;
    background: #fff;
}

.common_edit_delete_list span{
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    padding: 7px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.common_edit_delete_list span:hover{
    background: #F7F7FA;
}



/* up down */
.common_percent_wrap .num_up{
    color: #F65252;
}

.common_percent_wrap .num_down{
    color: #2F80EB;
}

.common_percent_wrap .num_equal{
    color: #767676;
}

.common_percent_wrap .coin_num{
    /*font-size: 16px;*/
    font-weight: 700;
    letter-spacing: -0.4px;
}

.common_percent_up_down{
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 5px;
    gap: 4px;
}

.common_percent_up_down p{
    letter-spacing: -0.35px;
}

.common_percent_up_down.item_down{
    background: #F0F6FF;
}

.common_percent_up_down.item_up{
    background:#FFF2F2;
}

.common_percent_up_down.item_equal{
    background:#F1F1F1;
}

/* 상위 class에 따라서 업다운 배경색 변경 */
.common_percent_wrap .state_up .common_percent_up_down{
     background:#FFF2F2;
 }

.common_percent_wrap .state_down .common_percent_up_down{
    background: #F0F6FF;
}

.common_percent_wrap .state_equal .common_percent_up_down{
    background: #F1F1F1;
}

.common_percent_wrap .state_up .state_text{
    color: #F65252;
}

.common_percent_wrap .state_down .state_text{
    color: #2F80EB;
}

.common_percent_wrap .state_equal .state_text{
    color: #767676;
}


/* coin overlap list */
.common_overlap_coin_list{
    display: flex;
    align-items: center;
}

.common_overlap_coin_list .coin_image_wrap{
    width: 24px;
    height: 24px;
    border-radius: 24px;
    border: 1px solid #F7F7F7;
    overflow: hidden;
    margin-right: -7px;
    background: #fff;
}

.common_overlap_coin_list .coin_image_wrap:last-child{
    margin-right: 0;
}

.common_overlap_coin_list .coin_image_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common_overlap_coin_list .coin_image_wrap .more_num{
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #EBEBF0;
    color: #767676;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.325px;
}

/* 말풍선 */
.bubble_wrap{
    position: relative;
}

.bubble_item{
    position: absolute;
    bottom:-45px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: max-content;
    height: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #4294FF;
    border-radius: 4px;
    padding: 4px 10px;
    z-index:10;
    transition: transform 0.3s ease;
}
.bubble_item .arrow{
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translate(-50%, 0%);
}
.bubble_item p{
    color: #fff;
    letter-spacing: -0.3px;
    font-size: 12px;
    line-height: 1.5;
}

.bubble_item.top_bubble{
    bottom: 150%;
}

.bubble_item.top_bubble .arrow{
    transform:  translate(-50%, 0) rotate(180deg);
    top: 96%;
}

.bubble_wrap:hover .bubble_item.top_bubble{
    transform: translate(-50%, -5px); /* 위로 10px 이동 */
}

.btn_bubble_close{
    cursor: pointer;
}

/* btn_refresh */
.btn_refresh{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.btn_refresh span{
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: under;
}

.btn_refresh .refresh_icon{
    display: inline-block;
    transition: transform 0.3s ease; /* 클릭 시 부드러운 효과 */
}

.btn_refresh .refresh_spin {
    animation: refresh_spin 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 3;
}

/* 회전 애니메이션 정의 */
@keyframes refresh_spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*capture*/
.capture_wrap{
    line-height: normal;
}

/* Menu */
.common_menu_1 {
    position: relative;
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common_menu_1 > img{
    padding: 0 5px;
}

.common_menu_1 > .menu_list{
    display: none;
    position: absolute;
    width: 70px;
    border: 1px solid #DBDBDB;
    border-radius: 4px;
    right: 7px;
    top: 25px;
    text-align: center;
    background: #fff;
}

.common_menu_1 > .menu_list > .menu_list_item{
    font-weight: 400;
    font-size: 14px;
    color: #767676;
    padding: 7px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.common_menu_1 > .menu_list > .menu_list_item:hover{
    background: #F7F7FA;
}

.common_kabob_menu_wrap{
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.common_kabob_menu_wrap>img{
    vertical-align: middle;
}

.kabob_menu_inner{
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    z-index: 5;
}

.kabob_menu_inner .kabob_menu_list{
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 4px;
    border: 1px solid #EDEDED;
    background: #FFF;
}

.kabob_menu_inner .kabob_menu_item{
    display: block;
    width: 100%;
    padding: 6px 20px;
    text-align: left;
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.35px;
}

.kabob_menu_inner .kabob_menu_item:hover{
    background: #F7F7FA;
}

/* 왼쪽 공통 메뉴 */
.common_left_menu_list{
    width: 300px;
    padding: 16px;
}

.common_left_menu_title{
    padding: 12px;
    color: #767676;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5; /* 21px */
    letter-spacing: -0.35px;
}

.common_left_menu_item{
    border-bottom: 1px solid #F1F1F5;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.common_left_menu_item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.common_left_menu_text{
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 8px;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.common_left_menu_text .common_menu_label{
    display: flex;
    padding: 1px 6px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #4294FF;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    line-height: 1.5;
}

.common_left_menu_text.active{
    font-weight: 700;
    color: #4294FF;
    border-radius: 8px;
    background: #EFF5FF;
}


/* profile */
.common_profile_wrap{
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.common_profile_image_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: normal;
    overflow: hidden;
    flex: 0 0 auto;
}

.common_profile_image_wrap.profile_image_44px{
    width: 44px;
    height: 44px;
}

.common_profile_image_wrap.profile_image_40px{
    width: 40px;
    height: 40px;
}

.common_profile_image_wrap.profile_image_32px{
    width: 32px;
    height: 32px;
}

.common_profile_image_wrap.profile_image_24px{
    width: 24px;
    height: 24px;
}

.common_profile_image_wrap.profile_image_20px{
    width: 20px;
    height: 20px;
}

.common_profile_image_wrap.profile_image_16px{
    width: 16px;
    height: 16px;
}

.common_profile_image_wrap .profile_image{
    object-fit: cover;
    /*width: 100%;*/
    height: 100%;
}


.swiper-pagination-bullet {
    background: #EBEBF0;
    opacity: 1;
}

.swiper-pagination-bullet-active{
    background: #CCC;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

/* 스와이퍼 블릿 파란색 공통 */
.common_swiper_pagination_blue_wrap .swiper-pagination-bullet-active{
    background: #4294FF;
}

.common_swiper_pagination_blue_wrap{
    display: flex;
    gap: 12px;
}

/* 스와이퍼 한글 다음,이전 버튼 공통 */
.common_swiper_navigation{
    color: #767676;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: normal;
    width: auto;
}

.line_clamp_1 {
    height: 21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    align-self: stretch;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.line_clamp_2 {
    height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    align-self: stretch;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.line_clamp_3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    align-self: stretch;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.line_clamp_4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    align-self: stretch;
    overflow: hidden;
    -webkit-line-clamp: 4;
}


/* tooltip option */
.common_tooltip_wrap{
    position: relative;
    /*width: 100%;*/
    display: inline-block;
    line-height: 0;
    vertical-align: middle;
    cursor: pointer;
}

.common_tooltip_wrap .common_tooltip_text{
    word-break: break-word;
    line-height: 1.5;
}

.common_tooltip_wrap .common_tooltip_text[data-tooltip]::before {
    display: none;
    content: attr(data-tooltip);
    width: 100%;;
    max-width: max-content;
    position: absolute;
    left: 50%;
    top: 105%;
    transform: translate(-50%, 0);
    border-radius: 4px;
    background: #F1F1F5;
    color: #111;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 400;
    z-index: 5;
}

.common_tooltip_wrap .common_tooltip_text.active_tooltip{
    cursor: pointer;
}

.common_tooltip_wrap .common_tooltip_text.active_tooltip:hover[data-tooltip]::before{
    opacity: 1;
    display: block;
}

/* 툴팁 말풍선 */
.common_tooltip_wrap .common_tooltip_bubble{
    width: max-content;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    opacity: 0;
    border-radius: 4px;
    background: #EBEBF0;
    color: #111;
    font-size: 12px;
    letter-spacing: -0.3px;
    padding: 3px 8px;
    /*white-space: nowrap;*/
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
    line-height: 1.5;
    z-index: 100;
    word-break: break-word;
}

.common_tooltip_bubble::after {
    content: "";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color:  transparent transparent #EBEBF0 transparent;
    /*clip-path: polygon(0% 100%, 50% 0%, 100% 100%);*/
    border-radius: 4px;
}

@media (hover: hover) {
    .common_tooltip_wrap:hover .common_tooltip_bubble{
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }

    .common_tooltip_wrap:hover .common_tooltip_bubble.tooltip_bubble_right{
        opacity: 1;
        transform: translateX(10px) translateY(-50%);
    }
}

/* 오른쪽으로 나오는 툴팁 */
.common_tooltip_bubble.tooltip_bubble_right{
    top: 50%;
    left: 100%;
    transform: translateX(0) translateY(-50%);
}

.common_tooltip_bubble.tooltip_bubble_right::after {
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);
    border-color:  transparent #EBEBF0 transparent transparent;
}

.common_tooltip_wrap.hover .common_tooltip_bubble{
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
}

.common_tooltip_wrap.hover .common_tooltip_bubble.tooltip_bubble_right{
    opacity: 1;
    transform: translateX(10px) translateY(-50%);
}

/* common grid */
.common_grid_wrap{
    width: 100%;
}

.common_grid_title_list,
.common_grid_contents_list{
    display: grid;
    align-items: center;
    /*gap: 16px;*/
    border-bottom: 1px solid #EDEDED;

}

.common_grid_title_list{
    background: #FAFAFB;
    border-top: 1px solid #EDEDED;
}

.common_grid_title_list .grid_title_item{
    padding: 10px 8px;
    color: #767676;
    font-size: 12px;
    font-weight: 600;
    line-height: 130%; /* 15.6px */
    word-break: break-all;
}

.common_grid_contents_list .grid_content_item{
    padding: 10px 8px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.35px;
    word-break: break-all;
    vertical-align: middle;
    flex-shrink: 0;
}

/* FAQ , Q&A */
.common_faq_wrap{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.common_faq_wrap .faq_question_wrapper{
    cursor: pointer;
}

.common_faq_item{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.common_faq_wrap .faq_question{
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: #111;
    cursor: pointer;
}

.common_faq_wrap .faq_answer_wrapper{
    display: none;
}

.common_faq_wrap .faq_answer{
    display: flex;
    padding: 12px 24px;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: 10px;
    background: #FAFAFB;
    letter-spacing: -0.35px;
    color: #111;
}

.common_faq_wrap .faq_answer img{
    max-width: 100%;
}

.common_faq_wrap .faq_label{
    color: #4294FF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.common_faq_wrap .faq_answer .faq_label{
    line-height: normal;
}

/* 작성폼 공통 영역 한 div 간격*/
.common_write_list .common_write_item{
    margin-bottom: 30px;
}

.common_write_list .common_write_item:last-child{
    margin-bottom: 0;
}

/* 라벨 공통 */
.common_labels_wrap{
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.common_labels{
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 2px;
    line-height: normal;
}

.common_labels_round{
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    line-height: normal;
}

.labels_0{
    border:1px solid #CCCCCC;
}
.labels_1{
    background: #9966FF;
}
.labels_2{
    background: #4294FF;
}
.labels_3{
    background: #FDAB96;
}
.labels_4{
    background: #77CEC6;
}
.labels_5{
    background: #93C6FF;
}
.labels_6{
    background: #FF9F40;
}
.labels_7{
    background: #C9B6FF;
}
.labels_8{
    background: #EC8490;
}
.labels_9{
    background: #FFCD56;
}
.labels_10{
    background: #D9D9D9;
}
.labels_11{
    background: #196DDA;
}
.labels_12{
    background: #F25A32;
}
.labels_13{
    background: #6937CE;
}
.labels_14{
    background: #719FD2;
}
.labels_15{
    background: #D27B24;
}
.labels_16{
    background: #47AAA1;
}
.labels_17{
    background: #C54252;
}
.labels_18{
    background: #D7AD48;
}
.labels_19{
    background: #84DAF2;
}
.labels_20{
    background: #959494;
}
.labels_21{
    background: #FF7C7C;
}
.labels_22{
    background: #AD5A8E;
}
.labels_23{
    background: #A5BF44;
}
.labels_24{
    background: #3D4A81;
}
.labels_25{
    background: #9399B8;
}
.labels_26{
    background: #24AFD6;
}
.labels_27{
    background: #B9DE99;
}
.labels_28{
    background: #FFBFD5;
}
.labels_29{
    background: #6BBF44;
}
.labels_30{
    background: #737171;
}
.labels_31{
    background: #51F4D9;
}
.labels_32{
    background: #FF0B0B;
}
.labels_33{
    background: #F449DE;
}







/* *************************** common class ************************ */

/* width */
.width_100P{
    width: 100%;
}

.width70{
    width: 70px;
}

.width200{
    width: 200px;
}

.width250 {
    width: 250px;
}

.width300 {
    width: 300px;
}

.width555{
    width:555px;
}

.width570{
    width:570px;
}

.width160{
    width: 160px;
}

.width150{
    width: 150px !important;
}

.width120{
    width: 120px;
}

/* flex class */
.display_flex_gap4{
    display: flex;
    gap: 4px;
}

.display_flex_gap6{
    display: flex;
    gap: 6px;
}

.display_flex_gap8{
    display: flex;
    gap: 8px;
}

.display_flex_gap12{
    display: flex;
    gap: 12px;
}

.display_flex_gap16{
    display: flex;
    gap: 16px;
}

.display_flex_gap24{
    display: flex;
    gap: 24px;
}

.display_align_center{
    align-items: center;
    /*line-height: normal;*/
}

.display_align_right{
    justify-content: flex-end;
}

.display_align_between{
    justify-content: space-between;
}

/* 새로정렬 */
.display_flex_colum{
    flex-direction: column;
}

/* 요소 크기가 컨텐츠 너비로 고정됨 */
.flex_auto{
    flex: 0 0 auto;
}

/* 요소 크기가 고정됨 */
.flex_shrink{
    flex-shrink: 0
}

/* align */
.left_align{
    text-align: left;
}

.right_align{
    text-align: right;
}

.center_align{
    text-align: center;
}

.common_center_btn_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* layout */
.layout_ver1{
    width: 970px;
}

.layout_ver2{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.layout_ver2 .layout_left{
    width: 300px;
    flex-shrink: 0;
}

.layout_ver2 .layout_right{
    width: 100%;
}

.layout_ver3{
    width: 1280px;
}

.sticky_menu_wrap{
    position: sticky;
    top: 100px;
    left: 0;
}

/* 간격, 여백 */
.break-all{
    word-break: break-all;
}

.margin_auto{
    margin: 0 auto;
}

.marginR0{
    margin-right:0 !important;
}

.marginL15{
    margin-left:15px;
}

.marginT0{
    margin-top:0 !important;
}

.marginT4{
    margin-top:4px;
}

.marginT5{
    margin-top:5px;
}

.marginT15 {
    margin-top: 15px;
}

.marginT30{
    margin-top: 30px;
}

.marginB4{
    margin-bottom:4px;
}

.marginB8{
    margin-bottom:8px;
}

.marginB10{
    margin-bottom:10px;
}

.marginB12{
    margin-bottom:12px;
}

.marginB15{
    margin-bottom:15px;
}

.marginB16{
    margin-bottom:16px;
}

.marginB20{
    margin-bottom:20px;
}

.marginB24{
    margin-bottom: 24px;
}

.marginB30{
    margin-bottom: 30px;
}

.marginB40{
    margin-bottom: 40px;
}

.marginB50{
    margin-bottom: 50px;
}


.margin0{
    margin: 0;
}

.margin_top_0{
    margin-top: 0 !important;
}

.margin_B_4px{
    margin-bottom: 4px;
}

.paddingT0{
    padding: 0;
}

.paddingT15{
    padding-top: 15px;
}

.paddingB15{
    padding-bottom:15px;
}

.paddingR15{
    padding-right:15px;
}

.cursor{
    cursor: pointer;
}


/*반응형*/
@media all and (max-width: 1399px) {
    .layout_ver3{
        width: 970px;
    }
}