ul.w3w_holder {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
		rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

ul.w3w_holder li {
	display: block;
	padding: 0;
	margin: 0;
	position: relative;
}

ul.w3w_holder li a {
	display: block;
	padding: 1.5rem 2rem;
	text-decoration: none;
	font-weight: 500;
	color: var(--global-palette3);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

ul.w3w_holder li a span {
	display: block;
	position: relative;
}

ul.w3w_holder li a span em {
	font-style: normal;
	color: rgba(225, 31, 38, 1);
}

ul.w3w_holder li + li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1.5rem;
	right: 1.5rem;
	height: 1px;
	background-color: #e0e0e0;
}

ul.w3w_holder li a span:last-child {
	padding-right: 1.5rem;
}

ul.w3w_holder li a span:last-child::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1rem;
	height: 1rem;
	background-image: url("/wp-content/themes/md-block-theme-2022/assets/icons/Midland-Skin-Arrow-Right.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: right 0.3s ease-in-out;
}

ul.w3w_holder li a:hover span:last-child::after {
	right: -0.5rem;
}
