/*=================================================
				RESET
=================================================*/
dl, ol, ul{
    margin: 0;
    padding:0;
}

li{
    list-style:none;
}

p{
    margin: 0;
}

.cursor-pointer { cursor: pointer; }

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

/*=================================================
				일반
=================================================*/
html, body {
    position: relative;

    font-family: "Pretendard", Sans-Serif, serif;
    font-size: 16px;
    font-weight: 400;
    color: #222222;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/*****##### lg #####*****/
@media (min-width: 992px) and (max-width: 1199.98px) {
    html:not(.iframe),
    body:not(.iframe) {
        font-size: 14px;
    }
}

/*****##### md #####*****/
@media (min-width: 768px) and (max-width: 991.98px) {
    html:not(.iframe),
    body:not(.iframe) {
        font-size: 13px;
    }
}

/*****##### sm #####*****/
@media (min-width: 576px) and (max-width: 767.98px) {
    html:not(.iframe),
    body:not(.iframe) {
        font-size: 12px;
    }
}

/*****##### xs #####*****/
@media (min-width: 100px) and (max-width: 575.98px) {
    html:not(.iframe),
    body:not(.iframe) {
        font-size: 12px;
    }
}

/*****#####===== 아이프레임 렌더링 =====#####*****/
.trans_iframe {
    visibility: hidden;

    transition: all 0.5s;
}

body.iframe .page-wrap,
body.iframe .section-wrap{
    margin: 0;
    padding: 0;
}

body.iframe .popup{
    display: none;
}

body.iframe .wow{
    visibility: visible !important;
}

.simple-iframe{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    border: none;
}

.wrapper{
    position: relative;
    overflow: hidden;
}

/*****#####===== hidden =====#####*****/
.hidden {
    visibility: hidden;
}

/*=================================================
                컨테이너
=================================================*/
/*****#####===== 미디어 쿼리 =====#####*****/
/*****##### md ~ #####*****/
@media (min-width: 768px) {
    .container[data-type="mobile"] {
        max-width: unset;
        padding: 0;
    }
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .container[data-type="pc"] {
        padding: 0;
    }
}

/*=================================================
				버튼
=================================================*/
/*****#####===== Reset =====#####*****/
a, .btn, button{
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    line-height: 1em;

    cursor: pointer;
}

a:hover, a:active, a:after, a:visited, a:focus,
.btn:hover, .btn:active, .btn:after, .btn:visited, .btn:focus,
button:hover, button:active, button:after, button:visited, button:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a.inner-text-link{
    text-decoration-line: underline;
}

.float-btn-wrap {
    position: fixed;
    left: 0;
    bottom: 0;

    width: 100%;
    margin: 0;
    padding: 1.083rem 1.333rem;

    background-color: #ffffff;
    z-index: 1000;
}

.form-btn-wrap {
    padding: 2.5rem;

    text-align: center;
}

/*****#####===== 기본 =====#####*****/
.btn:not(.btn-sm){
    padding: 0.75rem 0.8rem;
}

.btn.btn-default{
    background-color: #999999;

    color: #ffffff !important;
}

.btn.btn-border{
    border: 1px solid #343a40;

    color:#343a40;
}

.btn.btn-md{
    padding: 0.875rem 1.5rem;

    font-size: 0.875rem;
}

.btn.btn-sm{
    padding: 0.375rem 0.75rem;

    font-size: 0.875rem;
}

.btn.btn-sm:has(svg){
    padding: 0.375rem;
}

.btn.btn-sm > svg{
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 100px) and (max-width: 767.98px){
    .btn.btn-md {
        padding: 1rem;

        font-size: 1.167rem;
    }
}

.btn-dark,
.btn-danger{
    color:#ffffff !important;
}

.click_link{
    cursor: pointer;
}

.bd_srch_tag[data-type="hash"]{
    cursor: pointer;

    color: #3399ff !important;
}

/*****#####===== SNS 버튼 =====#####*****/
.btn-sns[data-type='naver']{
	width:100%; 
    background-color: #1ec800;

    color: #ffffff !important;
}

.btn-sns[data-type='fb']{
    background-color: #475595;

    color: #ffffff !important;
}

.btn-sns[data-type='kakao']{
	width:100%; 
    background-color: #fee500;

    color: #000000 !important;
}

.btn-sns[data-type='google']{
	width: calc(50% - 0.626rem);
	background:#f4f4f4; 
    border:1px solid #dfdfdf;
}

.btn-sns[data-type='apple']{
	width: calc(50% - 0.626rem);
	background:#191919;
    border:1px solid #dfdfdf;
	color:#fff;
}

/*****#####===== input spinner =====#####*****/
.input_spinner + .input-group{
	width: 8rem;
}

.input_spinner + .input-group .btn{
	padding: 0;

	border: 1px solid #DDDDDD;
	border-radius: 0;
}

.input_spinner + .input-group .input_spinner{
	padding: 0;
}


/*=================================================
				색상
=================================================*/
.point-color-primary {
    color: #3A65F3;
}

.point-color-primarylight {
    color: #E1E7F8;
}

.point-color-secondary {
    color: #555555;
}

.point-color-secondarylight {
    color: #999999;
}

.point-color-secondarydark {
    color: #222222;
}

.point-color-red {
    color: #ff4800;
}

/*=================================================
                버튼 point-btn
=================================================*/
[class*="btn-wrap"] {
    cursor: auto;
}

/*****#####===== point-btn =====#####*****/
.point-btn-primary {
    color: #a31c1c !important;

    background-color: transparent;
    border: 1px solid #3a65f3;
}

.point-btn-sub {
    color: #555555 !important;

    background-color: transparent;
    border: 1px solid #dddddd;
}

.point-btn-subprimary {
    color: #3a65f3 !important;

    background-color: transparent;
    border: 1px solid #3a65f3;
}

.point-btn-1 {
    color: #3a65f3 !important;

    background-color: #e1e7f8;
}

.point-btn-2 {
    color: #555555 !important;

    background-color: #dddddd;
}

[class*="point-btn"] {
    border-radius: 0.25rem;
}

.submit-btn{
    min-width: 8rem;
    padding: 1rem;
}

/*=================================================
				섹션 유틸리티
=================================================*/
/*****#####===== 인피니티 스크롤 =====#####*****/
.infinite_loader{
    height: 5rem;
}

/*****#####===== 심플 탭 =====#####*****/
.simple_tab_content{
    display: none;
}

.simple_tab_content.show{
    display: block;
}

/*****#####===== loading =====#####*****/
.loading-wrap{
    display: flex;
    justify-content:center;
    align-items:center;
    width: 100%;
    height: 100%;

    background-color: #ffffff;
}

.loading-wrap:before{
    content: url('/img/svg/admin_loading.svg');
}

/*=================================================
				구분선
=================================================*/
hr:is(.light, .dark, .thick) {
    margin: 0;
}

hr.light {
    border-color: #dddddd;
}

hr.dark {
    border-color: #999999;
}

hr.thick {
    height: 8px;

    background-color: #f4f4f4;

    border-top: none;
    border-bottom: 1px solid #dddddd;
}

/*=================================================
				비디오
=================================================*/
/*****#####===== 요소내 전체 화면 =====#####*****/
.video-wrap{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*****#####===== 사운드 on/off 버 =====#####*****/
.video-wrap .video_mute_btn{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.3rem;

    background-color: rgba(255,255,255,0.6);
    border-radius: 0.4rem;

    line-height: 1em;
}

.video-wrap .video_mute_btn i.fa{
    display: none;
    margin-right: 0.3rem;
}

.video-wrap .video_mute_btn[data-muted='true'] [data-status='off']{
    display: inline-block;
}

.video-wrap .video_mute_btn[data-muted='false'] [data-status='on']{
    display: inline-block;
}

/*****#####===== 페이지 전체 화면 =====#####*****/
.video-wrap.video-fullscreen{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

/*****#####===== 인라인 비디오 =====#####*****/
.video-wrap .inline-video{
    width: 100%;
    height: auto;
}

/*****#####===== 백그라운드 비디오 =====#####*****/
.video-wrap .video-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*****#####===== 미디어 쿼리 =====#####*****/
@media (min-aspect-ratio: 16/9) {
    .video-wrap .video-bg {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-wrap .video-bg {
        width: 300%;
        left: -100%;
    }
}

/*=================================================
				텍스트
=================================================*/
/*****#####===== 폰트 =====#####*****/
.page-h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.56em;
}

.page-h2 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.56em;
}

.page-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.63em;
}

.page-h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.63em;
}

.page-h5 {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.57em;
}

.page-h6 {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5em;
}

.page-display-1 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.57em;
}

.page-display-2 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5em;
}

.page-display-3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.63em;
}

.page-display-4 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.57em;
}

.page-display-5 {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.57em;
}

.page-display-6 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5em;
}

/*****#####===== 미디어 쿼리 =====#####*****/
@media (min-width: 100px) and (max-width: 767.98px){
    /***** 폰트 *****/
    .page-h1 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.5em;
    }

    .page-h2 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.56em;
    }

    .page-h3 {
        font-size: 1.333rem;
        font-weight: 700;
        line-height: 1.63em;
    }

    .page-h4 {
        font-size: 1.333rem;
        font-weight: 500;
        line-height: 1.63em;
    }

    .page-h5 {
        font-size: 1.167rem;
        font-weight: 400;
        line-height: 1.57em;
    }

    .page-h6 {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5em;
    }

    .page-display-1 {
        font-size: 1.167rem;
        font-weight: 500;
        line-height: 1.57em;
    }

    .page-display-2 {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5em;
    }

    .page-display-3 {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.56em;
    }

    .page-display-5 {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.56em;
    }
}

/*****##### 두께 #####*****/
.font-w100 {
    font-weight: 100;
}

.font-w200 {
    font-weight: 200;
}

.font-w300 {
    font-weight: 300;
}

.font-w400 {
    font-weight: 400;
}

.font-w500 {
    font-weight: 500;
}

.font-w600 {
    font-weight: 600;
}

.font-w700 {
    font-weight: 700;
}

.bold {
    font-weight: bold !important;
}

.roboto {
    font-family: 'roboto';
    letter-spacing: inherit;
}

.line-h1{
    line-height: 1;
}

/*****#####===== 워드 브레이크 =====#####*****/
.word-break {
    word-wrap: break-word;
    word-break: keep-all;
}

