.group::after, .tabBlock-tabs::after {
  clear: both;
  content: "";
  display: table;
}
.unstyledList, .tabBlock-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  height:50px;
  margin-left:15px;
}

.tabBlock { padding:0px; margin:0px; margin-top:20px;}

.tabBlock-tab {
  color: #666666;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  float: left;
  font-size:18px;
  padding: 0.625rem 1.25rem;
  position: relative;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
.tabBlock-tab:last-of-type {}
.tabBlock-tab::before, .tabBlock-tab::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
.tabBlock-tab::before {
  left: -2px;
  right: -2px;
  bottom:0px;
  width:50px;
  margin:0 auto;
}
.tabBlock-tab::after {
  background-color: transparent;
  bottom: -2px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 700px) {
  .tabBlock-tab {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.tabBlock-tab.is-active {
  position: relative;
  color: #2f60b0;
  z-index: 1;
}
.tabBlock-tab.is-active::before {
  background-color: #2f60b0;
}
.tabBlock-tab.is-active::after {
  background-color: white;
}

.tabBlock-content {}

.tabBlock-pane > :last-child {
  margin-bottom: 0;
}
