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

Main components 

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

.cd-tabs {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y:hidden; 
  margin: 0;
  padding: 0;
}

.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 {
  width: 100% !important;
  position: fixed !important;
  top: 100% !important;
  margin-top: -100px;
  z-index: 10000;
}
.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;
  box-shadow: inset 0 2px 0 #f05451;*/
  color: #49dbc4;
  border-bottom: 3px solid #49dbc4;
}

.cd-tabs-content li .fondo{display: block; width: 100% !important; height: 100% !important; background: #F00;}
.cd-tabs-content li img{width: 100%;}
.cd-tabs-navigation ul{width: 100%;}
.cd-tabs-navigation li{margin: 0; padding: 0; float: left; width: 11.1%; height: 97px;}
.cd-tabs-navigation li a{display: block; width: 100%; height: 100%; text-align: center; font-family: 'kaushian'; color: #FFF; font-size: 1.8em; line-height: 5.5em; border-bottom: 3px solid rgba(30,30,30,.1); background: rgba(30,30,30,.6);}
.cd-tabs-navigation li a:hover{border-bottom: 3px solid #49dbc4;}

.cd-tabs-content {
  background: #ffffff;
}
.cd-tabs-content li {
  display: none;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  width: 100%;
  height: 100%;
}
.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;
  overflow-y:hidden; 
}
.cd-tabs-content li p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8493bf;
  margin-bottom: 2em;
}




@-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;
  }
}
