/* -------------------------------- 

Primary style

--------------------------------
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::after, *::before {
  content: '';
} */



/* -------------------------------- 

Main components 

-------------------------------- */

@media only screen and (min-width: 768px) {
 
}

.cd-tabss {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height:345px;
  height:100%;
 
}
.cd-tabss:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabss::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;
  background: -webkit-linear-gradient( right , #f8f7ee, rgba(248, 247, 238, 0));
  background: linear-gradient(to left, #f8f7ee, rgba(248, 247, 238, 0));
  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;
}
.no-cssgradients .cd-tabss::after {
  display: none;
}
.cd-tabss.is-ended::after {
  /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
  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-tabss nav {
  overflow-y: auto;
  overflow-x: hidden ;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 768px) {
  .cd-tabss::after {
    display: none;
  }
  .cd-tabss nav {
    
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: inset -2px 0 3px rgba(203, 196, 130, 0.06);
    z-index: 1;
  }
}
@media only screen and (min-width: 960px) {
  .cd-tabss nav {
    position: relative;
    float: left;
    background: transparent;
    box-shadow: none;
  }
}

.cd-tabss-navigation {
  /* width: 360px; */
  float:none !important;
}
.cd-tabss-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabss-navigation li {
  float: none;
 
}


@media only screen and (max-width: 450px) {
.cd-tabss-navigation li {
  float: none;
  
}	
}


.cd-tabss-navigation a {
  position: relative;
  display: block;
/*   height: 60px;
  width: 60px; */
  text-align:left;
/*   font-size:16px; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  color: #7f8080;
  
}
.no-touch .cd-tabss-navigation a:hover {
  color: #fff;
  background-color:#dd251c;
}







  .cd-tabss-navigation {
    /* tabbed on top on big devices */
    width: auto;
	margin-right: 10px;
    
  }
 
 .inner-list h3{ color:#20272d; font:20px Arial, Helvetica, sans-serif; font-weight:normal !important; padding-bottom: 20px;} 
  .inner-list h4{ color:#484d51; font:20px Arial, Helvetica, sans-serif; font-weight:normal !important; padding:15px 0px;} 
   .inner-list span{color:#484d51; font:20px Arial, Helvetica, sans-serif; font-weight:normal !important;}
  .inner-list p{ font-size:14px; color:#20272d; color:#484d51; line-height:22px; padding-top:9px;} 
   
  .cd-tabss-navigation a {
    width: auto;
    text-align: left;
    font-size: 14px; font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
    padding:17px 25px;
	color:#fff;
	background:#422774;
	border-bottom: 1px solid #dddddd;
	
	margin-bottom:8px;
	text-transform:uppercase;
  }
  
  .cd-tabss-navigation a.selected {
    background:#d94151; color:#fff;
  }
  .cd-tabss-navigation a::before {
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 38px;
  }
@media only screen and (max-width: 960px) {}


.scroll-list{height:408px; overflow-y:scroll; background-color:#334878;}

.cd-tabss-content {
 
  float:left;
}
.cd-tabss-content li {
  display: none;
  padding: 0px ;
  min-height:190px;
}
.cd-tabss-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-tabss-content li p a {
  font-size: 13px;
  line-height:32px;
  color: #7a7a7a;
  
}

.cd-tabss-content li p a:hover{ color:#f1740d;}


@media only screen and (max-width: 1199px) {
  	.cd-tabss-content {
   /* background-color: #FFF;*/
    float: left;
    
}
}

@media only screen and (min-width: 768px) {
  /*.cd-tabss-content {
    min-height: 480px;
  }*/
  .cd-tabss-content li {
   /* padding: 2em 2em 2em 7em;*/
  }
}
@media only screen and (min-width: 960px) {
 
}

@-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;
  }
}