/*****#####===== 엘립시스 =====#####*****/
[class*="ellipsis"] {
    position: relative;
    display: -webkit-box;
    width: 100%;
    overflow: hidden;
    box-sizing: content-box;
    text-overflow: ellipsis;
    word-wrap:break-word;
    line-height: 1.5em !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ellipsis_1{height: 1.5em;-webkit-line-clamp: 1;}
.ellipsis_2{height: 3em;-webkit-line-clamp: 2;}
.ellipsis_3{height: 4.5em;-webkit-line-clamp: 3;}
.ellipsis_4{height: 6em;-webkit-line-clamp: 4;}
.ellipsis_5{height: 7.5em;-webkit-line-clamp: 5;}
.ellipsis_6{height: 9em;-webkit-line-clamp: 6;}

.ellipsis_max_5{max-height: 7.5em;-webkit-line-clamp: 5;}

/*****#####===== 임시 인풋 (재작업 필요 정체 알수 없음) =====#####*****/
#temp_input{
    position:absolute;
    top:-9999em;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/*****##### sm / xs  #####*****/
@media (min-width: 100px) and (max-width: 767.98px){
    /***** 스와이프 *****/
    .swipe-wrap{
        overflow: auto hidden;
    }

    .swipe{
        width: max-content;
    }
}

/*=================================================
				화면
=================================================*/
/*****#####===== 템플릿 =====#####*****/
.template{
    display: none;
}

/*=================================================
				백그라운드
=================================================*/
.bg{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg.contain{
    background-size: contain;
}

.bg.top{
    background-position: top;
}

/*=================================================
				이미지
=================================================*/
/*****#####===== 에디터 이미지 =====#####*****/
.editor-wrap img{
    max-width: 100% !important;
    height: auto;
}

/*****#####===== 유저 이미지 =====#####*****/
.user-image{
    width: 35px;
    height: 35px;

    border-radius: 100%;

    text-align: center;
    color: #ffffff;
}

.user-image .user-image-id{
    line-height: 35px;
}

/*****#####===== SVG =====#####*****/
.svg-wrap{
    display: inline-block;
}

.svg-wrap svg{
    margin-top: -0.25rem;
}

.bd_wrap .svg-wrap{
    display: none;
}

/*****#####===== 전환 이미지 =====#####*****/
.flip-wrap .back{
    display: none;
}

.flip-wrap.show .back,
.flip-wrap.active .back{
    display: block;
}

.flip-wrap.show .front,
.flip-wrap.active .front{
    display: none;
}

/*=================================================
				레이어
=================================================*/
.layer{
    position: absolute;
    top:0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;

    background-color: rgba(255,255,255,0.8);

    text-align: center;

    transition: all 0.3s ease-in;
}

.layer.show,
.layer.active{
    display: block !important;
    opacity: 1;
}

#page_backdrop {
    display: none;
    z-index: 1060;

    background-color: rgba(0,0,0,0.8);
}

body[data-admin='admin'] .modal-backdrop{
    z-index: 290;
}

/*=================================================
				인증 코드
=================================================*/
/*****#####===== 인증 코드 =====#####*****/
.auth_confirm_wrap{
    display: none;
}

.auth_confirm_wrap.show{
    display: block;
}

/*=================================================
				브레드 크럼
=================================================*/
/*****#####===== 브래드크럼 =====#####*****/
.breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.breadcrumb-item{
    display: inline-block;
    position: relative;

    font-size: 0.875rem;
    color: #999999;
}

.breadcrumb-item:last-child{
    color: #555555;
}

.breadcrumb-item+.breadcrumb-item{
    margin-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -0.313rem;

    width: 0.313rem;
    height: 0.75rem;

    background: url('/img/app/solution/arrow_breadcrumb.svg') center center no-repeat;
    background-size: contain;

    transform: translateY(-50%);
}

.breadcrumb-wrap{
    margin-top: 0.5rem;
}

.breadcrumb-wrap .breadcrumb-item:not(:last-child) {
    color: #999999;
}

.breadcrumb-wrap .breadcrumb-item:last-child {
    color: #555555;
}

/*****##### active #####*****/
.breadcrumb-item.active {
    color: #555555;
}

/*****##### select #####*****/
.breadcrumb-item select {
    padding-right: 2rem;

    color: #999999;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-color: url('/img/app/solution//breadcrumb_select_arrow.svg') center right no-repeat;

    border: none;
}

.breadcrumb-item:last-child select {
    color: #555555;

    background-color: url('/img/app/solution//breadcrumb_select_arrow_black.svg') center right no-repeat;
}

/*=================================================
				페이지네이션
=================================================*/
/*****#####===== 공통 =====#####*****/
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 3.75rem 0;
}

.pagination-wrap .page-link {
    padding: 0.625rem;

    border: 1px solid #dddddd;
}

.pagination-wrap .page-link,
.pagination-wrap .page-link:hover,
.pagination-wrap .page-item.active .page-link {
    font-size: 0.875rem;
    color: #999999;

    background-color: transparent;
    border: none;
    border-radius: 0;
}

.pagination-wrap .page-link:hover {
    background-color: #ebebeb;
}

.pagination-wrap .page-item.active .page-link {
    color: #3a65f3;
}

/*=================================================
				별점
=================================================*/
.rating-star-wrap{
    direction: rtl;
}

/*****#####===== 이미지 =====#####*****/
.rating-star-wrap [class^='rating-star'].active:before,
.rating-star-wrap [class^='rating-star'].active~[class^='rating-star']:before{
    content: url('/img/app/solution/star_on.svg');
}

.rating-star-wrap .rating-star-o:before{
    content: url('/img/app/solution/star_off.svg');
}

.rating-star-wrap[data-size="small"] [class^='rating-star'].active:before,
.rating-star-wrap[data-size="small"] [class^='rating-star'].active~[class^='rating-star']:before{
    content: url('/img/app/solution/star_sm_on.svg');
}

.rating-star-wrap[data-size="small"] .rating-star-o:before{
    content: url('/img/app/solution/star_sm_off.svg');
}

/*=================================================
				태그
=================================================*/
.tag-wrap .item-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;

    font-size: 0.875rem;
    color: #999999;

    background-color: #f4f4f4;
    border-radius: 0.25rem;
}

.tag-wrap .item-tag.active {
    color: #3a65f3;

    background-color: #e1e7f8;
}

.tag-wrap .item-tag:not(:last-child) {
    margin-right: 0.5rem;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .tag-wrap .item-tag {
        padding: 0.5rem 0.667rem;

        font-size: 1.167rem;
    }
}


/*=================================================
				Alert
=================================================*/
/*****#####===== 공통 =====#####*****/
.fancy-alert{
    min-width: 300px;
    padding: 1.7rem 1.875rem;

    /* border-top: 0.375rem solid #14264B; */
    border-radius: 0.375rem;
}

.fancy-alert .alert-title{
    font-size: 1.125rem;
    font-weight: 500;
    color: #222222;
}

.fancy-alert .alert-text{
    padding: 0.6rem 0 1.8rem;

    font-size: 1rem;
    font-weight: 500;
    color: #999999;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/*****##### sm / xs  #####*****/
@media (min-width: 100px) and (max-width: 767.98px){
    .fancy-alert .alert-title{
        font-size: 1.5rem;
    }

    .fancy-alert .alert-text {
        padding: 1rem 0 2rem;

        font-size: 1.167rem;
    }
}

/*****##### 버튼 #####*****/
.fancy-alert .alert-btn-wrap {
    text-align: center;
}

.fancy-alert .alert-btn-wrap .btn{
    padding: 0.7rem;

    font-size: 14px;

    background-color: #ffffff;
}

.fancy-alert .alert-btn-wrap .btn-cancel{
    color: #999999;

    border: 1px solid #cccccc;
}

.fancy-alert .alert-btn-wrap .btn-ok{
    color: #ffffff;

    background-color: #416DEF;
    border: 1px solid #0074E4;
}

/*****#####===== confirm =====#####*****/
.fancy-alert-confirm{
    border-color:#416DEF;
}

/*****#####===== basic =====#####*****/
.fancy-alert-basic .alert-title,
.fancy-alert-basic .alert-text{
    text-align: center;
}

.fancy-alert-basic .alert-btn-wrap .btn {
    padding: 0.7rem 2.3rem;

    background-color: #14264B;
}

/*****#####===== cancel =====#####*****/
.fancy-alert-cancel{
    border-color:#E20000;
}

.fancy-alert-cancel .alert-btn-wrap .btn-ok {
    color: #ffffff;

    background-color: #E20000;
    border: 1px solid #E20000;
}

/*****#####===== 신고하기 =====#####*****/
.fancy-alert .alert-denounce-content-wrap {
    padding: 2rem 0;
    font-size: 1.167rem;
}

.fancy-alert .alert-denounce-content-wrap .item-list:not(:last-child) {
    margin-bottom: 1.333rem;
}

/*****#####===== Toast =====#####*****/
#toast-pannel{
    position: fixed;
    top: 50px;
    right: 10px;
    z-index: 1090;
}

.solution_toast{
    min-width: 20rem;

    transition: all 0.3s ease-in-out;
}

.solution_toast .toast-header{
    padding: 0.5rem 1rem;

    font-size: 1rem;
}

.solution_toast .toast-body{
    padding: 1rem;

    font-size: 1.1rem;
}

/*****#####===== 드래그 서랍 =====#####*****/
/*****##### 일반(전체) #####*****/
.drawer-alert{
    position: fixed;
    display: inline-block;
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    z-index: 1100;

    background-color: #ffffff;
    border-radius: 15px 15px 0 0;

    transition: all 0.3s ease-in-out;
    transform: translateY(100%);
}

.drawer-alert.show{
    height: auto;
    max-height: 90%;
    opacity: 1;

    transform: translateY(0%);
}

.drawer-alert[data-layout="blind"]{
    position: fixed;
    display: inline-block;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 1100;

    background-color: #ffffff;
    border-radius: 0 0 15px 15px;

    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
}

.drawer-alert[data-layout="blind"].show{
    height: auto;
    max-height: 90%;
    opacity: 1;

    transform: translateY(0%);
}

.drawer-alert[data-layout="blind"].show > div{
    display: block;
}

.drawer-alert[data-layout="blind"] > div{
    display: none;
}

.drawer-alert[data-layout="blind"].inu-drawer-draggable:before{
    top: initial;
    bottom: 10px;
}

.drawer-alert.inu-drawer-scroll{
    height: 100% !important;
}

.drawer-alert.inu-drawer-full{
    height: 100% !important;
    max-height: 100% !important;

    border-radius: 0 0 0 0;
}

.drawer-alert.touched{
    transition: initial;
}

.drawer-alert.inu-drawer-draggable:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 10px;

    width: 3rem;
    height: 0.3rem;

    background-color:#cccccc;
    border-radius: 1.25rem;

    transform: translateX(-50%);
}

/*****##### 내용 #####*****/
.drawer-alert .drawer-content{
    padding: 2rem 1rem;
}

.drawer-alert .content-wrap{
    height: 100%;
}

.drawer-alert.inu-drawer-scroll .content-wrap{
    overflow-y: auto;
}

#draggable_backdrop {
    position: fixed;
    display: none;
    z-index: 1090;

    background-color: rgba(0,0,0,0.3);
}

/*****##### pretty #####*****/
.fancy-alert .pretty input[type="radio"]~.state label:before,
.fancy-alert .pretty input[type="radio"]~.state label:after {
    top: calc((0% - (100% - 0.75em)) - 15%);

    width: calc(1em + 10px);
    height: calc(1em + 10px);

    border-radius: 100%;
}

.fancy-alert .pretty input[type="radio"]~.state label:before {
    border-color: #cccccc;
}

.fancy-alert .pretty input[type="radio"]~.state label:after {
    background-color: #ffffff;
}

.fancy-alert .pretty input[type="radio"]:checked~.state label:before {
    border-color: #3a65f3;
}

.fancy-alert .pretty input[type="radio"]:checked~.state label:after {
    background-color: #3a65f3 !important;
}

.fancy-alert .pretty input[type="radio"]~.state label {
    text-indent: 2.5em;
}


/*=================================================
				팝업
=================================================*/
.popup .slick-wrap{
    padding: 0;
}

/*****#####===== 상단 띠배너 =====#####*****/
.popup[data-type='top']{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;

    z-index: 2000;
    transition: all 0.3s ease-in-out;
}

.popup[data-type='top'] img{
    height: 100px;
}

.popup[data-type='top'] .close_popup_btn{
    position: absolute;
    top: 10px;
    right: 10px;

    font-size: 2rem;
    color: #ffffff;
    line-height: 1em;
}

.popup[data-type='top'].hide{
    height: 0;
}

/*****#####===== 일반 팝업 =====#####*****/
.popup[data-type='basic']{
    position: absolute;
    padding: 10px;
    cursor: move;

    background-color: #383838;
}

.popup[data-type='basic'] .slick-wrap{
    cursor: auto;
}

.popup[data-type='basic'] .popup-bottom{
    margin-top: 5px;

    text-align: right;
}

.popup[data-type='basic'] .popup-bottom .btn{
    background-color: #dddddd;
}

/*****#####===== 미디어 쿼리 =====#####*****/
/*****##### sm / xs  #####*****/
@media (min-width: 100px) and (max-width: 767.98px){
    .popup{
        display: none !important;
    }
}

