/* PC */
.txt-dashed-box.txt-ico-tbl {
    display: flex;
    align-items: stretch;
}

.txt-dashed-box.txt-ico-tbl .txt-cell {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
}

.txt-dashed-box.txt-ico-tbl .txt-cell + .txt-cell {
    border-left: 1px solid #ddd;
}

.txt-dashed-box.txt-ico-tbl .txt-cell .flex {
    display: flex;
    align-items: center;
}

.txt-dashed-box.txt-ico-tbl .txt-cell .btn {
    margin-left: 15px;
}

/* 모바일 */
@media (max-width: 767px) {
    .txt-dashed-box.txt-ico-tbl {
        display: block;
    }

    .txt-dashed-box.txt-ico-tbl .txt-cell {
        width: 100%;
        min-height: 0;
    padding: 20px 0;
    }

    .txt-dashed-box.txt-ico-tbl .txt-cell + .txt-cell {
        border-left: 0;
        border-top: 1px solid #ddd;
    }
	
	


}



/* 아이콘 */
.txt-ico-tbl .ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #0d1b2b;
    margin-right: 0;
    flex-shrink: 0;
}

/* 왼쪽 아이콘 내부 이미지 */
.txt-ico-tbl .ico img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

/* 오른쪽 아이콘 */
.txt-ico-tbl .txt-cell:nth-child(2) .flex > img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    flex-shrink: 0;
}