@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.tab-wrapper {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tab-header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.tab-header .tab-btn {
  display: inline-flex;
  gap: 5px;
  text-align: center;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  /* border: 1px solid #6a00fb; */
  background-color: transparent;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}
.tab-header .tab-btn:focus {
  outline: none;
}
.tab-header .tab-btn i {
  margin-right: 5px;
  font-size: 10px;
}
.tab-header .tab-btn:hover,
.tab-header .tab-btn.active {
  color: #6a00fb;
}

.tab-header .underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  transform-origin: left;
  background-color: #6a00fb;
  transition: all 0.3s ease;
}

.tab-body {
  display: flex;
  overflow: hidden;
}
.tab-body .tab-content {
  min-width: 100%;
  padding: 20px;
  font-size: 12px;
  transition: all 0.3s;
  text-align: justify;
}
.tab-body ul li div.mainContent:hover,
.tab-body ul li div.moreContent:hover {
  background-color: #fff;
  color: #488bf7;
}
.tab-body ul li div.mainContent {
  color: #333;
  border: 1px solid var(--ul-cl);
  padding: 10px 20px;
  border-radius: 50px;
  text-transform: capitalize;
  display: inline-flex;
  gap: 10px;
  font-weight: bold;
  font-size: 15px;
}
.tab-body .tab-content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;

  border: 1px solid #e5e5e5;
  padding: 10px 20px;
  border-radius: 50px;
  color: #333;
  /* margin-bottom: 10px; */
}
.tab-body .tab-content ul li {
  cursor: pointer;
  flex: 1;
}
.tab-body .tab-content ul.moreContent {
  display: none;
}
.tab-wrapper[rounded] {
  border-radius: 10px;
}
.tab-header[full-width] .tab-btn {
  flex: 1;
  text-align: center;
}
.tab-header[background] {
  background-color: #6a00fb;
}
.tab-header[background] .tab-btn {
  color: #fff;
}
.tab-header[background] .tab-btn.active {
  color: #6a00fb;
}
.tab-header[background] .tab-btn.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
}
.tab-header[background] .underline {
  background-color: #fff;
  height: 100%;
  bottom: 0;
}
.tab-header[border] .tab-btn {
  border: 1px solid #e5e5e5;
}
.tab-header[border] .tab-btn.active {
  border: 1px solid #6a00fb;
}
.tab-header[border] .tab-btn.active {
  color: #fff;
}
.tab-header[border] .underline {
  height: 100%;
  bottom: 0;
}

/* Credits */

.credits {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #fff;
  background-color: #6a00fb;
}
.credits a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.credits a:hover {
  text-decoration: underline;
}