.popover {
    font-family: 'Spoqa Han Sans Neo', 'sans-serif';

    border: none;
    border-radius: 0.333rem;

    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.popover-body {
    padding: 0;
}

.popover-body .pop-item {
    padding: 0.75rem 1.5rem;
}

.popover-body .pop-item:not(:last-child) {
    border-bottom: 1px solid #dddddd;
}

/*=================================================
				지도
=================================================*/
.map_wrap{
    height: 400px;
}

/*****#####===== 펄스 핀 =====#####*****/
@keyframes pulse-pin {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
.pulse-pin-wrap{
    position: relative;
    width: 40px;
    height: 40px;
}

.pulse-pin {
    position: relative;
    width: 20px;
    height: 20px;
    top: 10px;
    left: 10px;
    z-index: 1000;

    background-color: #17aded;
    border: 4px solid #FFFFFF;
    border-radius: 100%;
}

.pulse-pin-effect {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top: 0;

    background: rgba(23, 173, 237, 0.6);
    border-radius: 100%;

    opacity: 0;
    animation: pulse-pin 1s ease-out infinite;
}

/*=================================================
				우편번호
=================================================*/
.iframe_postcode_wrap{
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 15px;
}

/*=================================================
				테이블
=================================================*/
/*****#####===== 테이블 디스플레이 =====#####*****/
.d-table{
    display: table;
}

.d-table .d-table-cell{
    display: table-cell;
}

/*****#####===== 추가 옵션 테이블 =====#####*****/
.opts-set-table td{
    vertical-align: middle;
}

/*****#####===== 반응형 테이블 =====#####*****/
.table-responsive .table{
    min-width: 1110px;
}

.table-responsive-lg .table{
    min-width: 930px;
}

.table-responsive-md .table{
    min-width: 690px;
}

.table-responsive-sm .table{
    min-width: 510px;
}

/*================================================
            [Common] Dropzone
=================================================*/
[class*="form-dropzone"] .dropzone.dz-clickable {
    min-height: auto;
    padding: 0;

    border: none;
}

/*****#####====== text 복수 형태(multi) ======#####*****/
[class*="form-dropzone"][data-type="text"] .dropzone {
    min-height: auto;

    border: none;
}

[class*="form-dropzone"][data-type="text"] .dropzone .dz-message {
    margin: 0;
    padding: 0.75rem;

    font-size: 0.875rem;
    text-align: center;
    color: #555555;

    background-color: #f4f4f4;

    border: 1px dashed #dddddd;
    border-radius: 0.333rem;
}

[class*="form-dropzone"][data-type="text"] .dropzone.dz-started .dz-message {
    display: block;
}

[class*="form-dropzone"][data-type="text"] .dz-preview {
    display: flex;
    position: relative;

    width: 100%;
    height: auto;
    min-height: 2.9375rem;
    margin: 0.667rem 0;
    padding: 0;
}

[class*="form-dropzone"] .dz-preview .dz-success-mark,
[class*="form-dropzone"] .dz-preview .dz-error-mark,
[class*="form-dropzone"] .dz-preview .dz-progress,
[class*="form-dropzone"][data-type="text"] .dropzone .dz-preview .dz-image {
    display: none;
}

.attach-item,
[class*="form-dropzone"][data-type="text"] .dz-preview .dz-details {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-direction: row-reverse;

    padding: 0.875rem;

    background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 0.333rem;

    opacity: 1;
}

[class*="form-dropzone"][data-type="text"] .dz-details .dz-filename {
    width: 70%;
}

[class*="form-dropzone"][data-type="text"] .dz-preview .dz-details .dz-filename span {
    position: relative;
    display: inline-block;

    width: 100%;
    padding: 0 0 0 2.75rem;

    font-size: 0.875rem;
    text-align: left;
    text-overflow: ellipsis;
    word-wrap: break-word;
    line-height: 1.5em !important;
    color: #555555;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

    background-color: transparent;

    border: none;
    opacity: 1;
    overflow: hidden;
}

[class*="form-dropzone"][data-type="text"] .dz-filename,
[class*="form-dropzone"][data-type="text"] .dz-filename span {
    background-color: transparent;

    border: none !important;
}

.attach-item .file-name::before,
[class*="form-dropzone"][data-type="text"] .dz-filename span::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;

    display: inline-block;

    width: 1.5rem;
    height: 1.5rem;

    background: url('/img/app/solution/icon_attach.svg') center center no-repeat;
    background-size: contain;
}

.attach-item .file-size,
[class*="form-dropzone"][data-type="text"] .dropzone .dz-details .dz-size {
    display: inline-block;

    width: 20%;
    margin-bottom: 0;

    font-size: 0.875rem;
    font-weight: 400;
    color: #999999;
}

[class*="form-dropzone"][data-type="text"] .dropzone .dz-details .dz-size span {
    padding: 0;
}

[class*="form-dropzone"][data-type="text"] .dz-size strong {
    font-weight: 400;
}

[class*="form-dropzone"][data-type="text"] .dz-preview .dz-remove {
    position: absolute;
    top: 50%;
    right: 1rem;

    transform: translateY(-50%);

    width: 1.5rem;
    height: 1.5rem;

    text-indent: -999999rem;

    background: url('/img/app/solution/icon_remove.svg') center center no-repeat;
    background-size: contain;

    z-index: 98;
}

.desc-wrap {
    padding-top: 0.375rem;

    font-size: 0.75rem;
    color: #999999;
}

.desc-wrap svg {
    margin-top: -0.25rem;
    margin-right: 0.25rem;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    [class*="form-dropzone"][data-type="text"] .dz-preview .dz-details .dz-filename span,
    [class*="form-dropzone"][data-type="text"] .dropzone .dz-message {
        font-size: 1.167rem;
    }

    .desc-wrap {
        font-size: 1rem;
    }

    .attach-item,
    [class*="form-dropzone"][data-type="text"] .dz-preview .dz-details {
        padding: 1rem 1.167rem;
    }
}

/*****#####====== 텍스트형 단수 형태(single) ======#####*****/
.form-dropzone-single[data-type="text"] .dropzone.dz-started .dz-message {
    display: none;
}

/*****#####===== 이미지형 복수 형태(multi) =====#####*****/
.form-dropzone-multi[data-type="image"] .dropzone {
    min-height: auto;
    padding: 1rem;

    border: 1px dashed #dddddd;
    border-radius: 0.333rem;
}

.form-dropzone-multi[data-type="image"] .dropzone .dz-message {
    display: inline-block;

    width: 5.833rem;
    height: 5.833rem;
    margin: 0;

    background-color: #f4f4f4;

    border: 1px solid #dddddd;
    border-radius: 0.333rem;
}

.form-dropzone-multi[data-type="image"] .dz-preview {
    min-height: auto;
    margin: 0 0 0 1rem;
}

.form-dropzone-multi[data-type="image"] .dz-preview:nth-child(2) {
    margin-left: 0.75rem;
}

.form-dropzone-multi[data-type="image"] .dz-preview .dz-image {
    width: 5.833rem;
    height: 5.833rem;

    border-radius: 0.333rem;
}

.form-dropzone-multi[data-type="image"] .dz-preview .dz-image>img {
    width: 100%;
    height: 100%;
}

.form-dropzone-multi[data-type="image"] .dz-preview .dz-details {
    padding: 1rem 0.5rem;
}

.form-dropzone-multi[data-type="image"] .dz-preview .dz-details .dz-size {
    margin-bottom: 0.5rem;
}

.form-dropzone-multi[data-type="image"] .dz-details .dz-size span {
    font-size: 1rem;
}

.form-dropzone-multi[data-type="image"] .dz-preview .dz-remove {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;

    width: 1.333rem;
    height: 1.333rem;

    text-indent: -999999rem;

    background-color: url('/img/app/solution/icon_dz_remove.svg') center center no-repeat;
    background-size: contain;

    z-index: 999;
}

/*****#####===== 이미지형 단일 형태(single) =====#####*****/
.form-dropzone-single[data-type="image"] .dropzone {
    display: inline-block;
    min-height: auto;

    border: 1px dashed #dddddd;
    border-radius: 0.333rem;
}

.form-dropzone-single[data-type="image"] .dropzone .dz-message {
    width: 10rem;
    height: 10rem;
    margin: 0;
}

.form-dropzone-single[data-type="image"] .dz-preview {
    margin: 0;
}

.form-dropzone-single[data-type="image"] .dz-preview .dz-image {
    border-radius: 0.333rem;
}

.form-dropzone-single[data-type="image"] .dz-preview .dz-image img {
    width: 100%;
}

.form-dropzone-single[data-type="image"] .dz-preview .dz-remove {
    position: absolute;
    top: 0.833rem;
    right: 0.833rem;

    width: 2rem;
    height: 2rem;

    text-indent: -999999rem;

    background: url('/img/app/solution/icon_dz_remove.svg') center center no-repeat;
    background-size: contain;

    z-index: 999;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .attach-item .file-name {
        width: 70%;

        font-size: 1.167rem;
    }

    .attach-item .file-size,
    [class*="form-dropzone"][data-type="text"] .dropzone .dz-details .dz-size {
        font-size: 1.167rem;
    }

    .attach-item .file-name::before,
    [class*="form-dropzone"][data-type="text"] .dz-filename span::before {
        width: 2rem;
        height: 2rem;
    }

    .attach-item .download-btn {
        width: 2rem;
        height: 2rem;
    }
}

.col-form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #555555;
}

