/* common */
.content-wrap {
    padding: 200px 0 150px;
}
.content-wrap * {
    letter-spacing: -0.02em;
}

a.link {
    color: #0042ff;
    text-decoration: underline;
}

/* 자주사용하는 색상 */
.mint {
    color: #03cbd3;
}
.orange {
    color: #ff7300;
}
.red {
    color: #e7355f;
}
.coral {
    color: #f87855;
}

/* 라벨 */
.label {
    display: inline-block;
    background-color: #ffeee1;
    border-radius: 5px;
    line-height: 1em;
    font-weight: 500;
    color: #f87855;
    padding: 10px 25px;
	font-size:18px;
}

/* 버튼 */
.btn {
    display: inline-block;
    border-radius: 5px;
    line-height: 50px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    background-color: #eee;
    color: #333;
    padding: 0 30px;
    text-align: center;
}
.btn.btn-primary {
    background-color: #f87855;
    color: #fff;
	border:none;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn-primary:not([disabled]):not(.disabled):active, 
.btn-primary:not([disabled]):not(.disabled).active, 
.show > .btn-primary.dropdown-toggle {
    background-color: #f87855;
    color: #fff;
}

/* 콘텐츠 타이틀 */
.content-title {
    font-size: 45px;
    font-weight: 500;
    padding-bottom: 15px;
    margin-bottom: 60px;
    color: #e7355f;
    font-family: 'gg';
    border-bottom: 2px solid #e7355f;
}
.sub-middle-title:before {
	content: '';
    position: absolute;
    left: 0px;
    top: 5px;
    background-image: url('/img/sub/summary-txt-icon.png');
    background-repeat: no-repeat;
    width: 16px;
    height: 18px;
}
.sub-middle-title {
	position:relative;
	padding-left:25px;
	margin-bottom:30px;
}

/* 리스트 스타일 */
.default-list li:before{
	content: '';
    background-image: url('/img/sub/dot-list-img.png'); 
    background-repeat: no-repeat;
    width: 3px;
    height: 3px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
}
.default-list li{
	font-size:18px;
	font-weight:300;
	margin-bottom:10px;
	text-indent: -11px;
    padding-left: 11px;
}
.default-list li:last-child {
	margin-bottom:0px;
}
/*본문 중간 버튼 스타일*/
.txt-btn {
    text-decoration: underline;
    color: #e7355f;
    font-weight: bold;
}



/* table */
.table-responsible {
    width: 100%;
    overflow: auto;
}
.table {
    width: 100%;
}
.table tbody tr th {
    font-size: 22px;
    font-weight: 700;
    padding: 20px 0;
    text-align: left;
    vertical-align: middle;
}
.table tbody tr td {
    font-size: 20px;
	font-weight:300;
    padding: 20px 0;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #b7b7b7;
}
.table tbody tr td .btn {
    margin: 5px 15px;
}
/* style-table */
.table.style thead  th {
	padding: 10px 0;
	text-align:center;
	font-size:18px;
	font-weight:600;
	border-bottom:1px solid #ddd;
	border-top:2px solid #e7355f !important;
	border-right: 1px solid #ddd;
}
.table.style thead  th:last-child {border-right:none;}
.table.style tbody tr td {
	font-size:18px;
	padding:10px 15px;
	border-bottom:1px solid #ddd;
	border-right:1px solid #ddd;
}
.table.style tbody tr td:last-child {
    border-right:none;
}
.bd-right {
    border-right: 1px solid #ddd !important;
}

@media (max-width: 991px) {
    /* table */
    .table-responsible .table {
        min-width: 300px;
    }
    .table tbody tr td .btn {
        display: block;
        margin: 10px 0;
    }
}
@media (max-width: 767px) {
	/* table */
	.table tbody tr th {font-size:18px;}
	.table tbody tr td {font-size:16px;}
	.label {padding: 10px 15px;}
	.table tbody tr td .btn {width: 200px;}

	.default-list li {font-size:16px;}
}
@media (max-width: 480px) {
    .content-wrap {
        padding: 150px 0 100px;
    }
    .content-title {
        font-size: 35px;
        margin-bottom: 30px;
    }
    .sub-middle-title {
        margin-bottom: 12px;
    }
    
    /*table*/
    .table.style thead th {
        font-size: 15px;
        padding: 10px;
        vertical-align: middle;
    }
    .table.style tbody tr td {
        font-size: 15px;
        padding: 10px;
    }
    
    .default-list li {
        font-size: 15px;
        line-height: 1.5;
    }
}
