/* -------------------------------- 

Primary style

-------------------------------- */






/* -------------------------------- 

Main components 

-------------------------------- */

.cd-tabs {
  position: relative;
  width: 100%;
  max-width: 920px;
 
}
.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;
  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-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 */
  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 nav {
    position: relative;
    float: none;
    background: transparent;
    box-shadow: none;border-bottom:3px solid #ff9a35;
  }

.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs-navigation li {float: left;}
.cd-tabs-navigation a {
  position: relative;
  display: block;
  height: 40px;
  text-align: center;
  font-size: 11px;
  /*font-size: 0.8rem;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #565549;
  padding-top: 0px;
  line-height: 40px;
    width: auto;
    padding: 0 3em 0 3em;border-right:1px solid #e7e7e7;border-top:1px solid #e7e7e7;background:#f3f3f3;
}
.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(233, 230, 202, 0.3);
}
.cd-tabs-navigation a.selected {
  background-color:#ff9a35 !important;
  /*box-shadow: inset 0 2px 0 #f05451;*/
  color: #fff;
}


  .cd-tabs-navigation {
    /* tabbed on top on big devices */
    width: auto;
    background-color: #f3f3f3;
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
  }
 
  
  .cd-tabs-navigation a::before {
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 38px;
  }


.cd-tabs-content {
  background: #ffffff;
}
.cd-tabs-content li {
  display: none;
  padding: 1.4em;
}
.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: 9pt;
  line-height: 1.6;
  color: #8493bf;
  margin-bottom: 2em;
}
