.sdw-child-pages {
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
	width: 100%;
}

.sdw-child-pages__title {
	background: var(--e-global-color-secondary);
	color: #fff;
	font-size: 25px;
	font-weight: 400;
	line-height: 1.2;
	font-family: "Lato", Sans-serif;
	margin: 0 0 10px;
	padding: 10px 24px;
}

.sdw-child-pages__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sdw-child-pages__item {
	margin: 0;
}

.sdw-child-pages__link {
	padding: 5px 0 5px 25px;
	background: #f3f3f3;
	color: #838383;
	line-height: 2.5;
	font-size: 14px;
	font-weight: 300;
	border-radius: 0;
	position: relative;
	transition: background 0.3s;
	display: block;
	width: 100%;
}

.sdw-child-pages__link:hover,
.sdw-child-pages__link:focus,
.sdw-child-pages__item.is-current .sdw-child-pages__link {
	background: #e8e8e8;
	color: #666;
	text-decoration: none;
}

.sdw-child-pages__link:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: transparent;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-ms-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.sdw-child-pages__link:hover:before,
.sdw-child-pages__link:focus:before,
.sdw-child-pages__item.is-current .sdw-child-pages__link:before,
.sdw-child-pages__link:hover:before {
	background: #ffd532;
}