
.smart-tabs { 
	position: relative; 
	margin-top: 0;
}

.smart-tabs dt {
	background: #fff;
	border: 1px solid #eee;
	color: #888;
	float: left;
	font-weight: 400;
	height: 50px;
	text-align: center;
	padding: 0 20px;
	margin-right: 8px;
	margin-bottom:8px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	transition: all 0.3s;
	position: relative;
}

.smart-tabs dt a {
	border:none;
  color: #888;
  display: block;
  line-height: 50px;
	text-decoration: none;
	font-family: 'Museo Sans 500';
	font-size: 16px;
}

.smart-tabs dt:hover {
	border: 1px solid #FF8291;
}

.smart-tabs dt.current {
  background: #FF8291;
  border: 1px solid #FF8291;
  position: relative;
  z-index: 2;
}

.smart-tabs dt.current a { color: #1d1e23; }

.smart-tabs dd {
	background: #fff;
	font-size: 1.2em;
	margin-top: 7px;
	position: absolute;
	width: 100%;
	display: none;
	margin-left: 0;
	max-height: 500px;
	overflow: auto;
	border: 1px solid #eee;
}

.smart-tabs dd p {
	color: #1d1e23;
	font-family: 'Museo Sans 700';
	margin-left: 20px;
	margin-bottom: -10px;
}

.smart-tabs dd::-webkit-scrollbar-track {
	background-color: #F5F5F5;
}

.smart-tabs dd::-webkit-scrollbar {
	width: 4px;
	background-color: #F5F5F5;
}

.smart-tabs dd::-webkit-scrollbar-thumb {
	background-color: #FF8291;
}

.smart-tabs .current dd {
	display: block;
}

.smart-tabs dd ul {
	position: relative;
	list-style: none;
	margin-left: 15px;
	font-family: 'Museo Sans 300';
	font-size: 16px;
	color: #666;
	line-height: 22px;
}

.smart-tabs dd li {
	padding: 7px 0;
}

.smart-tabs dd li::before {
	content: "\2022";  
	color: #FF8291; 
	font-weight: bold; 
	display: inline-block; 
	width: 30px;
    margin-left: -30px;
}

.smart-tabs.accordion {
 	 min-height: 100%;
}

.smart-tabs.accordion dt {
	  float: none;
	  text-align: left;
	  width: calc(100% - 40px);
	  z-index: 1;
	margin-bottom: 5px;
}

.smart-tabs.accordion dt.current { z-index: 0; }

.smart-tabs.accordion dt a:before { content: '\2b\a0'; }

.smart-tabs.accordion dt.current a:before { content: '\2013\a0'; }

.smart-tabs.accordion dd {
	border: none;
	height: 100%;
	min-height: 0;
	max-height: none;
	position: relative;
	top: 0;
	margin-top: 0;
	margin-bottom: 15px;
}

.smart-tabs:before,
.smart-tabs:after,
.smart-tabs.accordion dd:before,
.smart-tabs.accordion dd:after {
  content: " ";
  display: table;
}

.smart-tabs:after,
.smart-tabs.accordion dd:after { clear: both; }

@media(max-width: 1256px) {
	
	.smart-tabs.spacer dd {
		margin-top: 67px;
	}
}