/**
 * =============================================================================
 * Tabs
 * =============================================================================
 *
 * This file deals with:
 *  * tabbed interfaces
 */

.tab-container {
  clear: both;
}

.tab-container > .tab-content {
  display: none;
}

.tab-container > .tab-navigation {
  list-style-type: none;
  padding: 0;
  border-bottom: 1px solid #64686c;
  margin-top: 0;
}

.tab-navigation:after {
  display: block;
  content: "";
  clear: both;
}

.tab-navigation > .tab-navigation-item {
  float: left;
  margin-right: 10px;
  position: relative;
  top: 1px;
  margin-bottom: 0;
}
.tab-navigation > .tab-navigation-item:last-child {
  margin-right: 0;
}

.tab-navigation-item > a {
  color: #1e1e1e;
  display: table-cell;
  vertical-align: middle;
  border-bottom: 0;
  height: 40px;
  background: #dfe0e1;
  border-radius: 5px 5px 0 0;
  padding: 0 20px;
  border: 1px solid transparent;
  border-bottom: 1px solid #64686c;
  font-weight: 600;
}

.tab-navigation-item > a span {
  font-weight: 400;
}

.tab-navigation > .active > a {
  background: #fff;
  border-color: #64686c;
  border-bottom-color: #fff;
  color: #cf1c6d;
}

.tab-navigation > .tab-navigation-item:hover > a {
  color: #CF1C6D;
}