/* 
Autor: Tag Web Design
Versao: 1
Data: 2020-08-13
Proibido o uso de terceiros
*/

.tagCheck {
	display: flex;
	flex-direction: row;
	column-gap: 7px;
	min-height: 24px;
}

.tagCheck p {
	height: min-content;
	margin-top: 0;
	align-self: center;
}
.tagCheck span {
	display: block;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	align-self: flex-start;
	background: url(botoes.webp) no-repeat;
	background-size: 49px 49px;
	cursor: pointer;
}

.tagCheck.radiobutton span {
	background-position: left top;
}

.tagCheck.radiobutton.ativo span {
	background-position: left bottom;
}

.tagCheck.checkbox span {
	background-position: right top;
}

.tagCheck.checkbox.ativo span {
	background-position: right bottom;
}