/*=================================================
				비율 DIV
=================================================*/
/*****#####===== 비율 박스 =====#####*****/
.ratio-box{
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ratio-box:before{
    content: "";
    display: block;
    padding-top: 100%;
}

.ratio-box > .ratio-content{
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.ratio-content.circle{
    border-radius: 100%;
}

.middle-box{
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;

    text-align: center;
}

.middle-box .inner{
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    text-align:center;
}

.middle-box .inner.bottom{
	vertical-align: bottom;
}

.middle-box .inner.top{
	vertical-align: top;
}

/*****#####===== 가로:세로 비율 =====#####*****/
/* 뒤의수 나누기 앞의 수 * 100 */
.ratio-box.ratio5_1:before{padding-top:20%;}
.ratio-box.ratio4_1:before{padding-top:25%;}
.ratio-box.ratio3_1:before{padding-top:33.33%;}
.ratio-box.ratio5_2:before{padding-top:40%;}
.ratio-box.ratio2_1:before{padding-top:50%;}
.ratio-box.ratio16_9:before{padding-top:56.25%;}
.ratio-box.ratio5_3:before{padding-top:60%;}
.ratio-box.ratio3_2:before{padding-top:66.66%;}
.ratio-box.ratio4_3:before{padding-top:75%;}
.ratio-box.ratio5_4:before{padding-top:80%;}
.ratio-box.ratio9_8:before{padding-top:88.88%;}
.ratio-box.ratio1_1:before{padding-top:100%;}
.ratio-box.ratio5_6:before{padding-top:120%;}
.ratio-box.ratio4_5:before{padding-top:125%;}
.ratio-box.ratio3_4:before{padding-top:133.33%;}
.ratio-box.ratio2_3:before{padding-top:150%;}
.ratio-box.ratio1_2:before{padding-top:200%;}

/*****#####===== 미디어 쿼리 =====#####*****/
/*****##### lg #####*****/
@media (min-width: 992px) and (max-width: 1199.98px){
    .ratio-box.lg_ratio5_1:before{padding-top:20% !important;}
    .ratio-box.lg_ratio4_1:before{padding-top:25% !important;}
    .ratio-box.lg_ratio3_1:before{padding-top:33.33% !important;}
    .ratio-box.lg_ratio5_2:before{padding-top:40% !important;}
    .ratio-box.lg_ratio2_1:before{padding-top:50% !important;}
    .ratio-box.lg_ratio16_9:before{padding-top:56.25% !important;}
    .ratio-box.lg_ratio5_3:before{padding-top:60% !important;}
    .ratio-box.lg_ratio3_2:before{padding-top:66.66% !important;}
    .ratio-box.lg_ratio4_3:before{padding-top:75% !important;}
    .ratio-box.lg_ratio5_4:before{padding-top:80% !important;}
    .ratio-box.lg_ratio1_1:before{padding-top:100% !important;}
    .ratio-box.lg_ratio5_6:before{padding-top:120% !important;}
    .ratio-box.lg_ratio4_5:before{padding-top:125% !important;}
    .ratio-box.lg_ratio3_4:before{padding-top:133.33% !important;}
    .ratio-box.lg_ratio2_3:before{padding-top:150% !important;}
    .ratio-box.lg_ratio1_2:before{padding-top:200% !important;}
}

/*****##### md #####*****/
@media (min-width: 768px) and (max-width: 991.98px){
    .ratio-box.md_ratio5_1:before{padding-top:20% !important;}
    .ratio-box.md_ratio4_1:before{padding-top:25% !important;}
    .ratio-box.md_ratio3_1:before{padding-top:33.33% !important;}
    .ratio-box.md_ratio5_2:before{padding-top:40% !important;}
    .ratio-box.md_ratio2_1:before{padding-top:50% !important;}
    .ratio-box.md_ratio5_3:before{padding-top:60% !important;}
    .ratio-box.md_ratio16_9:before{padding-top:56.25% !important;}
    .ratio-box.md_ratio3_2:before{padding-top:66.66% !important;}
    .ratio-box.md_ratio4_3:before{padding-top:75% !important;}
    .ratio-box.md_ratio5_4:before{padding-top:80% !important;}
    .ratio-box.md_ratio1_1:before{padding-top:100% !important;}
    .ratio-box.md_ratio5_6:before{padding-top:120% !important;}
    .ratio-box.md_ratio4_5:before{padding-top:125% !important;}
    .ratio-box.md_ratio3_4:before{padding-top:133.33% !important;}
    .ratio-box.md_ratio2_3:before{padding-top:150% !important;}
    .ratio-box.md_ratio1_2:before{padding-top:200% !important;}
}

/*****##### sm / xs #####*****/
@media (min-width: 100px) and (max-width: 767.98px){
    .ratio-box.xs_ratio5_1:before{padding-top:20% !important;}
    .ratio-box.xs_ratio4_1:before{padding-top:25% !important;}
    .ratio-box.xs_ratio3_1:before{padding-top:33.33% !important;}
    .ratio-box.xs_ratio5_2:before{padding-top:40% !important;}
    .ratio-box.xs_ratio2_1:before{padding-top:50% !important;}
    .ratio-box.xs_ratio5_3:before{padding-top:60% !important;}
    .ratio-box.xs_ratio16_9:before{padding-top:56.25% !important;}
    .ratio-box.xs_ratio3_2:before{padding-top:66.66% !important;}
    .ratio-box.xs_ratio4_3:before{padding-top:75% !important;}
    .ratio-box.xs_ratio5_4:before{padding-top:80% !important;}
    .ratio-box.xs_ratio1_1:before{padding-top:100% !important;}
    .ratio-box.xs_ratio5_6:before{padding-top:120% !important;}
    .ratio-box.xs_ratio4_5:before{padding-top:125% !important;}
    .ratio-box.xs_ratio3_4:before{padding-top:133.33% !important;}
    .ratio-box.xs_ratio2_3:before{padding-top:150% !important;}
    .ratio-box.xs_ratio1_2:before{padding-top:200% !important;}
}

/*=================================================
				Form
=================================================*/
#colorpicker_input,
.colorpick-eyedropper-input-trigger{
    position: absolute;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    opacity: 0 !important;
    top: 0;
    left: -9999px;

    border: none !important;
}

.ui-datepicker{
    z-index: 321 !important;
}

/*=================================================
			bootstrap
=================================================*/
/*****#####===== Form =====#####*****/
/*****##### 폼 그룹 #####*****/
.form-group-wrap:not(:last-child) {
    margin-bottom: 3.75rem;
}

.form-group-wrap .form-group-title {
    padding-bottom: 1.5rem;

    font-size: 1.125rem;
    font-weight: bold;
}

/*****##### 폼 아이템 #####*****/
.form-control{
    height: auto;
    padding: 0.875rem 1rem;

    border-radius: 0.25rem !important;

    resize: none;
}

.form-control-sm{
    height: calc(1.5rem + 0.5rem - 1px);
    padding: 0 0.5rem;
}

.form-control.d-inline-block{
    width: auto;
}

.form-control:disabled,
.form-control[readonly] {
    color: #999999;

    background-color: #f4f4f4;
}

.form-control.result-representation {
    color: #999999
}

.text-form,
.text-form:focus{
    border: none;
    background: none;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .form-control {
        padding: 1rem 1.167rem;

        font-size: 1.167rem;
    }
}

/*****##### 폼 그리드 #####*****/
.form-grid{
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    grid-gap: 0.625rem;
}

.form-grid .form-title{
    display: inline-block;
}

/*****##### essential #####*****/
.form-title.essential {
    display: inline-block;
    position: relative;
}

.form-title.essential::after {
    content: '*';
    display: inline-block;

    position: absolute;
    top: 0;
    right: -0.75rem;

    font-weight: 400;
}

/*****#####===== 폼 태그 =====#####*****/
.form-tag {
    display: inline-block;

    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    padding: 0.333rem 0.667rem;

    font-size: 0.875rem;
    color: #555555;

    background-color: #ebfdff;

    border-radius: 0.333rem;
}

/*****#####===== 인증 =====#####*****/
.auth-wrap .form-text {
    margin-top: 0;

    color: #999999;
}

/*****##### 인증,카운트 다운 #####*****/
.auth-wrap .count-down {
    position: absolute;
    right: 1rem;
    top: 50%;

    transform: translateY(-50%);
}

.auth-wrap .count-down .count-span {
    position: relative;

    padding: 0 0.2rem;

    font-size: 1rem;
    color: #ff0000;
}

.auth-wrap .count-down .count-span:not(:last-child):after {
    content: ':';
    position: absolute;
    right: -0.13rem;
    top: 50%;

    transform: translateY(-50%);
}

/*****##### 버튼 #####*****/
.auth-wrap .btn {
    padding: 0.8rem 0.5rem;
}


/*****#####===== Button =====#####*****/
.btn-group-toggle [type='radio']{
    display: none;
}

/*****#####===== Table =====#####*****/
.table th{
    text-align: center;
}

/*=================================================
                태그
=================================================*/
.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;

    font-size: 0.75rem;
    color: #999999;

    background-color: #f4f4f4;
    border-radius: 0.25rem;
    overflow: hidden;
}

.tag.active {
    color: #3a65f3;

    background-color: #e1e7f8;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .tag {
        padding: 0.333rem 0.667rem;

        font-size: 1rem;
    }
}

/*=================================================
			기타 간편 설정
=================================================*/
/*****#####===== Row 설정 =====#####*****/
.row-0{margin-left: 0px;margin-right: 0px;}
.row-0 > div[class*='col']{padding-left: 0px;padding-right: 0px;}
.row-1{margin-left: -1px;margin-right: -1px;}
.row-1 > div[class*='col']{padding-left: 1px;padding-right: 1px;}
.row-2{margin-left: -2px;margin-right: -2px;}
.row-2 > div[class*='col']{padding-left: 2px;padding-right: 2px;}
.row-3{margin-left: -3px;margin-right: -3px;}
.row-3 > div[class*='col']{padding-left: 3px;padding-right: 3px;}
.row-4{margin-left: -4px;margin-right: -4px;}
.row-4 > div[class*='col']{padding-left: 4px;padding-right: 4px;}
.row-5{margin-left: -5px;margin-right: -5px;}
.row-5 > div[class*='col']{padding-left: 5px;padding-right: 5px;}
.row-6{margin-left: -6px;margin-right: -6px;}
.row-6 > div[class*='col']{padding-left: 6px;padding-right: 6px;}
.row-7{margin-left: -7px;margin-right: -7px;}
.row-7 > div[class*='col']{padding-left: 7px;padding-right: 7px;}
.row-8{margin-left: -8px;margin-right: -8px;}
.row-8 > div[class*='col']{padding-left: 8px;padding-right: 8px;}
.row-9{margin-left: -9px;margin-right: -9px;}
.row-9 > div[class*='col']{padding-left: 9px;padding-right: 9px;}
.row-10{margin-left: -10px;margin-right: -10px;}
.row-10 > div[class*='col']{padding-left: 10px;padding-right: 10px;}
.row-12{margin-left: -12px;margin-right: -12px;}
.row-12 > div[class*='col']{padding-left: 12px;padding-right: 12px;}
.row-15{margin-left: -15px;margin-right: -15px;}
.row-15 > div[class*='col']{padding-left: 15px;padding-right: 15px;}
.row-18{margin-left: -18px;margin-right: -18px;}
.row-18 > div[class*='col']{padding-left: 18px;padding-right: 18px;}
.row-20{margin-left: -20px;margin-right: -20px;}
.row-20 > div[class*='col']{padding-left: 20px;padding-right: 20px;}
.row-30{margin-left: -30px;margin-right: -30px;}
.row-30 > div[class*='col']{padding-left: 30px;padding-right: 30px;}
.row-40{margin-left: -40px;margin-right: -40px;}
.row-40 > div[class*='col']{padding-left: 40px;padding-right: 40px;}
.row-50{margin-left: -50px;margin-right: -50px;}
.row-50 > div[class*='col']{padding-left: 50px;padding-right: 50px;}
.row-60{margin-left: -60px;margin-right: -60px;}
.row-60 > div[class*='col']{padding-left: 60px;padding-right: 60px;}

/*****#####===== Width 설정 =====#####*****/
.width-1{width: 1rem !important;}
.width-2{width: 2rem !important;}
.width-3{width: 3rem !important;}
.width-4{width: 4rem !important;}
.width-5{width: 5rem !important;}
.width-6{width: 6rem !important;}
.width-7{width: 7rem !important;}
.width-8{width: 8rem !important;}
.width-9{width: 9rem !important;}
.width-10{width: 10rem !important;}
.width-11{width: 11rem !important;}
.width-12{width: 12rem !important;}
.width-13{width: 13rem !important;}
.width-14{width: 14rem !important;}
.width-15{width: 15rem !important;}
.width-16{width: 16rem !important;}
.width-17{width: 17rem !important;}
.width-18{width: 18rem !important;}
.width-19{width: 19rem !important;}
.width-20{width: 20rem !important;}
.width-21{width: 21rem !important;}
.width-22{width: 22rem !important;}
.width-23{width: 23rem !important;}
.width-24{width: 24rem !important;}
.width-25{width: 25rem !important;}
.width-26{width: 26rem !important;}
.width-27{width: 27rem !important;}
.width-28{width: 28rem !important;}
.width-29{width: 29rem !important;}
.width-30{width: 30rem !important;}
.width-31{width: 31rem !important;}
.width-32{width: 32rem !important;}
.width-33{width: 33rem !important;}
.width-34{width: 34rem !important;}
.width-35{width: 35rem !important;}
.width-36{width: 36rem !important;}
.width-37{width: 37rem !important;}
.width-38{width: 38rem !important;}
.width-39{width: 39rem !important;}
.width-40{width: 40rem !important;}
.width-50{width: 50rem !important;}
.width-55{width: 55rem !important;}
.width-60{width: 60rem !important;}

/*****#####===== Height 설정 =====#####*****/
.vh-100{
    height: 100vh !important;
    min-height: 500px;
}

.vh-50{
    height: 50vh !important;
    min-height: 250px;
}

/*=================================================
				Features
=================================================*/
/*****#####===== 타이핑 =====#####*****/
.typing:not(.rendered){
    visibility: hidden;
}
.typing.rendered{
    visibility: visible;
}

/*=================================================
				dropzone
=================================================*/
/*****#####===== 1개 limit =====#####*****/
.dropzone[data-limit='1']{
    text-align: center;
}

/*****#####===== small =====#####*****/
.dropzone[data-size='small']{
    min-height: 4rem;
    padding: 5px;

    border: 1px solid #d9d9d9;
}

.dropzone[data-size='small'] .dz-message {
    margin: 0.8rem 0;
}

.dropzone[data-size='small'] .dz-preview{
    min-height: 50px;
    margin: 0;
}

.dropzone[data-size='small'] .dz-preview .dz-image{
    width: 60px;
    height: 60px;

    border-radius: 10px;
}

.dropzone[data-size='small'] .dz-preview .dz-image img{
    width: 100%;
    max-width: 100%;
}

.dropzone[data-size='small'] .dz-preview .dz-details{
    padding: 1em;

    font-size: 10px;
}

