.cut-tabs-wrapper {
	width: 100%;
}

.cut-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 2px solid #e0e0e0;
}

.cut-layout-vertical {
	display: flex;
	align-items: flex-start;
}

.cut-layout-vertical .cut-tabs-nav {
	flex-direction: column;
	border-bottom: none;
	border-right: 2px solid #e0e0e0;
	min-width: 200px;
}

.cut-layout-vertical .cut-tabs-contents {
	flex: 1;
}

.cut-tab-title {
	padding: 12px 20px;
	cursor: pointer;
	font-weight: 600;
	background: #f5f5f5;
	border: 1px solid transparent;
	transition: all 0.25s ease;
	user-select: none;
}

.cut-tab-title:hover {
	opacity: 0.85;
}

.cut-tab-title.cut-active {
	background-color: #0073aa;
	color: #ffffff;
}

.cut-tabs-contents {
	position: relative;
}

.cut-tab-content {
	display: none;
	padding: 20px;
	background: #ffffff;
	animation: cut-fade-in 0.3s ease;
}

.cut-tab-content.cut-active {
	display: block;
}

@keyframes cut-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
