﻿.cd-tabs {
  position: relative;
  width: 100%;
  padding:0 22px;
  margin: 70px auto 0;
}
.cd-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs::after {
  /* subtle gradient layer on top right - to indicate it's possible to scroll */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 50px;
  z-index: 1;
  pointer-events: none;

  display:block;
  opacity: 1;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.no-cssgradients .cd-tabs::after {
  display: none;
}
.cd-tabs.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  
  display: none;
  opacity: 0;

}
.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.cd-tabs-navigation {
  width: 100%;border:1px solid #211815;
}
.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs-navigation li {
  float: left;
  width: 33%;
  border-right:1px solid #211815;
}
.cd-tabs-navigation li:last-child{ border-right:none;}
.cd-tabs-navigation a {
  position: relative;
  display: block;
  width:100%;
  height: 82px;
  line-height:82px;
  text-align: center;
  font-size:30px;
  color:#211815;
  font-family:YIYICN;
  text-transform:uppercase;
}
.no-touch .cd-tabs-navigation a:hover {
  color: #e4ff1d;
}
.cd-tabs-navigation li.selected a{
	color:#e4ff1d;
	background:url(../images/icon-a.png) no-repeat bottom center;
	background-size:24px;
}
.cd-tabs-navigation a::before {
  /* icons */
  position: absolute;
  top: 12px;
  left: 50%;
  
  display: inline-block;
  height: 20px;
  width: 20px;
}


.cd-tabs-content {
	width:100%;
	margin:0 auto;
	padding:50px 0;
}
.cd-tabs-content li {
  display: none;
}
.cd-tabs-content li.selected {
  display: block;
  -webkit-animation: cd-fade-in 0.5s;
  -moz-animation: cd-fade-in 0.5s;
  animation: cd-fade-in 0.5s;
}
.cd-tabs-content li p {
  font-size: 14px;
  line-height: 1.6;
  color: #8493bf;
}






.cd-tabs2-navigation {
  width: 100%;border:1px solid #211815; margin:70px auto 0; 
}
.cd-tabs2-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs2-navigation li {
  float: left;
  width: 33%;
  border-right:1px solid #211815;
}
.cd-tabs2-navigation li:last-child{ border-right:none;}
.cd-tabs2-navigation a {
  position: relative;
  display: block;
  width:100%;
  height: 82px;
  line-height:82px;
  text-align: center;
  font-size:30px;
  color:#211815;
  font-family:YIYICN;
  text-transform:uppercase;
}
.no-touch .cd-tabs2-navigation a:hover {
  color: #e4ff1d;
}
