

.tabs--container {
  margin: 0 auto;
}

.tabs {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tabs--scrollable {
  display: flex;
  position: relative;
  top: 1px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-direction: row;
}

.tabs__scroller {
  background: #453f46!important;
  border: 0 none!important;
  color: #fff!important;
  font-size: 1em!important;
  padding: 0 0.75em!important;
}
.tabs__scroller .fa {
  position: relative;
}
.tabs__scroller--left .fa {
  left: -1px;
}
.tabs__scroller--right .fa {
  right: -2px;
}
.tabs__scroller[disabled] {
  opacity: 0.5;
}
.tabs__scroller:focus {
  outline: none;
}

.tabs__toggle-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 1;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.tabs__toggle {
  /* display: flex; */
	font-size: 16px;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-grow: 1;
  flex-shrink: 1;
  /* flex-basis: 0%; */
  white-space: nowrap;
}

.tabs__toggle {
  margin: 0 2px;
  padding: 10px 24px;
  color: #8900ac;
  text-align: center;
  background: #eee;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #e4e4e4;
}
.tabs__toggle:first-child {
  margin-left: 0;
}
.tabs__toggle:hover {
  color: #58595b;
}
.tabs__toggle--active {
  color: #58595b;
  background: #fff;
  border-right: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
  border-bottom-color: transparent;
}
.tabs__toggle--active::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  left: -1px;
  height: 4px;
  background-color: #8900ac;
}

.tabs__tabs-group {
  border: 1px solid #e4e4e4;
}

.tabs__tab {
  width: 100%;
  padding: 24px;
}

.tabs__left {
  position: absolute;
  left: 0;
  opacity: 0.5;
}
.tabs__left::before {
  content: "<";
  background: #8900ac;
  color: #fff;
  width: 30px;
  display: inline-block;
}
.tabs__left--active {
  opacity: 1;
}

.tabs__right {
  position: absolute;
  right: 0;
  opacity: 0.5;
}
.tabs__right::after {
  content: ">";
  background: #8900ac;
  color: #fff;
  width: 30px;
  display: inline-block;
}
.tabs__right--active {
  opacity: 1;
}
@media (max-width: 576px) {
  .cardbox {
    height: 570px!imporant;
	}
	.tabs__toggle {
		font-size: 12px;}
}