.CustomTabsView {
	box-shadow: 0 0 3px 0 #999;
	border-radius: 15px;
}

.CustomTabsView .tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
}
.CustomTabsView .tabs .tab-item {
	display: block;
	padding: 10px 20px;
	color: var(--color-grey_light);
	cursor: pointer;
	text-decoration: none;
}
.CustomTabsView .tabs .tab-item:first-child {
	border-top-left-radius: 15px;
}
.CustomTabsView .tabs .tab-item:hover,
.CustomTabsView .tabs .tab-item.active {
	color: var(--color-red_light);
	background-color: var(--color-red_lighter);
}

.CustomTabsView .contents {
	padding: 10px 25px;
}
.CustomTabsView .contents .tab-content {
	display: none;
}
.CustomTabsView .contents .tab-content.active {
	display: block;
}