


.cd-tabs {
  position: relative;
}



.cd-tabs > nav {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;  
  -webkit-overflow-scrolling: touch;
  background: rgb(255, 255, 255); /*SVS TAB_BACKGROUND_IE9 */
  background: linear-gradient( rgb(255, 255, 255), rgb(235, 235, 235)); /*SVS TAB_BACKGROUND */
  display: inline-block;
  max-width: 100%;
  margin-bottom: -1px;
  margin-left: -8px;
}



.cd-tabs-navigation {
  position: relative;
  list-style: none;
  -webkit-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.75);
  width: 1000px;
  background: rgb(255, 255, 255); /*SVS TAB_BACKGROUND_IE9 */
  background: linear-gradient( rgb(255, 255, 255), rgb(235, 235, 235)); /*SVS TAB_BACKGROUND */
}


.cd-tabs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 75px;
  z-index: 1;
  pointer-events: none;
  /*background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));*/
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0)); /*SVS TAB_BACKGROUND_FADE_OUT */
  visibility: visible;
  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;
}
@media only screen and (max-width: 767px) {
	.cd-tabs::after {
		height: 40px;
	}
}


.no-cssgradients .cd-tabs::after {
  display: none;
}
.cd-tabs.is-ended::after {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-tabs-navigation li {
  float: left;
  border-right-color: #cfcc23; /*SVS MENU_BORDER_COLOR */
  border-right-style: solid;
  border-right-width: 1px;
  margin-right: -1px;
  border-top-color: #cfcc23; /*SVS MENU_BORDER_COLOR */
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-color: #cfcc23; /*SVS MENU_BORDER_COLOR */
  border-bottom-style: solid;
  border-bottom-width: 1px;
  
}

.cd-tabs-navigation li:hover {
	background: linear-gradient( rgb(245, 245, 245), rgb(220, 220, 220)); /*SVS TAB_BACKGROUND_HOVER */
}


.cd-tabs-navigation a {
  position: relative;
  display: block;
  /*height: 40px;  */
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: rgb(100, 100, 100); /*SVS TAB_TEXT_COLOR */
  padding-right: 10px;
  padding-left: 10px;  
  padding-top: 5px;
  padding-bottom: 5px;  
  line-height: 40px;
  text-align: left;
 
}
.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(233, 230, 202, 0.3);
}
.cd-tabs-navigation a.selected {
  /*background-color: #ffffff !important;*/
  background: #ffffff !important; /*SVS TAB_BACKGROUND_SELECTED */
  box-shadow: inset 0 2px 0 #f05451;
  border-right: 1px solid #ddd;  
  border-left: 1px solid #ddd;    
  /*color: #29324e;*/
  color: #29324e; /*SVS TAB_COLOR_SELECTED */
}


.cd-tabs-content > li {
  display: none;
  overflow-x: auto;
  max-width: 100%;
  position: relative;
}
.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 {
    border-top: 1px solid #ddd;
	margin-top: -5px;
}

.cd-tabs-footer {
	margin-top: 50px;
}


@media only screen and (max-width: 767px) {
  .cd-tabs-navigation a {
	font-size: 12px;
	line-height: 30px;	
  }
  
  .cd-tabs > nav {
    margin-left: -5px;  
  }

}

@media all and (min-width: 768px) {
  .cd-tabs-footer {
	display: none;
  }
}



.cd-tabs-footer-btn {
	float: left;
	width: 90%;
	width: calc(100% - 10px);	
	color: rgb(100, 100, 100); /*SVS TAB_TEXT_COLOR */
	background: rgb(255, 255, 255); /*SVS TAB_BACKGROUND_IE9 */
	background: linear-gradient( rgb(255, 255, 255), rgb(235, 235, 235)); /*SVS TAB_BACKGROUND */
	/*clear: left;*/
	margin: 5px;
	border-radius: 0px;
}

.cd-tabs-footer-btn > a{
	display: block;
	color: rgb(100, 100, 100); /*SVS TAB_TEXT_COLOR */
}


@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
