.group::after, .tabBlock-tabs::after {
  clear: both;
  content: "";
  display: table;
}

*, ::before, ::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}



.unstyledList, .tabBlock-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e2e2e2;
}

.tabBlock {
  margin: 40px 0;
}

.tabBlock-tab {
  background-color: #fffcf7;
  border-color: #d8d8d8;
  border-left-style: solid;
  color: #2d2d2d;
  font-size: 22px;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  float: left;
  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 {
  border-right-style: solid;
}
.tabBlock-tab::before, .tabBlock-tab::after {
  /* content: ""; */
  display: block;
  height: 3px;
  position: absolute;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
.tabBlock-tab::before {
  /* background-color: #b5a8c5; */
  /* left: -2px; */
  /* right: -2px; */
  /* top: -2px; */
}
.tabBlock-tab::after {
  background-color: transparent;
  bottom: -2px;
  left: 0;
  right: 0;
}

  .tabBlock-tab {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
.tabBlock-tab.is-active {
  position: relative;
  color: #ffffff;
  z-index: 1;
  background: #b28850;
}
.tabBlock-tab.is-active::before {
  /* background-color: #975997; */
}
.tabBlock-tab.is-active::after {
  background-color: white;
}

.tabBlock-content {
  background-color: #fffcf7;
  padding: 25px 15px 15px;
}

.tabBlock-pane > :last-child {
  margin-bottom: 0;
}
