.thumbnails {
	margin: 20px -5px;
	text-align: center;
	display: flex;
}

.thumbnails li {
	display: inline-block;
	cursor: pointer;
	border: 5px solid transparent;
}

.thumbnails .tns-nav-active {
	background: none;
	border-color: #244A63;
}

.Xthumbnails li {
	width: 150px;
}

.thumbnails img {
	vertical-align: bottom;
	height: auto;
}

.controls {
	text-align: center;
}

.controls li {
	display: block;
	position: absolute;
	top: 50%;
	height: 60px;
	line-height: 60px;
	margin-top: -30px;
	padding: 0 15px;
	cursor: pointer;
	transition: background 0.3s;
}

.controls li img {
	display: inline-block;
	vertical-align: middle;
}

.controls .prev {
	left: 20px;
}

.controls .next {
	right: 20px;
}

.controls li:hover {
	background: #f2f2f2;
}

.tns-outer button {
	display: none;
}

@media screen and (max-width: 600px) {
	.thumbnails {
		flex-wrap: wrap;
	}
	.thumbnails li {
		max-width: 33.3%;
	}
	.controls li {
		margin-top: -60px;
	}
	.controls .prev {
		left: 0;
	}
	.controls .next {
		right: 0;
	}
}