.dropzone[data-size='small'] .dz-preview .dz-details .dz-size{
    margin-bottom: 0.5em;

    font-size: 10px;
}

.dropzone[data-size='small'] .dz-preview .dz-remove{
    padding-top: 5px;

    font-size: 10px;
}

/*=================================================
                Summernote
=================================================*/
.note-toolbar .dropdown-toggle::after{
    display: none;
}

.note-editor .note-editing-area p {
    margin: 0;
}

.editor-wrap {
    position: relative;
}

.note-editor .note-statusbar.locked{
    display: none;
}

.note-editor .note-dropzone{
    opacity: 0 !important;
}

/*****#####===== 댓글형 =====#####*****/
.editor-wrap[data-type='cmnt'] .note-editor .note-toolbar{
    border: none;
}

.editor-wrap[data-type='cmnt'] .note-editor .note-editable{
    padding-top: 0 !important;
}

.editor-wrap[data-type='cmnt'] .note-editor .note-statusbar{
    display: none;
}

.editor-wrap[data-type='cmnt'] .note-dropdown-menu{
    top: 0;

    transform: translateY(-100%);
}

.editor-wrap[data-type='cmnt'] button[class$='submit_btn']{
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

/*=================================================
				Nestable
=================================================*/
.dd-empty{
    display: none;
}

.dd-list .dd-item > button {
    margin-left: 30px;
}

.dd-item .dd-handle,
.dd-item.dd-nodrag .dd-handle:hover{
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 30px;
    text-indent: 30px;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid #aaa;
    background: #ddd;
    background: -webkit-linear-gradient(top, #ddd 0%, #bbb 100%);
    background: -moz-linear-gradient(top, #ddd 0%, #bbb 100%);
    background: linear-gradient(top, #ddd 0%, #bbb 100%);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dd-item .dd-handle:before {
    content: '≡';
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
    width: 100%;
    text-align: center;
    text-indent: 0;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
}

.dd-item .dd-content {
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px 5px 40px;
    cursor: pointer;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ccc;
    background: #fafafa;
    background: -webkit-linear-gradient(top, #fafafa 0%, #eee 100%);
    background: -moz-linear-gradient(top, #fafafa 0%, #eee 100%);
    background: linear-gradient(top, #fafafa 0%, #eee 100%);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-item .dd-content:hover{
    background: #ffffff;
}

.dd-item .dd-item[data-status='off'] .dd-content{
    background: #bbbbbb;

    color: #dddddd;
}

/*=================================================
            코멘트 - default
=================================================*/
.cmnt-wrap[data-type='default'] {
    border-top: 1px solid #000000;
}

/*****#####===== 등록 =====#####*****/
.cmnt-wrap[data-type='default'] .cmnt-write-wrap {
    padding: 1.5rem 0;

    border-bottom: 1px solid #e8e8e8;
}

.cmnt-wrap[data-type='default'] .cmnt-write-wrap .cmnt-cnt {
    margin-bottom: 0.5rem;

    font-weight: 600;
}

.cmnt-wrap[data-type='default'] .cmnt-write-wrap .btn {
    padding: 0.6rem 1rem;
}

/*****#####===== 리스트 =====#####*****/
.cmnt-wrap[data-type='default'] .cmnt-lists {
    padding: 0.625rem 0;

    border-bottom: 1px solid #dddddd;
}

/*****##### 유저 이미지 #####*****/
.cmnt-wrap[data-type='default'] .cmnt-lists .user-image {
    width: 3.5rem;
    height: 3.5rem;
}

/*****##### 유저 타이틀 #####*****/
.cmnt-wrap[data-type='default'] .cmnt-lists .list-writer {
    margin: 0.5rem 0 0.3rem 0;
}

.cmnt-wrap[data-type='default'] .cmnt-lists .list-title-item:not(:last-child) {
    margin-right: 0.8rem;
}

.cmnt-wrap[data-type='default'] .cmnt-lists .list-title-item:not(:last-child):after {
    right: -0.3rem;

    background-color: #d9d9d9;
}

/*****##### 수정 #####*****/
.cmnt-wrap[data-type='default'] .editor-icon {
    padding: 0 1rem;
}

.cmnt-wrap[data-type='default'] .editor-icon .editor-item {
    padding: 0.4rem 1.3rem;
}

.cmnt-wrap[data-type='default'] .editor-icon .editor-item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

/***** popover *****/
.cmnt-wrap[data-type='default'] .editor-icon .arrow {
    display: none;
}

.cmnt-wrap[data-type='default'] .editor-icon .popover {
    border-radius: 0;
}

.cmnt-wrap[data-type='default'] .editor-icon .popover-body {
    padding: 0;
}

/*=================================================
            코멘트 - Basic
=================================================*/
/*****#####===== 리스트 =====#####*****/
.cmnt-wrap[data-type='basic'] {
    margin: 1rem 0;

    border-top: 1px solid #000000;
}

.cmnt-wrap[data-type='basic'] .cmnt-lists {
    padding: 1rem 0;
}

.cmnt-wrap[data-type='basic'] .cmnt_btn {
    display: inline-block;
}

/*****#####===== 등록 =====#####*****/
.cmnt-wrap[data-type='basic'] .cmnt-write-wrap {
    padding-top: 1rem;
}

/*================================================
            [Controller] popover - basic
=================================================*/
.popover-wrap[data-type="basic"] .popover {
    border: 1px solid #aaaaaa;
    border-radius: 0;
}

.popover-wrap[data-type="basic"] .arrow {
    display: none;
}

.popover-wrap[data-type="basic"] .popover-header {
    padding: 0 0 0 0.5rem;

    background-color: #f4f4f4;
}

.popover-wrap[data-type="basic"] .popover-close {
    padding: 0.8rem;
}

.popover-wrap[data-type="basic"] .popover-body {
    padding: 0;
}

/*================================================
            [Controller] share popover
=================================================*/
.share-popover-btn .popover-body {
    width: 15.5rem;
}

.share-popover-btn .share-pop-body {
    padding: 1rem 1.188rem;
}

.share-popover-btn .share-pop-body svg {
    width: 2.25rem;
    height: 2.25rem;
}


/*=================================================
            태스크 - cmnt(댓글형)
=================================================*/
/*****#####===== 리스트 =====#####*****/
.task-wrap[data-type='cmnt'] .task-lists {
    padding: 1rem;
}

.task-wrap[data-type='cmnt'] .task-lists[data-order='100'] {
    background-color: #fef9ee;
}

.task-wrap[data-type='cmnt'] .task_btn {
    display: inline-block;
}

.task-wrap[data-type='cmnt'] .task_notice_btn[data-order='100'] .fa {
    color: #f6c456;
}

.task-wrap[data-type='cmnt'] .dropzone-wrap {
    margin: 1rem 0;
}

/*****#####===== 어싸인 =====#####*****/
.task-assign-wrap {
    margin-top: 1rem;
}

.task-assign-wrap .user-image {
    width: 30px;
    height: 30px;
}

.task-assign-wrap .user-image-id {
    line-height: 30px;
}

.task-assign-wrap .assign_btn {
    background-color: #dfdfdf;

    color: #000000;
}

.task-wrap .task-lists .popover {
    width: 330px;
    max-width: 330px;
    min-height: 55px;
}

.assign-write-wrap {
    display: none;
}

.assign-write-wrap.show {
    display: block;
}


/*=================================================
				Swiper
=================================================*/
.swiper_player{
    position: relative;
    overflow: hidden;
}

/*=================================================
				Slick
=================================================*/
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-slide,
.slide-wrap{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide:focus,
.slide-wrap:focus{
    outline: 0;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;

    border: 1px solid transparent;
}

.slick-list:focus {outline: none;}
.slick-track:after {clear: both;}
.slick-loading .slick-track {visibility: hidden;}
[dir='rtl'] .slick-slide {float: right;}
.slick-slide img {display: block;}
.slick-slide.slick-loading img {display: none;}
.slick-slide.dragging img {pointer-events: none;}
.slick-initialized .slick-slide {display: block;}
.slick-loading .slick-slide {visibility: hidden;}
.slick-arrow.slick-hidden {display: none;}

/*****#####===== 추가 설정 =====#####*****/
.slick-wrap{
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

/*****#####===== slick dot =====#####*****/
ul.slick-dots>li>button {
    padding: 0;
}

.slick-dots {
    bottom: 3rem;
}

.slick-dots li {
    width: 0.333em;
    height: 0.333em;
    margin: 0 0.2em;
}

.slick-dots li button {
    background-color: #f7f7fb;

    border-radius: 2em;

    opacity: .3;
}

.slick-dots li.slick-active,
.slick-dots li.slick-active button {
    width: 1em;
}

.slick-dots li.slick-active button {
    background-color: #ffffff;

    opacity: .8;
}

/*****##### Arrow #####*****/
.custom-slick-arrow{
    position: absolute;
    display: block;
    width: 1.75rem;
    top: 50%;
    cursor: pointer;

    transform: translateY(-50%);
}

.custom-slick-arrow svg path{
    fill: #ffffff;
}

.custom-slick-arrow.black svg path{
    fill: #000000;
}

.custom-slick-arrow.slick-disabled{
    opacity: 0;
    cursor: default;
}

.custom-slick-prev{
    left: 0;
}

.custom-slick-prev svg{
    transform: rotate(180deg);
}

.custom-slick-next{
    right: 0;
}

/*****##### Dots #####*****/
.slick-dots{
    position: absolute;
    display: block;
    width: 100%;
    bottom: 2rem;
    list-style: none;
    padding: 0;

    text-align: center;
}

.slick-dots li{
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 0.3em;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button{
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;

    background-color: #dddddd;
    border-radius: 100%;
    border: 0;
    outline: none;

    color: transparent;
}

.slick-dots li.slick-active button{
    opacity: 0.9;
}

/*=================================================
				이누 캘린더
=================================================*/
/*****#####===== 헤더 =====#####*****/
.inu_calendar.fc .fc-toolbar.fc-header-toolbar{
    padding: 0.7rem 1.5rem;
}

/*****##### 타이틀 #####*****/
.inu_calendar.fc .fc-header-toolbar .fc-toolbar-title{
    margin-top: 0.4rem;

    font-size: 1rem;
    font-weight: normal;
}

/*****##### 버튼 #####*****/
.inu_calendar.fc .fc-header-toolbar .fc-button-primary{
    padding: 0;

    background: none;
    border: none;

    color: #000000;
}

/*****##### 아이콘 #####*****/
.inu_calendar.fc .fc-header-toolbar .fc-icon{
    font-size: 1.2rem;
}

/*****#####===== 달력 =====#####*****/
/*****##### 일반 #####*****/
.inu_calendar.fc .fc-scrollgrid{
    border: none;
}

.inu_calendar.fc td,
.inu_calendar.fc th {
    border: none !important;

    font-weight: normal;
}

/*****##### 날짜 #####*****/
.inu_calendar.fc .fc-daygrid-day-top{
    align-items: center;
    justify-content: center;
}

.inu_calendar .fc-daygrid-day-frame,
.inu_calendar .fc-daygrid-day-top{
    height: 100%;
}

.inu_calendar.fc .fc-daygrid-day.fc-day-today{
    background: none;
}

.inu_calendar.fc .fc-daygrid-day-number{
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 0;

    background: none;
    border-radius: 100%;

    font-size: 1em;
    font-weight: bold;
    text-align: center;
    line-height: 30px;
}

.inu_calendar.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number{
    color: #0d95e8;
}

.inu_calendar.fc .fc-daygrid-day.date_selected .fc-daygrid-day-number{
    background: #0d95e8;

    color: #ffffff;
}

.inu_calendar.fc .fc-daygrid-day.fc-day.prevent_rsrv .fc-daygrid-day-number{
    background-color: #c2c6d1;
    border-radius: 6px;

    color: #7d7f97;

    cursor: default;
}

/*****##### 이벤트 #####*****/
.inu_calendar.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events{
    display: flex;
    justify-content: center;
    min-height: 10px;

    text-align: center;
}

.inu_calendar.fc .fc-event{
    font-size: 0;
    line-height: 0;
}

.inu_calendar.fc .fc-event .fc-event-main{
    color: transparent;
}

.inu_calendar.fc .fc-event.dot_event{
    width: 6px;
    height: 6px;
    margin: 0 1px;

    border: none;
    border-radius: 100%;
}

/*****#####===== 팝업 =====#####*****/
.inu-calendar-fancy .fancybox-slide{
    padding: 0;
}

.inu-calendar-fancy .fancybox-content{
    width: 80%;
    max-width: 400px;
    padding: 0;
}

.inu-calendar-fancy .fancybox-content .fc-header-toolbar{
    background-color: #303aa6;

    color: #ffffff;
}

.inu_calendar.fc .fc-header-toolbar .fc-toolbar-title{
    font-size: 1.5rem;
}

.inu-calendar-fancy .fancybox-content .fc-header-toolbar .fc-icon{
    font-size: 1.5rem;
    color: #ffffff;
}

/*=================================================
				Drawer Select
=================================================*/
#select_drawer.show{
    max-height: 100%;
}

#select_drawer .select_wrap{
    position: relative;
    overflow: hidden;
    padding: 10px 3rem;
}

#select_drawer .select_wrap:not(.multiple):before{
    content: '';
    position: absolute;
    width: 50%;
    height: 40px;
    top: 50%;
    left: 50%;

    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;

    transform: translate(-50%, -50%);
}

#select_drawer .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    font-size: 12px;
    color: #CCCCCC;
}

#select_drawer .select_wrap:not(.multiple) .swiper-slide.swiper-slide-active{
    font-size: 20px;
    color: #000000;
}

#select_drawer .swiper-slide .slide_item{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 25px;
}

#select_drawer .select_confirm_btn{
    padding: 1.5rem;

    border-radius: 0;
}

#select_drawer .select_wrap.multiple .swiper-slide{
    justify-content: left;

    text-align: left;
    font-size: 14px;
    color: #888888;
}

#select_drawer .select_wrap.multiple .multiple_item.active{
    font-size: 16px;
    color: #000000;
}

#select_drawer .select_wrap.multiple .multiple_item.active:before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;

    background-image: url('/front/data/img/component/icon_route_main.svg');
}

