	/* 서브메뉴 */


	/* 토트는 핑계고 내용 */

	.talk-write-wrap {
		margin-top: 25px;
	}

	.talk-title {
		margin: 0 0 24px;
		font-size: 26px;
		font-weight: 700;
		color: #000;
	}

	/* 스와이프 가능한 영역 */
	.talk-vote-wrap{
		/*touch-action: pan-y;
		transition: transform .22s ease, opacity .22s ease;*/
	}

	/* 드래그 중 살짝 따라오는 느낌 */
	.swipe-dragging {
		transition: none !important;
	}

	/* 페이지 전환 애니메이션 */
	.swipe-fade-out {
		opacity: .25;
		transform: translateX(-12px);
	}

	.swipe-fade-in {
		opacity: 1;
		transform: translateX(0);
	}

	/* 첫 방문 힌트 */
	.swipe-hint {
		display:none;
		margin:12px auto 0;
		text-align:center;
		font-size:13px;
		color:#777;
	}

	@media (max-width:767px) {
		.swipe-hint {
			display:block;
		}
	}

	/* ===============================
	   TALK VOTE WRAP
	=============================== */

	.talk-vote-head {
		position:relative;
		display:flex;
		align-items:center;
		justify-content:space-between;
		margin-bottom:35px;
		z-index:2;
	}

	.talk-vote-title {
		margin:0;
		color:#608d44;
		font-family:'Paperlogy-6SemiBold';
		font-size:40px;
	}

	.talk-vote-head > .talk-vote-more {
		display:inline-block;
		position:absolute;
		right:0;
		padding:10px 20px;
		border:1px solid #4e4e4e;
		border-radius:50px;
		text-align:center;
		color:#4e4e4e;
		font-size:15px;
		font-family:'Paperlogy-5Medium';
		overflow:hidden;
		z-index:1;
		transition:color .3s;
	}

	.talk-vote-head > .talk-vote-more:after {
		content:'';
		display:inline-block;
		width:11px;
		height:11px;
		margin-left:10px;
		background:url('/user/images/main/ico_more.png') right center no-repeat;
	}

	.talk-vote-head > .talk-vote-more:before {
		content:'';
		position:absolute;
		top:0;
		left:0;
		width:0;
		height:100%;
		background:#608d44;
		z-index:-1;
		transition:width .3s ease;
	}

	.talk-vote-head > .talk-vote-more:hover:before {
		width:100%;
		border:1px solid #608d44;
	}

	.talk-vote-head > .talk-vote-more:hover {
		border:1px solid #608d44;
		color:#fff;
	}

	.talk-vote-head > .talk-vote-more:hover:after {
		background:url('/user/images/main/ico_more_ov.png') right center no-repeat;
	}

	/* 리스트 */

	.talk-vote-wrap {
		width:100%;
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:22px;
	}

	@media (max-width:1199px){
        .talk-vote-wrap{
            grid-template-columns:repeat(3,1fr);
            gap:20px;
        }
    }

    @media (max-width:991px){
        .talk-vote-wrap{
            grid-template-columns:repeat(2,1fr);
        }
    }

	@media (max-width:767px) {
        .talk-vote-wrap{
            grid-template-columns:repeat(1,1fr);
        }
    }

	.talk-vote-card {
		display:block;
		background:#fff;
		border-radius:20px;
		overflow:hidden;
		text-decoration:none;
		color:inherit;
		box-shadow:0 2px 10px rgba(0,0,0,0.05);
	}

	.talk-vote-thumb {
		width:100%;
		aspect-ratio:16 / 9;
		overflow:hidden;
		background:#f4f8fb;
	}

	.talk-vote-thumb img {
		width:100%;
		/*height:100%;*/
		object-fit:cover;
		display:block;
		transition:transform .2s ease;
	}

	.talk-vote-card:hover .talk-vote-thumb img {
		transform:scale(1.08);
	}

	.talk-vote-card-top {
		display:flex;
		flex-wrap:wrap;
		padding:20px 20px 0;
	}

	.talk-vote-card-top span {
		padding:0 5px;
		min-width:3.75rem;
		height:30px;
		display:inline-flex;
		justify-content:center;
		align-items:center;
		text-align:center;
		font-size:14px;
		font-weight:500;
		border:1px solid #252525;
	}

	/* 투표예정 */
	.talk-vote-state-before {
		background:#7ac943;
		border-color:#e85b9c;
		color:#fff;
	}

	/* 투표기간 */
	.talk-vote-state-label {
		background:#e85b9c;
		border-color:#e85b9c;
		color:#fff;
	}

	/* 투표마감 */
	.talk-vote-state-end {
		background:#8d8d8d;
		border-color:#8d8d8d;
		color:#fff;
	}

	.talk-vote-card-bottom {
		padding:10px 20px 20px;
		color:#333;
		min-height:90px;
	}

	.talk-vote-card-title {
		font-size:16px;
		font-weight:500;
		margin-bottom:6px;
		line-height:1.4;
		word-break:keep-all;
	}

	.talk-vote-info p {
		margin:0;
		font-size:14px;
		line-height:1.6;
		color:#666;
	}

	/* pager */

	.talk-vote-pager {
		position:relative;
		z-index:5;
		display:flex;
		justify-content:center;
		align-items:center;
		gap:8px;
		margin-top:20px;
	}

	.talk-vote-page-btn {
		width:34px;
		height:34px;
		border-radius:50%;
		border:1px solid #ddd;
		background:#fff;
		color:#333;
		font-size:14px;
		font-weight:600;
		cursor:pointer;
	}

	.talk-vote-page-btn.active {
		background:#7ac943;
		border-color:#7ac943;
		color:#fff;
	}

	.talk-vote-page-dot {
		display:inline-flex;
		align-items:center;
		justify-content:center;
		height:34px;
		padding:0 4px;
		color:#aaa;
		font-size:13px;
	}

	/* swipe */

	.talk-vote-swipe-dragging {
		transition:none !important;
	}

	.talk-vote-swipe-fade-out {
		opacity:.25;
		transform:translateX(-12px);
	}

	.talk-vote-swipe-fade-in {
		opacity:1;
		transform:translateX(0);
	}

	.talk-vote-swipe-hint {
		display:none;
		margin:12px auto 0;
		text-align:center;
		font-size:13px;
		color:#777;
	}

	@media (max-width:767px) {

		.talk-vote-head {
			display:block;
			margin-bottom:22px;
			padding-bottom:48px;
		}

		.talk-vote-title {
			font-size:30px;
			line-height:1.35;
			margin-bottom:10px;
		}

		.talk-vote-swipe-hint {
			display:block;
		}

	}

	/* 상세페이지 */

	.talk-view-wrap{
		margin-top:20px;
		/*border:1px solid #dddddd;*/
		background:#fff;
	}

	.talk-view-info-box{
		padding:22px 28px 40px;
		background: #fff;
		border-radius: 20px;
		padding: 20px 22px;
		box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
		border: 1px solid #edf2fa;
	}

	.talk-view-info-top{
		display:flex;
		justify-content:space-between;
		align-items:flex-start;
		gap:20px;
		margin-bottom:30px;
	}

	.talk-view-info-title{
		font-size:18px;
		font-weight:700;
		color:#222;
		line-height:1.4;
		letter-spacing:-0.5px;
	}

	.talk-view-right{
		text-align:right;
	}

	.talk-view-state{
		display:inline-block;
		padding:6px 12px;
		border-radius:30px;
		font-size:12px;
		font-weight:600;
		color:#fff;
		margin-bottom:10px;
	}

	.talk-view-state-before{
		background:#5bc0de;
	}

	.talk-view-state-ing{
		background:#e83e8c;
	}

	.talk-view-state-end{
		background:#999;
	}

	.talk-view-meta{
		font-size:13px;
		color:#777;
		line-height:1.8;
	}

	.talk-view-meta span{
		display:inline-block;
		margin-left:10px;
		position:relative;
	}

	.talk-view-meta span:before{
		content:"|";
		position:absolute;
		left:-8px;
		top:0;
		color:#d2d2d2;
		font-size:11px;
	}

	.talk-view-meta span:first-child:before{
		display:none;
	}

	.talk-view-content{
		font-size:15px;
		line-height:2;
		color:#333;
		letter-spacing:-0.2px;
	}

	/* 본문 이미지 */
	.talk-view-content img{
		display:block;
		width:auto !important;
		max-width:min(1128px, 100%) !important;
		height:auto !important;
		margin:0 auto;
	}

	/* 첨부파일 아이콘은 제외 */
	.talk-view-content .list-group img{
		display:inline !important;
		width:auto !important;
		max-width:none !important;
		height:auto !important;
		margin:0 !important;
		vertical-align:middle;
	}

	.talk-view-content strong{
		/*font-weight:700;
		color:#111;*/
	}

	@media (max-width:768px){

		.talk-view-info-box{
			padding:18px 18px 28px;
		}

		.talk-view-info-top{
			display:block;
			margin-bottom:22px;
		}

		.talk-view-info-title{
			font-size:22px;
		}

		.talk-view-right{
			text-align:left;
			margin-top:12px;
		}

		.talk-view-meta span{
			margin-left:0;
			margin-right:10px;
		}

		.talk-view-meta span:before{
			display:none;
		}

		.talk-view-content{
			font-size:15px;
			line-height:1.9;
		}
	}

	/* 목록 버튼 */

	.btn-detail-list{
		display:inline-flex;
		align-items:center;
		justify-content:center;
		gap:8px;

		min-width:180px;
		height:54px;
		padding:0 34px;

		border-radius:60px;

		background:linear-gradient(135deg,#58cdf5 0%, #32bbed 45%, #1fa8da 100%);
		color:#fff !important;

		font-size:17px;
		font-weight:700;
		text-decoration:none !important;

		box-shadow:0 10px 24px rgba(50,187,237,.24);

		transition:all .2s ease;
	}

	.btn-detail-list:hover{
		transform:translateY(-2px);

		background:linear-gradient(135deg,#69d5f8 0%, #43c4f3 45%, #27afe0 100%);

		box-shadow:0 14px 30px rgba(50,187,237,.34);

		color:#fff !important;
	}

	.btn-detail-list .glyphicon{
		font-size:15px;
	}

	/* 모바일 */
	@media screen and (max-width:768px){

		.btn-detail-list{
			width:100%;
			height:50px;
			font-size:16px;
		}
	}

	/* 필터 */
	.talk-pg-filter{width:100%;display:flex; flex-wrap:wrap;align-items:center;justify-content:space-between;gap:20px;margin:35px 0 25px;}
	.talk-pg-type-tabs{flex:0 0 auto;display:flex;align-items:center;gap:8px;margin-bottom:0;}
	.talk-pg-filter-row{flex:1;width:100%;display:flex;justify-content:flex-end;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;}
	.talk-pg-filter-row::-webkit-scrollbar{display:none;}
	.talk-pg-tabs{display:flex;flex-wrap:nowrap;justify-content:flex-end;gap:8px;min-width:max-content;}
	.talk-pg-tabs a,.talk-pg-tabs button,.talk-pg-tabs .talk-pg-tab{flex-shrink:0;white-space:nowrap;}

	/* 탭 버튼 */
	.talk-pg-tab{flex-shrink:0;white-space:nowrap;border:0;background:#f3f3f3;color:#333;font-size:16px;font-weight:500;padding:10px 18px;border-radius:22px;cursor:pointer;}
	.talk-pg-tab.active{background:#7ac943;color:#fff;}
	.talk-pg-type-tab{padding:6px 14px;border-radius:20px;border:1px solid #ddd;background:#fff;font-size:13px;cursor:pointer;white-space:nowrap;}
	.talk-pg-type-tab.active{background:#7ac943;color:#fff;border-color:#7ac943;}


	@media (max-width:768px){
		.talk-pg-filter{display:block;margin:25px 0 18px;}
		.talk-pg-type-tabs{width:100%;gap:6px;margin-bottom:12px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;}
		.talk-pg-type-tabs::-webkit-scrollbar{display:none;}
		.talk-pg-filter-row{margin:0 -15px;padding:0 15px 6px;justify-content:flex-start;cursor:grab;}
		.talk-pg-tabs{justify-content:flex-start;gap:6px;padding-right:15px;}
		.talk-pg-tabs a,.pg-tabs button,.pg-tabs .pg-tab{font-size:13px;white-space:nowrap;}
		.talk-pg-tab{font-size:14px;padding:8px 12px;border:1px solid #ddd;background:#fff;}
		.talk-pg-tab.active{border-color:#7ac943;background:#7ac943;color:#fff;}
	}

	@media (max-width:480px){
		.talk-pg-list{grid-template-columns:1fr;}
		.talk-pg-tabs{gap:5px;}
		.talk-pg-tabs a,.talk-pg-tabs button,.talk-pg-tabs .talk-pg-tab{font-size:12px;}
	}

	.talk-pg-filter-row{
		flex:1;
	}

	.talk-pg-filter-row2{
		flex:0 0 100%;       /* 한 줄 모두 차지 */
		width:100%;
		margin-top:-5px;
		display:flex;
		justify-content:flex-end;   /* 오른쪽 정렬 */
	}

	.talk-pg-filter-row2::-webkit-scrollbar{
		display:none;
	}

	.talk-pg-filter-row2 .talk-pg-tabs{
		display:flex;
		flex-wrap:nowrap;
		justify-content:flex-end;
		gap:8px;
		min-width:max-content;
	}

	@media (max-width:768px){
		.talk-pg-filter-row2{
			margin:0 -15px 18px;
			padding:0 15px 6px;
			justify-content:flex-start;
			cursor:grab;
		}

		.talk-pg-filter-row2 .talk-pg-tabs{
			justify-content:flex-start;
			gap:6px;
			padding-right:15px;
		}
	}

	@media (max-width:480px){
		.talk-pg-filter-row2 .talk-pg-tabs{
			gap:5px;
		}

		.talk-pg-filter-row2 .talk-pg-tabs a,
		.talk-pg-filter-row2 .talk-pg-tabs button,
		.talk-pg-filter-row2 .talk-pg-tabs .talk-pg-tab{
			font-size:12px;
		}
	}

	/* 검색 영역 */
	.talk-pg-search{
		width:100%;
		margin:-8px 0 24px;
		display:flex;
		justify-content:flex-end;
		box-sizing:border-box;
	}

	.talk-pg-search-box{
		width:100%;
		max-width:420px;
		height:48px;
		display:flex;
		align-items:center;
		gap:8px;
		padding:0 8px 0 16px;
		border:1px solid #e1e1e1;
		border-radius:999px;
		background:#fff;
		box-shadow:0 6px 18px rgba(0,0,0,.05);
		box-sizing:border-box;
		overflow:hidden;
	}

	.talk-pg-search-icon{
		flex:0 0 auto;
		color:#8abf5a;
		font-size:15px;
	}

	.talk-pg-search-input{
		flex:1 1 auto;
		min-width:0;
		height:44px;
		border:0;
		outline:0;
		background:transparent;
		font-size:15px;
		color:#333;
	}

	.talk-pg-search-input::placeholder{
		color:#aaa;
	}

	.talk-pg-search-btn{
		flex:0 0 auto;
		min-width:72px;
		height:36px;
		border:0;
		border-radius:999px;
		background:#6ac43f;
		color:#fff;
		font-size:14px;
		font-weight:700;
		cursor:pointer;
		transition:all .2s ease;
	}

	.talk-pg-search-btn:hover{
		background:#59b732;
		transform:translateY(-1px);
	}

	/* 모바일 */
	@media (max-width:767px){

		.talk-pg-search{
			margin:4px 0 18px;
			justify-content:flex-start;
		}

		.talk-pg-search-box{
			max-width:none;
			width:100%;
			gap:6px;
			padding:0 6px 0 12px;
		}

		.talk-pg-search-input{
			font-size:14px;
		}

		.talk-pg-search-btn{
			min-width:58px;
			height:34px;
			font-size:13px;
			padding:0 12px;
		}

	}

	.talk-vote-card-top{
		display:flex;
		align-items:center;
		justify-content:space-between;
		gap:10px;
		margin-bottom:10px;
	}

	.talk-category-badge{
		display:inline-flex;
		align-items:center;
		justify-content:center;

		padding:6px 12px;
		border-radius:30px;

		background:#8cc63f;
		color:#fff;

		font-size:12px;
		font-weight:400;
		line-height:1.2;

		white-space:nowrap;
	}

	.talk-guide-box {
		display: flex;
		gap: 16px;
		align-items: flex-start;
		margin: 0 0 26px;
		padding: 22px 24px;
		border-radius: 20px;
		background: linear-gradient(135deg, #f7fbf6 0%, #eef8ec 55%, #f9fcff 100%);
		border: 1px solid #e3efe1;
		box-shadow: 0 12px 30px rgba(0, 0, 0, .055);
		word-break: keep-all;
	}

	.talk-guide-icon {
		flex: 0 0 42px;
		width: 42px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background: #63c132;
		color: #fff;
		font-size: 17px;
		box-shadow: 0 8px 18px rgba(99, 193, 50, .25);
	}

	.talk-guide-content {
		flex: 1;
		min-width: 0;
	}

	.talk-guide-content strong {
		display: block;
		margin-bottom: 8px;
		color: #1f2d1f;
		font-size: 20px;
		font-weight: 800;
		line-height: 1.35;
	}

	.talk-guide-content p {
		margin: 0;
		color: #4b5b4a;
		font-size: 16px;
		/*line-height: 1.75;*/
	}

	@media (max-width: 767px) {
		.talk-guide-box {
			gap: 12px;
			padding: 18px 16px;
			border-radius: 18px;
		}

		.talk-guide-icon {
			flex-basis: 38px;
			width: 38px;
			height: 38px;
			font-size: 15px;
		}

		.talk-guide-content strong {
			font-size: 18px;
		}

		.talk-guide-content p {
			font-size: 15px;
		}
	}

	.talk-guide-bottom{
		display:flex;
		align-items:center;
		justify-content:space-between;
		gap:24px;
		margin-top:18px;
		padding-top:18px;
		border-top:1px dashed #dbe6d7;
	}

	.talk-guide-note{
		flex:1;
		min-width:0;
	}

	.talk-guide-desc{
		margin:0 0 14px;
		font-size:14px;
		color:#6b7280;
		line-height:1.7;
	}

	.talk-guide-request{
		margin:0;
		color:#374151;
		font-size:15px;
		line-height:1.75;
	}

	.talk-guide-request strong{
		color:#ef5350;
		font-weight:800;
	}

	.youth-top-action{
		flex:0 0 auto;
	}

	.youth-post-request-btn{
		height:52px;
		padding:0 26px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		gap:8px;
		border-radius:999px;
		background:linear-gradient(135deg,#ff6b6b 0%,#ef5350 100%);
		color:#fff;
		font-size:16px;
		font-weight:800;
		text-decoration:none;
		box-shadow:0 12px 24px rgba(239,83,80,.24);
		transition:all .18s ease;
		white-space:nowrap;
	}

	.youth-post-request-btn:hover{
		color:#fff;
		text-decoration:none;
		transform:translateY(-2px);
		box-shadow:0 16px 28px rgba(239,83,80,.32);
	}

	@media (max-width:767px){

		.talk-guide-bottom{
			flex-direction:column;
			align-items:stretch;
			gap:18px;
		}

		.youth-top-action{
			width:100%;
		}

		.youth-post-request-btn{
			/*width:100%;*/
			margin-top:10px !important;
		}

	}

	.youth-top-action-bottom{
		margin-top:22px;
		display:flex;
		justify-content:center;
	}

	.youth-top-action-bottom .youth-post-request-btn{
		min-width:240px;
	}

	@media (max-width:767px){

		.youth-top-action-bottom{
			margin-top:18px;
		}

		.youth-top-action-bottom .youth-post-request-btn{
			width:100%;
			min-width:0;
		}

		.talk-guide-content p{
			line-height:1.3 !important;
		}


	}

	.youth-post-request-btn-inline{
		display:inline-flex;
		vertical-align:middle;
		margin:0 4px;
		height:42px;
		padding:0 18px;
		font-size:14px;
	}

	.talk-guide-note{
		display:flex;
		align-items:flex-start;
		justify-content:space-between;
		gap:28px;
	}

	.talk-guide-desc{
		flex:1;
		margin:0;
		font-size:14px;
		color:#6b7280;
		line-height:1.75;
	}

	.talk-guide-request{
		flex:0 0 auto;
		margin:0;
		text-align:right;
		color:#374151;
		font-size:15px;
		line-height:1.75;
	}

	.youth-post-request-btn-inline{
		display:inline-flex;
		align-items:center;
		justify-content:center;
		vertical-align:middle;
		margin:0 4px;
		height:42px;
		padding:0 18px;
		border-radius:999px;
		background:linear-gradient(135deg,#ff6b6b 0%,#ef5350 100%);
		color:#fff;
		font-size:14px;
		font-weight:800;
		text-decoration:none;
		box-shadow:0 10px 20px rgba(239,83,80,.22);
		transition:all .18s ease;
	}

	.youth-post-request-btn-inline:hover{
		color:#fff;
		text-decoration:none;
		transform:translateY(-1px);
		box-shadow:0 14px 24px rgba(239,83,80,.28);
	}

	@media (max-width:767px){

		.talk-guide-note{
			flex-direction:column;
			align-items:flex-start;
			gap:18px;
		}

		.talk-guide-request{
			width:100%;
			text-align:left;
		}

	}

	@media(max-width:768px){
		.talk-pg-filter{width:100%;overflow:hidden;}
		.talk-pg-filter-row{width:100%;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;}
		.talk-pg-tabs{display:flex;flex-wrap:nowrap;width:max-content;min-width:100%;gap:8px;}
		.talk-pg-tab{flex:0 0 auto;white-space:nowrap;}
	}

	.talk-thumb-content-preview{
        font-size:13px; /* thumb-title보다 작게 */
        line-height:1.5;
        color:#666;
        margin-bottom:10px;

        display:-webkit-box;
        -webkit-line-clamp:3;   /* 3줄 제한 */
        -webkit-box-orient:vertical;
        overflow:hidden;

        word-break:break-word;
    }

	.pdf-view-box{
        width:100%;
        margin:20px 0;
        border:1px solid #ddd;
        border-radius:12px;
        overflow:hidden;
        background:#fff;
    }

    .pdf-view-frame{
        width:100%;
        height:760px;
        border:0;
        display:block;
    }

    .pdf-view-btn-wrap{
        display:none;
        padding:12px;
        text-align:center;
        background:#f8f8f8;
    }

    .pdf-view-btn{
        display:inline-block;
        padding:10px 18px;
        border-radius:30px;
        background:#4270b7;
        color:#fff;
        font-size:14px;
        font-weight:700;
        text-decoration:none;
    }

    .pdf-view-btn:hover,
    .pdf-view-btn:focus{
        color:#fff;
        text-decoration:none;
    }

    @media (max-width:768px){
        .pdf-view-frame{
            height:520px;
        }

        .pdf-view-btn-wrap{
            display:block;
        }
    }

    @media (max-width:480px){
        .pdf-view-frame{
            height:430px;
        }
    }

    .pdf-view-title{
        display:flex;
        align-items:center;
        gap:10px;
        padding:10px 18px;
        background:#f8fbff;
        border:1px solid #dbe7f5;
        border-bottom:none;
        border-radius:12px 12px 0 0;
        font-size:14px;
        font-weight:700;
        color:#2c3e50;
        line-height:1.4;
        box-shadow:0 2px 8px rgba(0,0,0,.04);
    }

    .pdf-view-title .glyphicon{
        color:#d9534f;
        font-size:18px;
    }

    .pdf-view-frame{
        width:100%;
        height:760px;
        display:block;
        border:1px solid #dbe7f5;
        border-radius:0 0 12px 12px;
        background:#fff;
    }

    @media (max-width:768px){
        .pdf-view-title{
            padding:12px 14px;
            font-size:14px;
        }

        .pdf-view-frame{
            height:520px;
        }
    }

	/* 목록 하단 액션 버튼 영역 */
	.list-bottom-action{
		margin-top:25px;
		text-align:right;
	}

	/* 등록 버튼 */
	.mypage-action-btn{
		display:inline-flex;
		align-items:center;
		gap:8px;

		padding:12px 22px;

		border:0;
		border-radius:6px;

		background:#7ac943;
		color:#fff;

		font-size:15px;
		font-weight:700;
		line-height:1;

		cursor:pointer;

		box-shadow:0 4px 12px rgba(122,201,67,.25);
		transition:all .2s ease;
	}

	.mypage-action-btn .glyphicon{
		font-size:13px;
	}

	/* Hover */
	.mypage-action-btn:hover{
		background:#69b83a;
		color:#fff;

		transform:translateY(-1px);
		box-shadow:0 6px 16px rgba(122,201,67,.35);
	}

	/* Focus */
	.mypage-action-btn:focus,
	.mypage-action-btn:active{
		color:#fff;
		outline:none;
	}

	/* 모바일 */
	@media (max-width:768px){

		.list-bottom-action{
			margin-top:20px;
			text-align:center;
		}

		.mypage-action-btn{
			width:100%;
			justify-content:center;

			padding:14px 16px;

			font-size:14px;
		}

	}

	.apply-submit-box {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 26px;
		padding-top: 22px;
		border-top: 1px solid #edf0ed;
	}

	.apply-submit-box .btn {
		min-width: 120px;
		height: 42px;
		padding: 0 20px;
		border-radius: 50px;
		font-weight: 800;
		border: 0;
	}

	.apply-submit-box .btn-primary {
		background: linear-gradient(135deg, #63c132 0%, #54b84d 100%);
		box-shadow: 0 10px 24px rgba(99, 193, 50, .25);
	}

	.apply-submit-box .btn-warning {
		background: #f0ad4e;
		box-shadow: 0 10px 24px rgba(240, 173, 78, .2);
	}

	.apply-submit-box .btn-info {
		background: #fff;
		color: #444;
		border: 1px solid #d8dee4;
		box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
	}

	.apply-submit-box .btn:hover {
		transform: translateY(-1px);
	}

