/*
--------------------------------------
Container
--------------------------------------
*/

.product-features__container {
	padding-top: 1.5em;
}

/*
--------------------------------------
Title
--------------------------------------
*/

.product-features__title {
	padding-bottom: 1.5em;
}

.product-features__title .product-features__title-text {
	font-family: var(--e-global-typography-primary-font-family);
	font-size: 28px;
	font-weight: 400;
	color: #1E1E1E;
	line-height: 110%;
}

/*
--------------------------------------
Feature List
--------------------------------------
*/

/*Container*/

.product-feature__list-container {
	font-family: var(--e-global-typography-secondary-font-family);
	overflow: hidden;
	height: 0;
	transition: all .3s ease-in-out;
}

.product-feature__list.product-feature__list--is-hidden {
	transition: height 0.5s ease-in-out;
	height: 0;
}

/*Item content*/

.product-feature__list .product-feature__list-item {
	display: flex;
	flex-direction: column;
	border-left: 1px solid rgba(0, 0, 0, 0.15);
	padding-left: 2em;
}

.product-feature__list li:not(:last-of-type) {
	margin-bottom: 1em;
}

.product-feature__list strong {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	text-transform: uppercase;
}

.product-feature__list .product-feature__list-item-text {
	font-size: 16px;
	font-weight: 400;
	color: rgba(26, 18, 10, 0.40);
	line-height: 24px;
	letter-spacing: 0.32px;
}

/*Btn*/

.product-feature__btn-container {
	margin-top: 1em;
}

.product-feature__btn-container .product-feature__btn {
	font-family: var(--e-global-typography-secondary-font-family);
	background-color: transparent;
	color: var(--e-global-color-text);
	border: none;
	border-bottom: 1px solid var(--e-global-color-text);
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	padding-bottom: 3px;
}

.product-feature__btn-container .product-feature__btn:focus,
.product-feature__btn-container .product-feature__btn:hover {
	color: var(--e-global-color-secondary);
	border-bottom: 1px solid var(--e-global-color-secondary);
}