body {
	background-color: rgb(34, 34, 34);
	color: whitesmoke;
}

.rowBicho {
	background-color: rgb(0, 0, 0);
	color: aliceblue;

	&:hover {
		cursor: pointer;
		background-color: rgb(51, 51, 51);
	}
}

.star {

	font-size: 30px;
	color: yellow;

	&::after {
		color: rgb(163, 163, 163);
	}

	&[fill="0"] {
		&::after {
			content: "☆☆☆";
		}
	}

	&[fill="1"] {
		&::before {
			content: "★";
		}

		&::after {
			content: "☆☆";
		}
	}

	&[fill="2"] {
		&::before {
			content: "★★";
		}

		&::after {
			content: "☆";
		}
	}

	&[fill="3"] {
		&::before {
			content: "★★★";
		}
	}

}