#quicklinks {
	> ul {
		margin: 0;
		padding: 0;
		> li {
			list-style-type: none;
			float: left;
			width: 100%;
			> a {
				position: relative;
				display: inline-block;
				padding-left: 20px;
				box-sizing: border-box;
				&:after {
					@extend .icon-arrow-right-after;

					position: absolute;
					left: 0;
					top: 5px;
					font-size: 13px;

				}
				&:hover {
					&:after {
						-webkit-animation: toRightFromLeft 0.5s forwards;
						-moz-animation: toRightFromLeft 0.5s forwards;
						animation: toRightFromLeft 0.5s forwards;
					}
				}
			}
		}

	}
}