
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
/* =========
Get Fonts */
/* ================
Assign Variables */
/* ===========================
Setup Mixins/Helper Classes */
.clearfix:after, .container:after, .tab-nav:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* ==========
Setup Page */
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
}

/* =================
Container Styling */
.container {
  position: relative;
  background: white;
  padding: 3em;
}

/* ===========
Tab Styling */
.tab-group {
  position: relative;
  border: 1px solid #eee;
  border-radius: 0 0 10px 10px;
}
.tab-group section {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, height 0.4s ease;
}
.tab-group section.active {
  opacity: 1;
  height: auto;
  overflow: visible;
}

.tab-nav {
  list-style: none;
  margin: -2.5em -1px 0 0;
  padding: 0;
  height: 40px;
  overflow: hidden;
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0;
  z-index:10;
}
.tab-nav li {
  display: inline;
}
.tab-nav li a {
  border: 1px solid #ececec;
  height: 40px;
  text-align: center;
  width:33.3%;
  top: 1px;
  position: relative;
  display: block;
  float: left;
  background: white;
  line-height: 40px;
  padding: 0 1em;
  text-decoration: none;
  color: grey;
  transition: background .2s ease, line-height .2s ease, margin .2s ease;
}
.tab-nav li.active a {
  background: #105dea;
  color: white;
}

