/** Tabs **/
.tsu-tabs {
	background-color: #000;
	color: #fff;
}

.tsu-tabs .tabs-title {
	text-transform: uppercase;
    padding-top: 10px;
    font-size: 1.5rem;
}

.tsu-tabs .nav-link {
	background-color: #000;
	color: var(--accent-colour);
	text-transform: uppercase;
	border-radius: 0;
}

.tsu-tabs .nav-tabs {
	padding-left: 0;
	border: 0;
}

.tsu-tabs .nav-tabs .nav-link.active {
	background-color: var(--accent-colour);
	color: #fff;
	border: 0;
}

.tsu-tabs .tab-pane.active {
	background-color: #fff;
	color: #000;
}

.tsu-tabs.horizontal .tab-pane.active {
	display: flex;
}

.tsu-tabs.horizontal .tab-pane > div {
	-webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.tsu-tabs .tab-pane .tab-image-wrapper {
	height: 400px;
}

.tsu-tabs .tab-pane .tab-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

@media(min-width: 992px) {
	.tsu-tabs .tab-pane .tab-content-wrapper {
		padding: 50px 30px;
	}
}