﻿
/* Tabbed Content */
@media screen and (min-width: 768px){
	.trb-tabbed-content {
		border: 3px solid #c2beb8;
	}
}
.trb-tabbed-content  .nav-tabs {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
}
@media screen and (min-width: 768px){
	.trb-tabbed-content  .nav-tabs {
		-webkit-flex-flow: row nowrap;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		margin: -3px;
	}
}
.trb-tabbed-content .nav-tabs > li {
	width: auto;	
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	text-align: center;
	background-color: #7f7f7f;
	border: 3px solid #e7e7e2;
}
@media screen and (min-width: 768px){
	.trb-tabbed-content .nav-tabs > li {
		width: 100%;
		border-bottom: 3px solid #c2beb8;
		border-right: 3px solid #7f7f7f;
	}
	.trb-tabbed-content .nav-tabs > li:last-child:not(.active){
		border-right: 3px solid #e7e7e2;
	}
}
.trb-tabbed-content .nav-tabs > li.active {
	background-color: #fff;
	border: 3px solid #c2beb8;
}
@media screen and (min-width: 768px){
	.trb-tabbed-content .nav-tabs > li.active {
		border-bottom: 3px solid transparent;
		background-color: transparent;
	}
	.trb-tabbed-content .nav-tabs > li.active + li {
		border-left: 3px solid #7f7f7f;
	}
}
.trb-tabbed-content .nav-tabs > li.active > a {
	color: #797978;
}

.trb-tabbed-content .nav-tabs > li > a,
.trb-tabbed-content .nav-tabs >li.active>a, 
.trb-tabbed-content .nav-tabs >li.active>a:hover, 
.trb-tabbed-content .nav-tabs >li.active>a:focus {
	border: 0 solid transparent;
	border-radius: 0;
	background-color: transparent;
	font-weight: bold;
}
.trb-tabbed-content .nav-tabs > li > a {
	color: #fff;
}
.trb-tabbed-content .nav-tabs > li > a span {
	font-size: 1.4em;
	margin-right: .5em;
	position: relative;
	top: 4px;
}

.trb-tabbed-content .tab-content {
	background-color: #fff;
	border: 3px solid #c2beb8;
	padding: 30px;
}
@media screen and (min-width: 768px){
	.trb-tabbed-content .tab-content {
		border-top: 0;
		margin: -3px;
	}
}
.trb-tabbed-content .tab-content p {
	font-size: 16px;
}
.trb-tabbed-content .tab-content ul {
	margin: 0;
	padding: 0 0 0 25px;
}
@media screen and (min-width: 768px){
	.trb-tabbed-content .tab-content ul {
		padding: 0;
	}
}
.trb-tabbed-content .tab-content li {
	font-size: 22px;	
	vertical-align: top;	
}

@media screen and (min-width: 768px){
	.trb-tabbed-content .tab-content li {
		display: inline-block;		
		width: 45%;
		margin-right: 4%;
		padding-left: calc(.5em + 5px);
	}
	.trb-tabbed-content .tab-content li::before {
		content: '•';
		font-size: 1em;
		margin-right: 5px;	
		display: inline-block;
		width: .5em;	
		margin-left: calc(-.5em - 5px);
	}
}
.trb-tabbed-content .tab-content li a {
	text-decoration: underline;
}
.trb-tabbed-content .tab-content li a:hover {
	text-decoration: none;
}
