.yith-wcwl-add-to-wishlist {
	margin: 0 0 15px 22px;

	> div {
		position: relative;
		
		a,
		i {
			display: flex;
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			align-items: center;
			justify-content: center;
		}
		a {
			border: 1px solid #E3E3E3;
			border-radius: 0 !important;
			font-size: 16px;
			color: #000;
			text-indent: 99999px;
			overflow: hidden;

			&:hover {
				border-color: #000;
				background-color: #000;
				color: #fff;
			}
		}
		i {
			text-indent: 0;
		}

		.feedback {
			display: inline-block;
			padding: 5px 10px;
			margin-bottom: 7px;
			position: absolute;
			bottom: 100%;
			left: 0;
			border-radius: 3px;
			background-color: #fff;
			color: #000;
			opacity: 0;
			visibility: hidden;
			white-space: nowrap;
			box-shadow: 0 5px 12px rgba(#000, 0.1);
			transition: opacity 0.1s, visibility 0.1s;
		}
		&.show {
			display: flex !important;
			width: 53px;
			height: 50px;
		}
		&:not(.yith-wcwl-add-button) {

			i {
				margin-right: 10px;

				&:before {
					content: '\f004';
				}
			}
		}

		&:hover {

			.feedback {
				opacity: 1;
				visibility: visible;
			}
		}
	}
}