#select_drawer .adding_item_input{
    width: 100%;
    padding: 6px;

    border: 1px solid #ced4da;
}

/*=================================================
				Chat
=================================================*/
/*****#####===== 메시지 리스트 =====#####*****/
.chat_wrap .message_wrap{
    padding: 0 1rem 4rem;
}

/*****#####===== 버블 =====#####*****/
.chat_bubble_wrap.template{
    display: none !important;
}

.chat_bubble_wrap{
    display: flex;
    padding: 0.9rem 0;
}

.chat_bubble_wrap.my_chat{
    flex-direction: row-reverse;
}

.chat_bubble_wrap .bubble_text{
    max-width: 20rem;
    padding: 1rem;

    border-radius: 8px;
    border: 1px solid #dddddd;
}

.chat_bubble_wrap.my_chat .bubble_text{
    background-color: #07236d;

    color: #ffffff;
}

.chat_bubble_wrap .bubble_date{
    padding: 0 0.7rem;
    align-self: flex-end;
}

.chat_bubble_wrap[data-type="image"] .bubble_text{
    padding: 0;

    border: none;
    background: none;
}

.chat_bubble_wrap[data-type="image"] .thumbnail{
    max-width: 100%;

    border-radius: 8px;
}

/*****#####===== 전송 =====#####*****/
.send_text_wrap{
    position: fixed;
    width: 100%;
    bottom: 0;

    background: #ffffff;
}

/*=================================================
				Fancybox
=================================================*/
.fancybox-content{
    max-width: 900px;
    max-height: 90%;
    margin: 0;
}

.fancybox-close-small{
    top: 0;
    right: 0;
}

.fancybox-close-small svg{
    display:none;
}

.fancybox-close-small:before{
    content: "\e646";

    font-family: 'themify';
}

/*****#####===== 팬시박스 =====#####*****/
.fancybox-button:hover {
    color: #000000;
}

/*****#####===== AJAX =====#####*****/
.fancy-ajax-wrap{
    padding: 0;
}

/*****#####===== iframe =====#####*****/
.cart-opts-fancy .fancybox-slide:before,
.custom-open-fancy .fancybox-slide:before{
    height: 0;
}

/*****#####===== 효과 =====#####*****/
.fancybox-fx-slide-up.fancybox-slide--previous {
    transform: translateY(100%);
}

.fancybox-fx-slide-up.fancybox-slide--next {
    transform: translateY(100%);
}

.fancybox-fx-slide-up.fancybox-slide--current {
    transform: translateY(0);
}

/*****#####===== 미디어쿼리 =====#####*****/
/***** sm / xs *****/
@media (min-width: 100px) and (max-width: 767.98px) {
    .fancybox-slide {
        padding: 3rem 1.875rem;
    }
}

/*=================================================
				pretty-checkbox
=================================================*/
.pretty .state label{
    text-indent: 2.2em;
}

.pretty .state label:after,
.pretty .state label:before {
    border-radius: 0.333rem;
}

.pretty.p-default input:checked~.state label:after {
    background-color: #3a65f3 !important;
}

.pretty.p-default input:checked~.state label:before {
    border-color: #3a65f3;
}

.pretty.p-svg input:checked~.state label:before {
    background-color: #3a65f3;
    border-color: #3a65f3;
}

/*****#####===== switch =====#####*****/
.pretty.p-switch .state {
    font-size: 2rem;
}

.pretty.p-switch .state:before {
    top: calc((0% - (100% - 1em)) - 10%);

    background-color: #dddddd;
    border: none;
}

.pretty.p-switch .state label:after {
    background-color: #ffffff !important;
}

.pretty.p-switch.p-fill input:checked~.state:before {
    background-color: #3a65f3 !important;
    border: none;
}

/*=================================================
				Animate.css
=================================================*/
.animated.hidden,
.wow{
    visibility: hidden;
}

/*****#####===== fadeInUpShort =====#####*****/
@keyframes fadeInUpShort {
    from {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.fadeInUpShort {
    animation-name: fadeInUpShort;
}

/*****#####===== fadeInRightShort =====#####*****/
@keyframes fadeInRightShort {
    from {
        opacity: 0;
        transform: translate3d(50%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInRightShort {
    animation-name: fadeInRightShort;
}

/*****#####===== fadeInLeftShort =====#####*****/
@keyframes fadeInLeftShort {
    from {
        opacity: 0;
        transform: translate3d(-50%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeftShort {
    animation-name: fadeInLeftShort;
}

/*****#####===== fadeInDownShort =====#####*****/
@keyframes fadeInDownShort {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDownShort {
    animation-name: fadeInDownShort;
}

/*================================================
            nice-select
=================================================*/
.nice-select {
    float: initial;

    padding: 0.375rem 2rem 0.375rem 0.5rem;
    height: calc(1.5em + .75rem + 2px);

    line-height: 1.6em;
}

.nice-select:after {
    width: 7px;
    height: 7px;
    margin-top: -5px;

    border-bottom: 2px solid #000000;
    border-right: 2px solid #000000;
}

.nice-select .list {
    width: 100%;
}

/*=================================================
				Collapse
=================================================*/
/*****#####===== Collapse arrow =====#####*****/
.card .card-header .collapse-arrow{
    transition: all 0.3s;
}

.card .card-header .collapse-arrow svg{
    width: 0.6rem;
    height: 0.6rem;
}

.card .card-header[aria-expanded="true"] .collapse-arrow{
    transform: rotate(180deg);
}

/*****#####===== Collapse plus =====#####*****/
.card .card-header .collapse-plus[aria-expanded="true"]:before{
    content: "+";
}

.card .card-header .collapse-plus:before{
    content: "-";
}

/*=================================================
				코치 마크
=================================================*/
#coach_mark_backdrop{
    display: none;
    z-index: 10000;

    background-color: rgba(0, 0, 0, 0.7);
}

#coach_mark_backdrop .inner{
    width: 100%;
    height: 100%;
}

#coach_mark_inner{
    position: relative;
    overflow: hidden;
}

#coach_mark_inner_layer{
    display: none;
    z-index: 10002;

    background-color: transparent;
}

.coach-mark-overlay{
    display: none;
    position: absolute;
    z-index: 10001;
}

/*=================================================
				타이틀 모음
=================================================*/
/*****#####===== 페이지 타이틀 =====#####*****/
.page-title-wrap {
    margin: 2rem 0;
}

.page-title-wrap .page-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.page-title-wrap .page-subtitle {
    padding-top: 1.375rem;

    font-size: 1rem;
    font-weight: 500;
    color: #999999;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .page-title-wrap .page-title {
        font-size: 1.5rem;
        font-weight: 700;
    }
}

/*****##### 항목 타이틀 #####*****/
.title-wrap {
    margin-bottom: 0.833rem;

    font-size: 1.333rem;
    font-weight: 500;
    color: #555555;
}

/*=================================================
                당고메뉴
=================================================*/
#gnb .popover {
    border-radius: 0.5rem;

    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

#gnb .popover .arrow {
    display: none;
}

#gnb .popover .chat-popover-item {
    padding: 0.75rem 3rem;

    font-size: 1.167rem;
    color: #555555;
}

#gnb .popover .chat-popover-item:not(:last-child) {
    border-bottom: 1px solid #f4f4f4;
}

.dango_popover .popover-item {
    padding: 0.833rem 2.5rem;

    text-align: center;
}

.dango_popover .popover-item:not(:last-child) {
    border-bottom: 1px solid #f4f4f4;
}


/*=================================================
                구분 라인
=================================================*/
.each-line {
    position: relative;
}

.each-line:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;

    width: 1px;
    height: 0.677rem;

    background-color: #cccccc;

    transform: translateY(-50%);
}

/*================================================
                빈 리스트
=================================================*/
.empty-wrap {
    font-size: 1rem;
    color: #999999;
}

/*****#####===== 사이즈 =====#####*****/
.empty-wrap[data-size='10'] {
    height: 10vh;
}

.empty-wrap[data-size='20'] {
    height: 20vh;
}

.empty-wrap[data-size='30'] {
    height: 30vh;
}

.empty-wrap[data-size='40'] {
    height: 40vh;
}

.empty-wrap[data-size='50'] {
    height: 50vh;
}

.empty-wrap[data-size='60'] {
    height: 60vh;
}

.empty-wrap[data-size='70'] {
    height: 70vh;
}

.empty-wrap[data-size='80'] {
    height: 80vh;
}

.empty-wrap[data-size='90'] {
    height: 90vh;
}

.empty-wrap[data-size='100'] {
    height: 100vh;
}

/*****#####===== 미디어 쿼리 =====#####*****/
@media (min-width: 100px) and (max-width: 767.98px) {
    .empty-wrap {
        font-size: 1.25rem;

        border-bottom: none;
    }
}

/*=================================================
                float_menu
=================================================*/
#float-menu {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 0.833rem 0;

    background-color: #ffffff;

    border-radius: 0.667rem 0.667rem 0 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);

    z-index: 999;
}

#float-menu .menu-item .item-icon {
    width: 2rem;
    height: 2rem;
    margin: auto auto 0.417rem;
}

#float-menu .menu-item .item-title {
    font-weight: 500;
    text-align: center;
    color: #999999;
}

#float-menu .menu-item.active .item-title {
    color: #222222;
}

/*****#####===== 토글 메뉴 =====#####*****/
#float-menu .menu-item[data-type="toggle"] .item-icon {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;

    width: 5.5rem;
    height: 5.5rem;
    margin: 0;

    background-color: #3a65f3;
    border-radius: 2.833rem;
    cursor: pointer;
    z-index: 1;
}

#float-menu .menu-item[data-type="toggle"].hide .item-icon .icon[data-type="open"] {
    display: block;
}

#float-menu .menu-item[data-type="toggle"] .item-icon .icon[data-type="open"] {
    display: none;
}

#float-menu .menu-item[data-type="toggle"].hide .item-icon .icon[data-type="close"] {
    display: none;
}

