@charset "utf-8";

.side-nav-list-item {
  display: none;
}

.side-nav-list-item.is-active {
  display: block;
}

.tab-content {
  display: none;
}

.tab-content.is-active {
  display: block;
}

.tab-content-area {
  margin: 0 0.75rem 0.75rem 0.75rem;
  padding: 0.5rem;
}

.tab-content-area[data-tab-category="1"] {
  border: 4px solid #00b141;
}

.tab-content-area[data-tab-category="2"] {
  border: 4px solid #d39f21;
}

.tab-menu {
  display: flex;
  justify-content: space-between;
}

.tab-menu__link {
  background: #6c757d;
  color: #fff!important;
  cursor: pointer;
  display: block;
  font-size: 1.5em;
  font-weight: bold;
  padding: 1rem;
  position: relative;
  text-align: center;
  text-decoration: none!important;
  width: 100%;
}

.tab-menu__link:first-of-type {
  margin-left: .75rem;
}

.tab-menu__link:first-of-type::after {
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 0 40px 40px 0;
  content: '';
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
}

.tab-menu__link:first-of-type.is-active {
  background: #00b141;
}

.tab-menu__link:last-of-type {
  margin-right: .75rem;
}

.tab-menu__link:last-of-type::before {
  border-color: #ffffff transparent transparent transparent;
  border-style: solid;
  border-width: 40px 40px 0 0;
  content: '';
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 0;
}

.tab-menu__link:last-of-type.is-active {
  background: #d39f21;
}