@charset "utf-8";
/* -------------------------------- 

Primary style

-------------------------------- */
*::after, *::before {
/*  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;*/
}
/* -------------------------------- 

Main components 

-------------------------------- */

.cd-tabs {
  position: relative;
  width: 100%;
  max-width: 960px;
/*  margin: 2em auto;*/
}
.cd-tabs nav {
 /* overflow: auto;*/
  -webkit-overflow-scrolling: touch;
 /* box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);*/
}

.cd-tabs-navigation:after {
  content: "";
  display: table;
  clear: both;
}
.cd-tabs-navigation li {
  float: left;
}
.cd-tabs-navigation a {
	position: relative;
	display: block;
	/*height: 60px;
	width: 60px;*/
	text-align: center;	
	font-weight: normal;	
}
.no-touch .cd-tabs-navigation a:hover {	
 background-color: #8ECCFF;
 border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.cd-tabs-navigation a.selected {
  background-color: #e1e1e1 !important;
  /*box-shadow: inset 0 2px 0 #DBF4FF;*/
  border-top-left-radius: 10px;
border-top-right-radius: 10px;
}

@media only screen and (min-width: 960px) {
  .cd-tabs nav {
    position: relative;
    float: none;
    background: transparent;
    box-shadow: none;
  }
}


@media only screen and (min-width: 960px) {
  .cd-tabs-navigation {
	/* tabbed on top on big devices */
	width: auto;
	/*box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);*/
  }
  .cd-tabs-navigation a {
   height: 45px;
    line-height: 50px;
    padding: 0 0.8em 0 0.4em;
    text-align: left;
    width: auto;
   
  /*  font-size: 14px;
    font-size: 0.875rem;*/
    
  }
  .cd-tabs-navigation a.selected {
   /* box-shadow: inset 0 2px 0 #dbf4ff;*/
  }
  .cd-tabs-navigation a::before {
    top: 50%;
    margin-top: 0px;
    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;*/
}

@media only screen and (min-width: 960px) {
  .cd-tabs-content {
    min-height: 0;
  }


}