#float-menu .menu-item[data-type="toggle"] .item-icon .icon[data-type="close"] {
    display: block;
}

#float-menu .menu-item[data-type="toggle"] .toggle-wrap {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5.5rem;
    height: 5.5rem;
}

#float-menu .menu-item[data-type="toggle"] .item-toggle {
    position: absolute;

    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 5.5rem;
    padding: 0.5rem;

    background-color: #3a65f3;
    border-radius: 2.833rem;
    overflow: hidden;

    z-index: 0;

    transition: height 0.5s ease;
}

#float-menu .menu-item[data-type="toggle"].hide .item-toggle {
    height: 5.5rem !important;
}

#float-menu .menu-item[data-type="toggle"] .item-toggle .toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4.5rem;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
}

#float-menu .menu-item[data-type="toggle"] .item-toggle .toggle:not(:first-child) {
    margin-top: 0.5rem;
}

/*================================================
                탭 메뉴
=================================================*/
.tab-menu .tab-item {
    text-align: center;
}

/*****#####===== basic =====#####*****/
.tab-menu[data-type="basic"] {
    margin-bottom: 1.5rem;

    white-space: nowrap;
    overflow-x: scroll;
}

.tab-menu[data-type="basic"].scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tab-menu[data-type="basic"]::-webkit-scrollbar {
    overflow: hidden;
}

.tab-menu[data-type="basic"] .tab-item {
    font-size: 1rem;
    font-weight: 500;
    color: #999999;
}

.tab-menu[data-type="basic"] .tab-item:not(:last-child) {
    margin-right: 1rem;
}

.tab-menu[data-type="basic"] .tab-item.active {
    font-weight: 700;
    color: #3a65f3;
}

/*****#####===== app =====#####*****/
.tab-menu[data-type="app"] {
    border-bottom: 1px solid #dddddd;
}

.tab-menu[data-type="app"] .tab-item {
    display: block;

    padding: 1rem 0 0.833rem;

    font-size: 1rem;
    font-weight: 500;
    line-height: 1.63em;
    color: #999999;
}

.tab-menu[data-type="app"] .tab-item.active {
    color: #3a65f3;

    border-bottom: 2px solid #3a65f3;
}

/*****#####===== 미디어 쿼리 =====#####*****/
@media (min-width: 100px) and (max-width: 767.98px) {
    /*****##### basic #####*****/
    .tab-menu[data-type="basic"] .tab-item {
        font-size: 1.5rem;
    }

    .tab-menu[data-type="basic"] .tab-item.active {
        font-weight: 500;
        color: #222222;
    }

    /*****##### app #####*****/
    .tab-menu[data-type="app"] .tab-item {
        font-size: 1.333rem;
    }
}

/*****#####===== active-btn =====#####*****/
.active-btn {
    display: block;

    width: 100%;
}

.active-btn input~.state label {
    display: block;

    width: 100%;
    padding: 1.25rem 1rem;

    font-size: 1.167rem;
    font-weight: 400;
    text-align: center;
    text-indent: 0;
    color: #999999;

    border: 1px solid #dddddd;
    border-radius: 0.313rem;
}

.active-btn input:checked~.state label {
    color: #3a65f3;

    background-color: #e1e7f8;

    border: 1px solid #3a65f3;
}

.active-btn .state label:before,
.active-btn .state label:after {
    display: none;
}

/*================================================
                약관 동의
=================================================*/
.terms-box {
    border: 1px solid #cccccc;
    border-radius: 0.333rem;
}

.terms-item-wrap {
    padding: 1rem;
}

.terms-item-wrap[data-type="all"] {
    border-bottom: 1px solid #cccccc;
}

.terms-item:not(:last-child) {
    margin-bottom: 1rem;
}

.terms-body {
    display: none;

    max-height: 13.333rem;
    padding: 1rem;
    margin-top: 0.833rem;

    color: #555555;

    border: 1px solid #dddddd;

    overflow-x: hidden;
    overflow-y: auto;
}

.terms-body.show {
    display: block;
}

.term-show-btn {
    text-align: right;
    letter-spacing: -0.44px;

    border-bottom: 1px solid #cccccc;
}

/*=================================================
				리스트
=================================================*/
.lists-item {
    display: block;
}

/*****#####===== 카드형 리스트 =====#####*****/
.lists-wrap[data-type="card"] .lists-item {
    margin-bottom: 1.5rem;
}

.lists-wrap[data-type="card"] .lists-item .item-status {
    margin-bottom: 0.875rem;
}

.lists-wrap[data-type="card"] .lists-item .item-status > span:not(:last-child) {
    margin-right: 0.625rem;
}

.lists-wrap[data-type="card"] .lists-item .item-title-wrap {
    margin-bottom: 1rem;
    padding-bottom: 1rem;

    border-bottom: 1px solid #dddddd;
}

.lists-wrap[data-type="card"] .lists-item .item-title {
    margin-bottom: 0.75rem;
}

.lists-wrap[data-type="card"] .lists-item .item-subtitle {
    margin-bottom: 0.667rem;
}

.lists-wrap[data-type="card"] .lists-item .item-img {
    border-radius: 0.25rem;
    overflow: hidden;
}

.lists-wrap[data-type="card"] .lists-item .item-info:not(:last-child) {
    margin-bottom: 0.5rem;
}

.lists-wrap[data-type="card"] .lists-item .item-tag-wrap {
    margin-top: 1rem;
}

.lists-wrap[data-type="card"] .lists-item .item-tag:not(:last-child) {
    margin-right: 0.5rem;
}

.lists-wrap[data-type="card"] .lists-item .btn-wrap .each-col:has(.btn):not(:last-child) {
    margin-bottom: 0.625rem;
}

.lists-wrap[data-type="card"] .lists-item .rating-star-wrap {
    margin-bottom: 0.625rem;
}

.lists-wrap[data-type="card"] .lists-item .btn-wrap {
    margin-top: 1rem;
}

/*****#####===== 테이블형 리스트 =====#####*****/
.lists-header {
    padding: 0.75rem 1.25rem;

    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;

    background-color: #3a65f3;
    border-radius: 0.25rem 0.25rem 0 0;
}

.lists-wrap[data-type="table"] .lists-item {
    padding: 1rem 1.25rem;

    border-bottom: 1px solid #dddddd;
}

.lists-wrap[data-type="table"] .lists-item .item-type,
.lists-wrap[data-type="table"] .lists-item .item-title {
    font-size: 0.875rem;
}

.lists-wrap[data-type="table"] .lists-item .item-date {
    font-size: 0.875rem;
    text-align: center;
    color: #555555;
}

.lists-wrap[data-type="table"] .lists-item .collapse-btn {
    display: inline-block;

    transition: all .5s;
}

.lists-wrap[data-type="table"] .lists-item[aria-expanded="true"] .collapse-btn {
    transform: rotate(180deg);
}

.lists-wrap[data-type="table"] .lists-content-wrap {
    padding: 1rem 3.375rem;

    font-size: 0.875rem;
    color: #555555;

    background-color: #f4f4f4;
}

.lists-wrap[data-type="table"] .form-control {
    height: auto;
}

.lists-wrap[data-type="table"] .table thead {
    padding: 0.75rem 1.25rem;

    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;

    background-color: #3a65f3;
    border-radius: 0.25rem 0.25rem 0 0;
}

.lists-wrap[data-type="table"] .table .lists-row {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #dddddd;
}

/*****#####===== 갤러리형 리스트 =====#####*****/
.lists-wrap[data-type="gallery"] .item-img {
    margin-bottom: 0.625rem;
}

.lists-wrap[data-type="gallery"] .item-title {
    margin-bottom: 0.625rem;
}

.lists-wrap[data-type="gallery"] .item-tag-wrap {
    margin-bottom: 0.5rem;
}

/*****#####===== 미디어 쿼리 =====#####*****/
@media (min-width: 100px) and (max-width: 767.98px) {
    /*****##### 카드형 리스트 #####*****/
    .lists-wrap[data-type="card"] .lists-item {
        margin-bottom: 1rem;
    }

    .lists-wrap[data-type="card"] .lists-item .item-status {
        margin-bottom: 1.167rem;
    }

    .lists-wrap[data-type="card"] .lists-item .item-status > span:not(:last-child) {
        margin-right: 0.833rem;
    }

    .lists-wrap[data-type="card"] .lists-item .item-title {
        margin-bottom: 1rem;
    }

    .lists-wrap[data-type="card"] .lists-item .item-info:not(:last-child) {
        margin-bottom: 0.667rem;
    }

    .lists-wrap[data-type="card"] .lists-item .btn-wrap {
        margin-top: 1rem;
    }

    .lists-wrap[data-type="card"] .lists-item .btn-wrap .each-col:has(.btn):not(:last-child) {
        margin-bottom: 0;
    }

    /*****##### 갤러리형 리스트 #####*****/
    .lists-wrap[data-type="gallery"] .lists-item {
        padding: 1.333rem 0;
    }

    .lists-wrap[data-type="gallery"] .lists-item:first-of-type {
        padding-top: 0;
    }

    .lists-wrap[data-type="gallery"] .item-img {
        margin-bottom: 0.833rem;
    }

    .lists-wrap[data-type="gallery"] .item-title {
        margin-bottom: 0.833rem;
    }

    .lists-wrap[data-type="gallery"] .item-tag-wrap {
        margin-bottom: 0.667rem;
    }
}

/*=================================================
				페이지 헤더
=================================================*/
.page-header {
    text-align: center;

    margin-bottom: 1.5rem;
}

[id^="user-"] .page-header {
    text-align: center;

    margin-bottom: 3.125rem;
}

.page-header .header-title:has(+.header-subtitle) {
    margin-bottom: 1.375rem;
}

/*=================================================
				페이지 타이틀
=================================================*/
.page-title-wrap {
    margin-bottom: 2rem;
}

.page-title-wrap .page-title {
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .page-title-wrap {
        margin-bottom: 1.667rem;
    }
}

/*=================================================
				라인 타이틀
=================================================*/
.line-title-wrap {
    position: relative;

    text-align: center;
}

.line-title-wrap:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 1px;

    background-color: #d9d9d9;

    transform: translate(-50%, -50%);
}

.line-title-wrap .line-title {
    display: inline-block;
    position: relative;

    padding: 0 1rem;

    text-align: center;

    background-color: #ffffff;
}

/*=================================================
				밑줄 타이틀
=================================================*/
.underline-title-wrap {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;

    border-bottom: 1px solid #999999;
}

.underline-title-wrap .underline-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1em;
}

.underline-title-wrap .btn-sm {
    padding: 0.333rem 1rem;
}

/*=================================================
				콘텐츠 박스
=================================================*/
.content-box {
    background-color: #ffffff;
    border-radius: 0.625rem;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
}

.content-box:not(:last-child) {
    margin-bottom: 1.5rem;
}

.content-box-title {
    padding-bottom: 1rem;

    font-size: 1.125rem;
    font-weight: 700;
}

/*****#####===== 컨텐츠 그룹 =====#####*****/
.content-group-wrap:not(:last-child) {
    margin-bottom: 1.5rem;
}


/*****#####===== 미디어 쿼리 =====#####*****/
@media (min-width: 100px) and (max-width: 767.98px) {
    .content-box {
        border-radius: 0.333rem;
    }
}

/*=================================================
				콘텐츠 타이틀
=================================================*/
.content-title-wrap {
    padding: 1.5rem;

    border-bottom: 1px solid #dddddd;
}

.content-title-wrap .content-title {
    font-size: 1.125rem;
    font-weight: 700;
}

.content-title-wrap .content-title > span {
    margin-left: 0.75rem;

    font-size: 0.75rem;
    font-weight: 400;
    color: #555555;
}

.content-title-wrap .content-desc {
    margin-top: 0.375rem;

    font-size: 0.875rem;
    color: #999999;
}

.content-title-wrap.button-title{
    padding: 0.5rem 1rem;
}

.content-title-wrap.button-title .content-title{
    display: flex;
    justify-content: space-between;
}

.content-title-wrap.button-title .content-title .btn-link{
    font-size: inherit;
    font-weight: inherit;
}

