/* hide tabs */
.tabs {
	display: none;
}
div.tab-header {
	border-top: 1px solid #d5dadf;	
	background-color: #e4e8ea;
	margin-top: -1px;
	border-bottom: 1px solid #d5dadf;	
}
a.tab-header {
	font-size: .9em;
	font-weight: bold;
	padding: .5em 30px;
	display: block;
	position: relative;
	cursor: pointer;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	
}
a.tab-header::after {
	display: inline-block;
	position: absolute;
	font-size: 1.5em;
	top: 0.1em;
	right: 30px;
	font-family: FontAwesome;
	font-size: 1.4em;
	content: "\f105";
}
a.tab-header.active::after {
	transform: rotate(90deg);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-container {
	clear: both;
	width: 100%;
	overflow: auto;
}
.tab-content .bordertop:first-child {
	border-top: 0;
}
/*
	no columns is default, countries in columns on wider screen
*/
.col1,
.col2,
.col3,
.col4 {
	margin-left: 0;
	margin-right: 0;
}
@media (min-width: 500px) {
	
	/* hide tab headers */
	.tab-header {
		display: none;
	}
	/* don't hide headers if permatabs */
	.permatabs .tab-header {
		display: block;
	}
	.tab-container {
		border-top: 0;
	}
	.tabs {
		display: table;
		table-layout: fixed;
		margin: 0;
		padding: 0;
		list-style: none;
		width: 100%;
		border-bottom: 1px solid #cfd5da;
	}
	.tabs li {
		display: table-cell;
		width: auto;
		text-align: center;
		border-right: 1px solid #cfd5da;
	}
	.tab {
		display: block;
		padding: 2em 0;
		font-size: .875em;
		font-weight: bold;
		color: #123249;
		background-color: #fff;
	}
	.tabs li:last-child { 
		border-right: 0;
	}	
	.tab:hover,
	.tab:focus,
	.tab.active {
		color: #123249;
		background-color: #e4e8ea;
	}
	.col1 {
		margin-left: 0;
		width: 25%;
	}
	.col2 {
		margin-left: 25%;
		width: 25%;
	}
	.col3 {
		margin-left: 50%;
		width: 25%;
	}
	.col4 {
		margin-left: 75%;
		width: 25%;
	}
	.countrylist {
		padding-left: 0;
		text-align: center;
	}
}

