.vertical-tabs {
	font-family: Raleway;
	position: relative;
	width: 100%;
	height: 155px;
	background: transparent;
}

.tabs-side {
	display: flex;
	width: 13%;
	height: 100%;
	flex-direction: column;
	background: transparent;
}

.vertical-tabs input {
	display: none;
}

.vertical-tabs label {
	display: block;
	width: 100%;
	padding: 2px;
	background: transparent;
	color: var(--text);
	font-weight: 400;
	cursor: pointer;
	box-sizing: border-box;
	border-bottom: 1px solid var(--bg);
}

.vertical-tabs label:hover {
	color: var(--accent);
}

.tab-content {
	position: absolute;
	width: calc(100% - 13%);
	height: 100%;
	top: 0;
	left: 14%;
	box-sizing: border-box;
	overflow: auto;
	text-align:justify;
  padding:5px;
	z-index: -1;
	opacity: 0;
}

.tabs-side input:checked + label {
	background: var(--bg);
	color: var(--accent);
}

.vertical-tabs input:checked + label {
	transition: all ease 0.2s;
}

.tabs-side input:checked + label + .tab-content {
	z-index: 2;
	opacity: 1;
	transition: all ease 0.7s;
}

.post_left .info {
  width:100%;
  height:150px;
  display:flex;
}

.post_left .info .author_info {
  width: 40%;
  display:flex;
  flex-direction:column;
  justify-content: end;
  align-items: start;
  gap: 5px;
  padding:5px;
  box-sizing:border-box;
}

.post_left .info .author_name {
  width:60%;
  display:flex;
	font-family: 'bokor';
  flex-direction:column;
  align-items: center;
  justify-content: center;
  text-align: right;
  font-size: 30px;
  border-right: 3px solid var(--accent);
  padding:5px;
  box-sizing:border-box;
}

.playedby {flex-grow:1;max-width:250px;height:calc(100% - 25px);box-sizing:border-box;padding:20px;display:flex;align-items:center;flex-direction:column; gap:5px;justify-content:center;}