/* activity tab */
.tabs__nav {
  margin: 0 0 0 0.5em;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

.tabs__tab {
  width: calc(100%/4 - 20px);
  border-bottom: 2px solid;
  margin: 0 5px;
}

.tabs__link {
  float: left;
  padding: 0.25em 0.75em;
  text-decoration: none;
  font-size: 1em;
  color: #222222;
  width: 100%;
}

.tab-selected .tabs__link {
  position: relative;
  color: #000;
}

.tabs__panel {
  display: none;
}

.tabs__panel.tab-selected {
  display: block;
}

.tabs--tabbed .tabs__nav {
  bottom: -1px;
}

.tabs--tabbed .tabs__link {
  color: #000;
  border-bottom: 0;
  font-weight: 900;
  font-size: 20px;
  font-family: 'DINPro-Regular', DINCond-Medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px;
}

@media (max-width: 960px) {
  .tabs--tabbed .tabs__link {
    padding: 10px 0;
  }
}

.tabs--tabbed .tabs__link:hover, .tabs--tabbed .tabs__link:focus {
  color: #000;
  text-decoration: none;
  outline: 0;
}

.tabs--tabbed .tab-selected {
  border-bottom: 2px solid #d60303;
  color: #d60303;
}

.tabs--tabbed .tab-selected .tabs__link {
  color: #d60303;
}

@media (max-width: 767px) {
  .tabs__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tabs__tab {
    width: 100%;
  }
  .tabs--tabbed .tabs__nav {
    margin-top: 50px;
  }
}
/*# sourceMappingURL=tab.css.map */