@charset "UTF-8";

/* Common */

body, h1, h2, h3, p, div, span, ol, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(-45deg, #bdc3c7,  #2c3e50);
  color: #333;
  font-family: 'Poppins', sans-serif;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #2c3e50;
}
h1 {
  color: #fff;
}

/* tabs */

.tabs {
  overflow: hidden;
  display: flex;
  max-width: 800px;
  width: 100%;
  height: 350px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

/* tab-header */

.tab-header {
  width: 200px;
  font-size: 18px;
}
.tab-header ol {
  display: flex;
  flex-direction: column;
}
.tab-header li {
  height: 70px;
  line-height: 70px;
  padding-left: 30px;
  background: #bdc3c7;
}
.tab-header li.active {
  border-right: 5px solid #3f2b96;
  background: #fff;
  font-weight: 600;
}
.tab-header li a {
  display: block;
  width: 100%;
  height: 100%;
}

/* tab-content */

.tab-content {
  position: relative;
  width: 100%;
  height: 290px;
  margin-top: 30px;
  padding: 0 30px 0 30px;
}
.tab-content::-webkit-scrollbar {
  display: none;
}
.tab-content > div {
  opacity: 0;
  width: 580px;
  position: absolute;
  transform: translateX(200px);
  transition: all 0.3s ease-in-out;
}
.tab-content > div.active {
  z-index: 10;
  opacity: 1;
  transform: translateX(0);
}
.tab-content__txt {
  margin-top: 15px;
  text-align: justify;
  word-break: break-all;
}