.tabBlock-tabs::after {
  clear: both;
  content: "";
  display: table;
}


ol, ul {
  margin-bottom: 1.25rem;
  margin-top: 0;
}

ol, ul {
  padding: 0;
  margin-left: 1.25rem;
}

.unstyledList, .tabBlock-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabBlock {
  width: 1000px;
  margin: auto
}

.tabBlock-tab {
	width: 285px;
	background-color: white;
	border-color: #d8d8d8;
	border-left-style: solid;
	border-top: solid;
	border-width: 2px;
	color: #b5a8c5;
	cursor: pointer;
	display: inline-block;
	font-weight: 600;
	float: left;
	padding-top: 0.625rem;
	padding-right: 1.25rem;
	padding-left: 1.25rem;
	padding-bottom: 0.625rem;
	position: relative;
	-webkit-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
	margin-left: 10px;
	text-align: center
}
.tabBlock-tab:last-of-type {
  border-right-style: solid;
}
.tabBlock-tab::before, .tabBlock-tab::after {
  content: "";
  display: block;
  height: 4px;
  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: 1.0rem;
	padding-right: 1.0rem;
  }

.tabBlock-tab.is-active {
  position: relative;
  color: #975997;
  z-index: 1;
}
.tabBlock-tab.is-active::before {
  background-color: #975997;
}
.tabBlock-tab.is-active::after {
  background-color: white;
}

.tabBlock-content {
  background-color: white;
  border: 2px solid #d8d8d8;
  padding: 1.25rem;
}

.tabBlock-pane > :last-child {
  margin-bottom: 0;
}