/*****#####===== 미디어 쿼리 =====#####*****/
@media (min-width: 100px) and (max-width: 767.98px) {
    .content-title-wrap .content-title {
        font-size: 1.5rem;
    }

    .content-title-wrap .content-desc {
        font-size: 1rem;
    }
}

/*=================================================
				콘텐츠 내용
=================================================*/
.content-content-wrap {
    padding: 1.5rem;
}

/*=================================================
				콘텐츠 푸터
=================================================*/
.content-footer-wrap {
    padding: 0 1.5rem 1.5rem;

    text-align: right;
}

/*=================================================
                네비게이션
=================================================*/
#gnb[data-type="app"] .gnb-wrap {
    position: relative;

    padding: 1.333rem 0;

    background-color: #ffffff;

    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

#gnb[data-type="app"] .curr-nav-title {
    font-size: 1.333rem;
    font-weight: 700;
    text-align: center;
}

#gnb[data-type="app"] .curr-back-btn {
    position: absolute;
    top: 50%;
    left: 1.333rem;

    transform: translateY(-50%);
}

#gnb[data-type="app"] .curr-setting-btn {
    position: absolute;
    top: 50%;
    right: 1.333rem;

    transform: translateY(-50%);
}

#gnb[data-type="app"] .gnb-wrap[user-type="mgr"] {
    padding: 0.667rem 0;
}

#gnb[data-type="app"] .gnb-wrap[user-type="mgr"] .curr-profile-wrap {
    display: flex;
    align-items: center;
    gap: 0.833rem;
}

#gnb[data-type="app"] .gnb-wrap[user-type="mgr"] .curr-profile-wrap .profile-img {
    width: 3.333rem;
}

#gnb[data-type="app"] .gnb-wrap[user-type="mgr"] .curr-btn-wrap {
    position: absolute;
    top: 50%;
    right: 1.333rem;

    transform: translateY(-50%);
}

.gnb-wrap[data-type="sub"] .gnb-title {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

/*=================================================
                뷰 컨텐츠
=================================================*/
/*****#####===== 뷰 컨텐츠 =====#####*****/
.view-content-box {
    padding: 1rem 1.167rem;

    border: 1px solid #dddddd;
    border-radius: 0.25rem;
}

.view-content-wrap:not(:last-child) {
    margin-bottom: 2rem;
}

.view-content-wrap img {
    max-width: 100%;
}

.view-content-wrap .content-header {
    padding-bottom: 1.5rem;

    border-bottom: 1px solid #dddddd;
}

.view-content-wrap .content-body {
    padding-top: 1.5rem;
}

.view-content-wrap:not(.inner) .content-header,
.view-content-wrap:not(.inner) .content-body {
    padding: 1.5rem;
}

.shadow-box:not(.inner) .content-header,
.shadow-box:not(.inner) .content-body {
    padding: 1.5rem;
}

.content-header .item-info {
    margin-top: 0.375rem;
}

.content-header .item-info > span:not(:last-child)::after {
    content: '|';

    padding: 0 0.5rem;
}

.view-content-wrap .content-item:not(:last-child) {
    margin-bottom: 1.625rem;
}

.view-content-wrap .content-item .item-title {
    margin-bottom: 0.625rem;

    font-size: 1rem;
    font-weight: 500;
}

.view-content-wrap .content-item .item-content {
    font-size: 0.875rem;
    color: #555555;
}

.view-content-wrap .content-item .item-content-box {
    padding: 0.75rem 0.875rem;

    font-size: 0.875rem;
    color: #555555;

    border: 1px solid #dddddd;
    border-radius: 0.25rem;
    overflow: hidden;
}

@media (min-width: 100px) and (max-width: 767.98px) {
    .view-content-wrap .content-item .item-title {
        margin-bottom: 0.833rem;

        font-size: 1.333rem;
    }

    .view-content-wrap .content-item .item-content {
        font-size: 1.167rem;
    }

    .view-content-wrap:not(.inner) .content-header,
    .view-content-wrap:not(.inner) .content-body {
        padding: 1.667rem 1rem;
    }

    .view-content-wrap .content-item .item-content-box {
        padding: 1rem 1.167rem;

        font-size: 1.167rem;
    }

    .content-header .item-info {
        margin-top: 1rem;
    }

    .shadow-box:not(.inner) .content-header {
        padding: 0 0 2rem 0;
    }

    .shadow-box:not(.inner) .content-body {
        padding: 2rem 0 0 0;
    }
}

/*****##### 뷰 타이틀 #####*****/
.view-title-wrap {
    margin: 0;
    padding-bottom: 2rem;
}

.view-title-wrap.underline {
    margin-bottom: 1.333rem;
    padding-bottom: 1.333rem;

    border-bottom: 1px solid #dddddd;
}

.view-title-wrap[data-type='image'] {
    padding-top: 1.333rem;
}

.view-title-wrap .view-date {
    padding-top: 0.667rem;
}

/*****##### 뷰 컨텐츠 타이틀 #####*****/
.view-content-title {
    margin-bottom: 0.833rem;

    font-size: 1.333rem;
    font-weight: 500;
}

/*****#####===== 첨부파일 항목 =====#####*****/
.attach-item-wrap:not(:last-child) {
    margin-bottom: 0.667rem;
}

.attach-item-wrap .attach-item {
    position: relative;

    flex-direction: row;
}

.attach-item .file-name {
    display: inline-block;
    position: relative;

    width: 79%;
    padding: 0 0.667rem 0 2.75rem;

    font-size: 0.875rem;
    font-weight: 400;
    color: #555555;

    overflow: hidden;
}

.attach-item svg {
    margin-right: 0.75rem;
}

.attach-item .download-btn {
    position: absolute;
    top: 50%;
    right: 1rem;

    transform: translateY(-50%);

    width: 1.5rem;
    height: 1.5rem;

    text-indent: -999999rem;

    background: url('/img/app/solution/icon_download.svg') center center no-repeat;
    background-size: contain;

    z-index: 998;
}

/*****#####===== 미디어쿼리 =====#####*****/
/***** sm / xs *****/
@media (min-width: 100px) and (max-width: 767.98px) {
    .attach-item .file-name {
        font-size: 1.167rem;
    }
}

/*****#####===== 섹션 =====#####*****/
section:not(:last-child) .section-wrap[data-layout^="section"] {
    margin-bottom: 4.167rem;
}

.section-wrap .each-col:not(:last-child) .card-item {
    margin-bottom: 2rem;
}

/*****#####===== 카드 항목 =====#####*****/
.card-item {
    padding: 1.333rem;

    background-color: #ffffff;

    border-radius: 0.333rem;
}

.card-item .ratio-content {
    border-radius: 0.333rem;
}

/*================================================
			채팅
=================================================*/
/*****#####===== lists =====#####*****/
.chat-lists-item .lists-item {
    padding: 2rem 0;

    border-bottom: 1px solid #dddddd;
}

.chat-lists-item .lists-item .item-badge {
    width: 1.833rem;
    height: 1.833rem;

    background-color: #ff4800;
    border-radius: 100%;
}

.chat-lists-item .item-badge .badge {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #ffffff;
}

/*****#####===== room =====#####*****/
#chat-room-page {
    padding: 0;
}

.chat_wrap .message_wrap {
    min-height: calc(100vh - 6.583rem - 9.583rem);
    padding: 0 1.333rem 6.583rem;

    background-color: #e1e7f8;
}

.chat_wrap .send_text_wrap {
    padding: 1.333rem 0;
}

.chat_wrap .send-message-wrap {
    position: relative;
}

.chat_wrap .send_text {
    padding: 1rem;

    background-color: #fafafa;
    border-color: #fafafa;
}

.chat_wrap .send_text_btn {
    position: absolute;
    top: 50%;
    right: 0.667rem;

    transform: translateY(-50%);
}

.chat_wrap .chat_bubble_wrap {
    display: block;

    padding: 0.25rem 0;
}

.chat_wrap .chat_bubble_wrap.my_chat {
    text-align: right;
}

.chat_wrap .chat_bubble_wrap.my_chat .bubble-profile {
    display: none;
}

.chat_wrap .chat_bubble_wrap .bubble_text {
    display: inline-block;
    padding: 1.167rem 1.333rem;

    font-size: 1.167rem;

    background-color: #ffffff;
    border-radius: 2rem;
    border: none;
}

.chat_wrap .chat_bubble_wrap.my_chat .bubble_text {
    background-color: #3a65f3;
}

.chat_wrap .chat_bubble_wrap.my_chat+.chat_bubble_wrap:not(.my_chat),
.chat_wrap .chat_bubble_wrap:not(.my_chat)+.chat_bubble_wrap.my_chat {
    margin-bottom: 1.333rem;
}

.chat_bubble_wrap .bubble_date {
    margin-top: 0.5rem;
    padding: 0;

    color: #999999;
}

.chat_wrap .date_divider {
    position: relative;

    padding: 2.5rem 0;

    color: #999999;
}

.chat_wrap .date_divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dddddd;
    transform: translateY(-50%);
}

.chat_wrap .date_divider>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding: 0 2.083rem;

    background-color: #e1e7f8;
}

/*****#####===== 채팅 네비 =====#####*****/
#gnb[data-type="app"] .gnb-wrap[data-type="chat"] {
    padding: 0;
}

.gnb-wrap[data-type="chat"] .gnb-content {
    padding: 1.333rem 0;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gnb-wrap[data-type="chat"] .gnb-title {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.gnb-wrap[data-type="chat"] .gnb-info {
    padding: 1.333rem 0;
}

.gnb-wrap[data-type="chat"] .info-wrap .info-title {
    padding: 0.417rem 0 1rem;
}

.gnb-wrap[data-type="chat"] .info-wrap .info-desc {
    padding-bottom: 0.667rem;
}

.gnb-wrap[data-type="chat"] .btn-wrap {
    margin-top: 1rem;
}

/*****#####===== 검색 =====#####*****/
.srch-multi-wrap {
    margin-bottom: 1.875rem;
}

.srch-multi-wrap .form-group {
    margin-bottom: 1.937rem;
}

.srch-multi-wrap .form-control-sm {
    height: auto;;
    padding: 0.625rem;

    font-size: 0.875rem;
    color: #555555;
}

.srch-multi-wrap .col-form-label {
    padding: 0 0 0.437rem 0;
}

.srch-multi-wrap .collapse-btn {
    padding: 0 0 0.125rem;

    font-size: 1rem;
    font-weight: 500;
    color: #999999;

    border-bottom: 1px solid #999999;
}

.srch-multi-wrap .active-btn input~.state label {
    padding: 0.875rem 0.625rem;
}

/*================================================
            [Controller] 기타
=================================================*/
/*****#####====== 앱 리스트 항목 ======#####*****/
.lists-item-wrap {
    padding: 1.333rem 0;

    border-bottom: 1px solid #dddddd;
}

.lists-item-wrap .app-item-img {
    margin-bottom: 1.333rem;
}

.lists-item-wrap .btn-wrap {
    margin-top: 1rem;
}


/*=================================================
			모바일 버튼
=================================================*/
.rotate-btn-wrap{
    position: absolute;
    top: 50%;
    right: 15px;

    width: 2.5rem;
    height: 3.3rem;
    padding: 1rem 0.5rem;

    cursor:pointer;

    transform: translateY(-50%);
}

.rotate-btn-wrap .ratio-box {
    height: 100%;
    overflow: visible;
}

.rotate-btn{
    position: relative;

    margin: auto;
}

.rotate-btn span{
    position: absolute;
    left:0;

    width:100%;
    height:2px;

    background-color:#333333;

    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.rotate-btn span.top{
    top:0;
}

.rotate-btn span.middle{
    top:50%;

    opacity: 1;

    transform: translateY(-50%)
}

.rotate-btn span.bottom{
    bottom:0
}

/***** show *****/
.rotate-btn-wrap.show span.top{
    top:50%;

    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.rotate-btn-wrap.show span.middle{
    opacity: 0;
}

.rotate-btn-wrap.show span.bottom{
    top:50%;

    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
