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

Tab colors 

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

Tab components 

-------------------------------- */
.cd-tabs {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin-bottom: 14px;
}

.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 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.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 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-tabs nav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #f8f7ee;
  box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
}

@media only screen and (min-width: 768px) {
  .cd-tabs::after {
    display: none;
  }

  .cd-tabs nav {
    position: absolute;
    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-tabs nav {
    position: relative;
    float: none;
    background: transparent;
    box-shadow: none;
  }
}
.cd-tabs-navigation {
  width: 360px;
}

.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;
  line-height: 60px;
  width: auto;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 90%;
  color: #c3c2b9;
}

.cd-tabs-navigation a:hover {
  text-decoration: none;
  color: rgba(0, 38, 101, 0.6);
}

.no-touch .cd-tabs-navigation a:hover {
  color: #29324e;
  background-color: rgba(233, 230, 202, 0.3);
}

.cd-tabs-navigation a.selected {
  background-color: white !important;
  box-shadow: inset 0 2px 0 rgba(0, 38, 101, 0.6);
  color: #29324e;
}

@media only screen and (min-width: 768px) {
  .cd-tabs-navigation {
    /* move the nav to the left on medium sized devices */
    width: 80px;
    float: left;
  }

  .cd-tabs-navigation a {
    font-size: 100%;
    height: 80px;
    width: 80px;
    padding-top: 20px;
  }

  .cd-tabs-navigation a.selected {
    box-shadow: inset 2px 0 0 rgba(0, 38, 101, 0.6);
  }

  .cd-tabs-navigation a::before {
    top: 22px;
  }
}
@media only screen and (min-width: 960px) {
  .cd-tabs-navigation {
    /* tabbed on top on big devices */
    width: auto;
    background-color: #f8f7ee;
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
  }

  .cd-tabs-navigation a {
    font-size: 100%;
    height: 60px;
    line-height: 60px;
    width: auto;
    text-align: left;
    padding: 0 2.8em 0 2.4em;
  }

  .cd-tabs-navigation a.selected {
    box-shadow: inset 0 2px 0 rgba(0, 38, 101, 0.6);
  }

  .cd-tabs-navigation a::before {
    top: 50%;
    margin-top: -10px;
    margin-left: 0;
    left: 38px;
  }
}
.cd-tabs-content {
  background: white;
  box-shadow: 5px 10px 8px #888888;
}

.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 {
  line-height: 1.6;
  color: #8493bf;
  margin-bottom: 2em;
}

@media only screen and (min-width: 768px) {
  .cd-tabs-content {
    min-height: 480px;
  }

  .cd-tabs-content li {
    padding: 2em 2em 2em 7em;
  }
}
@media only screen and (min-width: 960px) {
  .cd-tabs-content {
    min-height: 0;
  }

  .cd-tabs-content li {
    padding: 3em;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cd-tabs-content li p {
    font-size: 16px;
    font-size: 1rem;
  }
}
@-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;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../scss/mjtabs.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;;AAAA;;AAAA;AAeA;;AAAA;;AAAA;AAMA;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAEJ;AACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;;;AAEJ;AACI;EACA;EACA;EACA;EACA;EACA;;;AAEJ;EACI;EACA;EACA,YAxDmB;EAyDnB;;;AAEJ;EACI;IACI;;;EAEJ;IACI;IACA;IACA;IACA;IACA;IACA;;;AAGR;EACI;IACI;IACA;IACA;IACA;;;AAIR;EACI;;;AAEJ;EACI;EACA;EACA;;;AAEJ;EACI;;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,OAtGS;;;AAyGb;EACI;EACA,OA1GsB;;;AA4G1B;EACI,OA5Gc;EA6Gd;;;AAEJ;EACI;EACA;EACA,OAlHc;;;AAqHlB;EACI;AACI;IACA;IACA;;;EAEJ;IACI;IACA;IACA;IACA;;;EAEJ;IACI;;;EAEJ;IACI;;;AAIR;EACI;AACI;IACA;IACA,kBAhJe;IAiJf;;;EAEJ;IACI;IACA;IACA;IACA;IACA;IACA;;;EAEJ;IACI;;;EAEJ;IACI;IACA;IACA;IACA;;;AAIR;EACI,YAxKU;EAyKV;;;AAEJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;;;AAEJ;EACI;EACA,OAjLe;EAkLf;;;AAGJ;EACI;IACI;;;EAEJ;IACI;;;AAIR;EACI;IACI;;;EAEJ;IACI;IACA;IACA;;;EAEJ;IACI;IACA;;;AAIR;EACI;IACI;;EAEJ;IACI;;;AAGR;EACI;IACI;;EAEJ;IACI;;;AAGR;EACI;IACI;;EAEJ;IACI%22,%22file%22:%22mjtabs.css%22%7D */
