#kw-list, #cutting-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

#kw-list .kw-button, #cutting-list .cutting-button {
	background-color: #FFF;
	padding: 0.5rem 2rem;
	border-radius: 10px;
}


#kw-list .kw-button:first-child, #cutting-list .cutting-button:first-child {
	background-color: var( --e-global-color-primary );
	color: white;
	font-weight: 600;
}

#kw-list .kw-button:hover, #cutting-list .cutting-button:hover {
	cursor: pointer;
}

#tech-specs-list, #materials-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

#tech-specs-list .tech-spec, #materials-list .material {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #E9E9E9;
	padding-bottom: 0.5rem;
}

#tech-specs-list .tech-spec:last-child, #materials-list .material:last-child {
	border:none;
}

#tech-specs-list .tech-spec span:first-child, #materials-list .material span:first-child {
	font-weight: 700;
}

@media only screen and (max-width: 1023px) {
	#kw-list, #cutting-list {
		flex-direction: column;
	}
}