/**
 * NoNumber Page stylesheet
 *
 * @package         Tabs
 * @version         3.4.4
 *
 * @author          Peter van Westen <peter@nonumber.nl>
 * @link            http://www.nonumber.nl
 * @copyright       Copyright © 2014 NoNumber All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */
/*
 * You can override this stylesheet by creating your own in:
 * /templates/[YOUR TEMPLATE]/css/tabs/style.min.css
 */
.nn_tabs .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.nn_tabs .fade.in {
  opacity: 1;
}
.nn_tabs .collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.nn_tabs .collapse.in {
  height: auto;
}
.nn_tabs > .nav {
  padding: 0;
  margin-left: 0;
  margin-bottom: 18px;
  list-style: none;
}
.nn_tabs > .nav > li > a {
  display: block;
}
.nn_tabs > .nav > li > a:hover {
  text-decoration: none;
  background-color: #eeeeee;
}
.nn_tabs > .nav > .pull-right {
  float: right;
}
.nn_tabs .nav-tabs {
  *zoom: 1;
  border-bottom: 1px solid #ddd;
}
.nn_tabs .nav-tabs:before,
.nn_tabs .nav-tabs:after {
  display: table;
  content: "";
  line-height: 0;
}
.nn_tabs .nav-tabs:after {
  clear: both;
}
.nn_tabs .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nn_tabs .nav-tabs > li > a {
  margin-right: 2px;
  padding: 8px 12px;
  line-height: 18px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  background-color: #F8F7F7; /* test */
}
.nn_tabs .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nn_tabs .nav-tabs > li.active > a,
.nn_tabs .nav-tabs > li.active > a:hover {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nn_tabs .tab-content {
  overflow: visible;
}
.nn_tabs .tab-content > .tab-pane {
  *zoom: 1;
  display: none;
}
.nn_tabs .tab-content > .tab-pane:before,
.nn_tabs .tab-content > .tab-pane:after {
  display: table;
  content: "";
  line-height: 0;
}
.nn_tabs .tab-content > .tab-pane:after {
  clear: both;
}
.nn_tabs .tab-content > .active {
  display: block;
}
.nn_tabs > ul.nav-tabs-sm {
  display: none;
}
.nn_tabs > ul.nav-tabs > li {
  /* Reset styles to prevent templates li styles from messing stuff up */
  margin: 0 !important;
  margin-bottom: -1px !important;
  padding: 0 !important;
  list-style: none !important;
  list-style-image: none !important;
  background: none !important;
}
.nn_tabs > ul.nav-tabs > li:before {
  content: "";
  margin: 0;
  padding: 0;
}
.nn_tabs > ul.nav-tabs > li > a {
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  color: #0088cc;
  text-decoration: none;
  line-height: inherit;
}
.nn_tabs > ul.nav-tabs > li > a:hover {
  color: #005580;
  text-decoration: none;
}
.nn_tabs > ul.nav-tabs > li > a:focus,
.nn_tabs > ul.nav-tabs > li.active > a:focus {
  outline: none;
  border-top-color: #eab03f;
  border-left-color: #eab03f;
  border-right-color: #eab03f;
  -webkit-box-shadow: 0 -2px 2px rgba(234, 176, 63, 0.5);
  box-shadow: 0 -2px 2px rgba(234, 176, 63, 0.5);
}
.nn_tabs > .tab-content {
  padding: 0;
  margin-bottom: 10px;
  background-color: #ffffff; /* test */
}
.nn_tabs > .tab-content > .tab-pane {
  padding: 12px 0;
  overflow-x: auto;
  overflow-y: hidden;
}
.nn_tabs > .tab-content > .tab-pane > :first-child {
  margin-top: 0;
}
.nn_tabs > .tab-content > .tab-pane > :last-child {
  margin-bottom: 0;
}
.nn_tabs > .tab-content > .tab-pane .nn_tabs-title {
  display: none;
}
.nn_tabs .nn_tabs-scroll,
.nn_tabs .nn_tabs-sm-scroll {
  position: relative;
  visibility: hidden;
}
@media (max-width: 768px) {
  .nn_tabs.nn_tabs-responsive > ul.nav-tabs-sm {
    display: block;
  }
  .nn_tabs.nn_tabs-responsive > ul.nav-tabs {
    display: none;
  }
  .nn_tabs.nn_tabs-responsive > .tab-content > .tab-pane {
    display: block;
  }
  .nn_tabs.nn_tabs-responsive > .tab-content > .tab-pane .nn_tabs-title {
    display: block;
  }
  .nn_tabs.nn_tabs-responsive .fade {
    opacity: 1;
  }
  .nn_tabs.nn_tabs-responsive.outline_content > .tab-content {
    border: none;
  }
  .nn_tabs.nn_tabs-responsive.outline_content > .tab-content > .tab-pane {
    padding: 12px 0;
  }
}
.nn_tabs.outline_content > .tab-content {
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-top: none;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.nn_tabs.outline_content > .tab-content > .tab-pane {
  padding: 12px;
}
.nn_tabs.outline_content > ul.nav-tabs {
  margin-bottom: 0;
}
.nn_tabs.outline_handles > ul.nav-tabs > li a,
.nn_tabs.outline_handles > ul.nav-tabs > li a:hover {
  border-top-color: #ddd;
  border-left-color: #ddd;
  border-right-color: #ddd;
}
@media (min-width: 769px) {
  .nn_tabs.align_right > ul.nav-tabs > li {
    float: right;
  }
  .nn_tabs.align_right > ul.nav-tabs > li > a {
    margin-left: 2px;
    margin-right: 0;
  }
  .nn_tabs.align_center > ul.nav-tabs {
    text-align: center;
  }
  .nn_tabs.align_center > ul.nav-tabs > li {
    float: none;
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
    margin-left: -1px;
    margin-right: -3px;
  }
  .nn_tabs.align_justify > ul.nav-tabs {
    text-align: center;
    display: table;
    width: 100%;
    margin-bottom: -1px;
  }
  .nn_tabs.align_justify > ul.nav-tabs > .nn_tabs-scroll {
    display: table-cell;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li {
    float: none;
    display: table-cell;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li:last-child > a {
    margin-right: 0;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li a {
    margin-bottom: -1px;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li a:hover {
    border-bottom-color: #eee;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li.active a,
  .nn_tabs.align_justify > ul.nav-tabs > li.active a:hover {
    border-bottom: 2px solid #fff;
    margin-bottom: -1px;
  }
  .nn_tabs.align_justify > ul.nav-tabs:before {
    display: none;
  }
  .nn_tabs.align_justify > ul.nav-tabs:after {
    display: none;
  }
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li {
    float: none;
  }
  .nn_tabs > ul.nav-tabs > li:last-child > a,
  .nn_tabs > ul.nav-tabs > li.active:last-child > a,
  .nn_tabs > ul.nav-tabs > li:last-child > a:hover,
  .nn_tabs > ul.nav-tabs > li.active:last-child > a:hover {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #ddd;
  }
  .nn_tabs > ul.nav-tabs > li > a {
    margin-right: 0;
  }
}
.nn_tabs > ul.nav-tabs > li.blue > a,
.nn_tabs > ul.nav-tabs > li.blue > a:hover {
  border-top: 5px solid #74b4e8;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.blue > a:hover,
.nn_tabs > ul.nav-tabs > li.blue.active > a {
  border-top-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.blue > a,
  .nn_tabs > ul.nav-tabs > li.blue > a:hover {
    border-top: 1px solid #74b4e8;
    border-left: 1px solid #74b4e8;
    border-right: 1px solid #74b4e8;
  }
}
.nn_tabs > ul.nav-tabs > li.primary > a,
.nn_tabs > ul.nav-tabs > li.primary > a:hover {
  border-top: 5px solid #74b4e8;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.primary > a:hover,
.nn_tabs > ul.nav-tabs > li.primary.active > a {
  border-top-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.primary > a,
  .nn_tabs > ul.nav-tabs > li.primary > a:hover {
    border-top: 1px solid #74b4e8;
    border-left: 1px solid #74b4e8;
    border-right: 1px solid #74b4e8;
  }
}
.nn_tabs > ul.nav-tabs > li.info > a,
.nn_tabs > ul.nav-tabs > li.info > a:hover {
  border-top: 5px solid #6fc2da;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.info > a:hover,
.nn_tabs > ul.nav-tabs > li.info.active > a {
  border-top-color: #2f96b4;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.info > a,
  .nn_tabs > ul.nav-tabs > li.info > a:hover {
    border-top: 1px solid #6fc2da;
    border-left: 1px solid #6fc2da;
    border-right: 1px solid #6fc2da;
  }
}
.nn_tabs > ul.nav-tabs > li.green > a,
.nn_tabs > ul.nav-tabs > li.green > a:hover {
  border-top: 5px solid #91c991;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.green > a:hover,
.nn_tabs > ul.nav-tabs > li.green.active > a {
  border-top-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.green > a,
  .nn_tabs > ul.nav-tabs > li.green > a:hover {
    border-top: 1px solid #91c991;
    border-left: 1px solid #91c991;
    border-right: 1px solid #91c991;
  }
}
.nn_tabs > ul.nav-tabs > li.success > a,
.nn_tabs > ul.nav-tabs > li.success > a:hover {
  border-top: 5px solid #91c991;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.success > a:hover,
.nn_tabs > ul.nav-tabs > li.success.active > a {
  border-top-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.success > a,
  .nn_tabs > ul.nav-tabs > li.success > a:hover {
    border-top: 1px solid #91c991;
    border-left: 1px solid #91c991;
    border-right: 1px solid #91c991;
  }
}
.nn_tabs > ul.nav-tabs > li.orange > a,
.nn_tabs > ul.nav-tabs > li.orange > a:hover {
  border-top: 5px solid #fbbf69;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.orange > a:hover,
.nn_tabs > ul.nav-tabs > li.orange.active > a {
  border-top-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.orange > a,
  .nn_tabs > ul.nav-tabs > li.orange > a:hover {
    border-top: 1px solid #fbbf69;
    border-left: 1px solid #fbbf69;
    border-right: 1px solid #fbbf69;
  }
}
.nn_tabs > ul.nav-tabs > li.warning > a,
.nn_tabs > ul.nav-tabs > li.warning > a:hover {
  border-top: 5px solid #fbbf69;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.warning > a:hover,
.nn_tabs > ul.nav-tabs > li.warning.active > a {
  border-top-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.warning > a,
  .nn_tabs > ul.nav-tabs > li.warning > a:hover {
    border-top: 1px solid #fbbf69;
    border-left: 1px solid #fbbf69;
    border-right: 1px solid #fbbf69;
  }
}
.nn_tabs > ul.nav-tabs > li.red > a,
.nn_tabs > ul.nav-tabs > li.red > a:hover {
  border-top: 5px solid #dd7a75;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.red > a:hover,
.nn_tabs > ul.nav-tabs > li.red.active > a {
  border-top-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.red > a,
  .nn_tabs > ul.nav-tabs > li.red > a:hover {
    border-top: 1px solid #dd7a75;
    border-left: 1px solid #dd7a75;
    border-right: 1px solid #dd7a75;
  }
}
.nn_tabs > ul.nav-tabs > li.danger > a,
.nn_tabs > ul.nav-tabs > li.danger > a:hover {
  border-top: 5px solid #dd7a75;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.danger > a:hover,
.nn_tabs > ul.nav-tabs > li.danger.active > a {
  border-top-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.danger > a,
  .nn_tabs > ul.nav-tabs > li.danger > a:hover {
    border-top: 1px solid #dd7a75;
    border-left: 1px solid #dd7a75;
    border-right: 1px solid #dd7a75;
  }
}
.nn_tabs > ul.nav-tabs > li.error > a,
.nn_tabs > ul.nav-tabs > li.error > a:hover {
  border-top: 5px solid #dd7a75;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.error > a:hover,
.nn_tabs > ul.nav-tabs > li.error.active > a {
  border-top-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.error > a,
  .nn_tabs > ul.nav-tabs > li.error > a:hover {
    border-top: 1px solid #dd7a75;
    border-left: 1px solid #dd7a75;
    border-right: 1px solid #dd7a75;
  }
}
.nn_tabs > ul.nav-tabs > li.grey > a,
.nn_tabs > ul.nav-tabs > li.grey > a:hover {
  border-top: 5px solid #b3b3b3;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.grey > a:hover,
.nn_tabs > ul.nav-tabs > li.grey.active > a {
  border-top-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.grey > a,
  .nn_tabs > ul.nav-tabs > li.grey > a:hover {
    border-top: 1px solid #b3b3b3;
    border-left: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
  }
}
.nn_tabs > ul.nav-tabs > li.gray > a,
.nn_tabs > ul.nav-tabs > li.gray > a:hover {
  border-top: 5px solid #b3b3b3;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs > ul.nav-tabs > li.gray > a:hover,
.nn_tabs > ul.nav-tabs > li.gray.active > a {
  border-top-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs > ul.nav-tabs > li.gray > a,
  .nn_tabs > ul.nav-tabs > li.gray > a:hover {
    border-top: 1px solid #b3b3b3;
    border-left: 1px solid #b3b3b3;
    border-right: 1px solid #b3b3b3;
  }
}
/*
Still need to check below out
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
	border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
	display: none;
}

.tab-content > .active,
.pill-content > .active {
	display: block;
}

.tabs-below > .nav-tabs {
	border-top: 1px solid #ddd;
}

.tabs-below > .nav-tabs > li {
	margin-top: -1px;
	margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
	border-top-color: #ddd;
	border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
	border-color: transparent #ddd #ddd #ddd;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
	float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
	min-width: 74px;
	margin-right: 0;
	margin-bottom: 3px;
}

.tabs-left > .nav-tabs {
	float: left;
	margin-right: 19px;
	border-right: 1px solid #ddd;
}

.tabs-left > .nav-tabs > li > a {
	margin-right: -1px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
	border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
	border-color: #ddd transparent #ddd #ddd;
	*border-right-color: #ffffff;
}

.tabs-right > .nav-tabs {
	float: right;
	margin-left: 19px;
	border-left: 1px solid #ddd;
}

.tabs-right > .nav-tabs > li > a {
	margin-left: -1px;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
	border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
	border-color: #ddd #ddd #ddd transparent;
	*border-left-color: #ffffff;
}
*/
