.ddcolortabs {
	position: relative;
	display: flex;
	/* gap: 5px; */
	flex-wrap: wrap;
	clear: both;
	padding: 0;
	width: 100%;
	background: transparent;
	margin: 0;
	top: -5px;
	cursor: pointer;
}

.ddcolortabs li {
	display: inline;
	flex: 1;
	/* margin: 0 2px 0 0; */
	padding: 0;
}

.ddcolortabs a {
	/* float: left; */
	color: var(--white-color);
	text-decoration: none;
	letter-spacing: 1px;
}

.ddcolortabs a span {
	display: block;
	clear: both;
	text-align: center;
	background: var(--dark-bg-color);
	padding: 8px;
	position: relative;
	transition: 0.2s;
}

/* .ddcolortabs li:not(:last-child) a span {
	border-right: 1px solid rgba(255, 255, 255, 0.5);
} */
.ddcolortabs li:not(:last-child) a span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	height: 80%;
	width: 1px;
	background: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%);
	/* border-radius: 999999px; */
	/* z-index: 1; */
}

.ddcolortabs a:hover span,
.ddcolortabs .selected a span {
	background-color: var(--tab);
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv_a {
	position: absolute;
	border: 1px solid rgba(0, 0, 0, 0.175);
	/*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font: normal 8pt tahoma;
	line-height: 18px;
	z-index: 100;
	background-color: var(--white-color);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	min-width: 200px;
	visibility: hidden;
	border-radius: var(--rounded);
	overflow: hidden;
}

.dropmenudiv_a a {
	width: auto;
	display: block;
	/* text-indent: 5px; */
	border-bottom: 1px solid rgba(0, 0, 0, 0.175);
	padding: 8px;
	text-decoration: none;
	color: black;
}

* html .dropmenudiv_a a {
	/*IE only hack*/
	width: 100%;
}

.dropmenudiv_a a:hover {
	/*THEME CHANGE HERE*/
	background-color: var(--tab);
	color: var(--white-color);
}
