﻿/* Tabs */
.tabs {
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.tab-links .is-active {
  background: var(--primary-color);
}

.tabs__header {
  display: block;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  /* display: flex; */
  overflow: auto;
  /* justify-content: start; */
}

.tabs__heading {
  background-color: var(--medium-gray-color);
  padding: 10px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  min-width: 186px;
  text-align: center;
  border: 0;
  color: #ffffff;
  margin-right: 8px;
  font-family: 'Poppins', sans-serif;
  /* max-width: 129px; */
  margin-bottom: 15px;
  position: relative;
  height: 50px;
  border-radius: 22px 0;
  border: 2px solid var(--yellow-color-2);
  box-shadow: 3px 4px 5px gainsboro;
}

.tabs__heading:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 1px solid transparent;
  border-radius: 10px 10px 0 0;
  box-shadow: inset 0 -3px 3px rgb(0 0 0 / 5%);
  content: '';
}

.tabs__heading:hover {
  background-color: var(--dark-blue-color);
}

.tabs__heading.is-active:after {
  background-color: var(--dark-blue-color);
  color: #ffffff;
  border-color: var(--dark-blue-color);
}

.tabs__content {
  display: none;
}

.tabs__content.is-active {
  display: block;

}

.tabs__heading .is-active {
  background-color: var(--dark-blue-color);
}

.tabs__body {
  padding: 12px;
}