.tableFTP{
	box-sizing: border-box;
}

.tableFTP .header{
	margin: 0 -15px;
	font-weight: 600;
	border-bottom: 1px solid #bcbcbc;
}

.tableFTP .bodyRow{
	margin: 0 -15px;
	border-bottom: 1px solid #bcbcbc;
}

.tableFTP .column{
	padding: 10px 15px;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
}

.tableFTP a{
	color: #000;
	border: 2px solid #000;
	padding: 5px 5px;
	display: block;
	width: 100%;
	text-decoration: none;
	text-align: center;
	font-weight: 600;	
}

.tableFTP .column:first-child:nth-last-child(1){
	width: 100%;
}

.tableFTP .column:first-child:nth-last-child(2),
.tableFTP .column:first-child:nth-last-child(2) ~ .column{
	width: 50%;
}

.tableFTP .column:first-child:nth-last-child(3),
.tableFTP .column:first-child:nth-last-child(3) ~ .column{
	width: 33.33%;
}

.tableFTP .column:first-child:nth-last-child(4),
.tableFTP .column:first-child:nth-last-child(4) ~ .column{
	width: 25%;
}

.tableFTP .column:first-child:nth-last-child(5),
.tableFTP .column:first-child:nth-last-child(5) ~ .column{
	width: 20%;
}

.tableFTP .column:first-child:nth-last-child(6),
.tableFTP .column:first-child:nth-last-child(6) ~ .column{
	width: 16.66%;
}

@media (max-width: 768px) {
	.tableFTP .header{
		display: none;	
	}
	
	.tableFTP .bodyRow{
		margin: 10px 0;
		border: 1px solid #bcbcbc;
		text-align: center;
	}
	
	.tableFTP .column:first-child:nth-last-child(1),
	.tableFTP .column:first-child:nth-last-child(2),
	.tableFTP .column:first-child:nth-last-child(2) ~ .column,
	.tableFTP .column:first-child:nth-last-child(3),
	.tableFTP .column:first-child:nth-last-child(3) ~ .column,
	.tableFTP .column:first-child:nth-last-child(4),
	.tableFTP .column:first-child:nth-last-child(4) ~ .column,
	.tableFTP .column:first-child:nth-last-child(5),
	.tableFTP .column:first-child:nth-last-child(5) ~ .column,
	.tableFTP .column:first-child:nth-last-child(6),
	.tableFTP .column:first-child:nth-last-child(6) ~ .column{
		width: 100%;
	}	
	
	.tableFTP a{
		box-sizing: border-box;
	}
}

