@import url('https://fonts.googleapis.com/css2?family=Unbounded&display=swap');

:root {
  --primary-clr: #2e2e2e;
  --white: #5a3e75;
  --text-clr: #2e2e2e;
  --tabs-list-bg-clr: #6b4c8b;
  --btn-hvr: #fff;
}

p {
  text-transform: lowercase;
}

* {
  scrollbar-width: auto;
  scrollbar-color: #6B4C8B #2e2e2e;
}

*::-webkit-scrollbar {
  width: 12px;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: #6B4C8B;
  border-radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Unbounded", sans-serif;
}

body {
  background: var(--primary-clr);
  font-size: 12px;
  color: #fff;
  cursor: url("/img/asterisk.png"), auto;

}

.flex_align_justify{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.wrapper{
  min-height: 100vh;
  padding: 0 20px;
  border-radius: 20px;
}

.tc_wrap{
  width: 700px;
  max-width: 100%;
  height: 450px;
  background: var(--white);
  display: flex;
  border-radius: 3px;
  overflow: hidden;
}

.tc_wrap .tabs_list{
  width: 200px;
  background: var(--tabs-list-bg-clr);
  height: 100%;
}

.tc_wrap .tabs_content{
  width: calc(100% - 200px);
  padding: 0 10px 0 20px;
  height: 100%;
}

.tc_wrap .tabs_content .tab_head,
.tc_wrap .tabs_content .tab_foot{
  color: #fff;
  padding: 25px 0;
  height: 70px;
  border-radius: 20px;

}

.tc_wrap .tabs_content .tab_head{
  text-align: center;
}

.tc_wrap .tabs_content .tab_body{
  height: calc(100% - 140px);
  overflow: auto;
}

.tc_wrap .tabs_list ul{
  padding: 70px 20px;
  text-align: right;
  color: #a876da;
}

.tc_wrap .tabs_list ul li{
  padding: 10px 0;
  position: relative;
  margin-bottom: 3px;
  font-weight: bold;
  transition: all 0.5s ease;
}

.tc_wrap .tabs_list ul li:before{
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 2px;
  height: 100%;
  background: #5a3e75;
  opacity: 0;
  transition: all 0.5s ease;
}

.tc_wrap .tabs_list ul li.active,
.tc_wrap .tabs_list ul li:hover{
  color: #5a3e75;
  cursor: url("/img/asterisk.png"), auto;
}

.tc_wrap .tabs_list ul li.active:before{
  opacity: 1;
}

.tc_wrap .tabs_content .tab_body .tab_item h3{
  padding-top: 10px;
  margin-bottom: 10px;
  color: #fff;
}

.tc_wrap .tabs_content .tab_body .tab_item p{
  margin-bottom: 20px;
}

.tc_wrap .tabs_content .tab_body .tab_item.active{
  display: block !important;
}

a {
  text-decoration: underline;
  color: #fff;
}
