
.footer__menu__list {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
	min-width: 150px;
}


.footer__menu__list a {
	display: flex;
	align-items: center;
	column-gap: 5px;

}

.footer__menu__list a:before {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background-color: #376DF6;
	transition: all 0.3s;
}

a.selected,
.footer__menu__list a:hover{
	color: #376DF6!important;
}

a.selected:before,
.footer__menu__list a:hover:before{
	width: 15px;
}
