/* Like / dislike on the back of the homepage office cards. Thumbs in the two bottom corners.
   <button type="button"> needs the doubled class: the theme's global button rule outranks a single class. */
.card-overlay .office-votes {
	position: absolute;
	inset-inline: 1rem;
	bottom: .75rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
body .ov-vote.ov-vote {
	display: inline-flex; align-items: center; gap: .3rem;
	min-width: 2.4rem; padding: .3rem .45rem !important;
	background: transparent !important;
	color: #909090 !important;
	border: 0 !important;
	border-radius: var(--border-radius) !important;
	font-size: .82rem !important; font-weight: 600 !important; line-height: 1 !important;
	box-shadow: none !important;
	cursor: pointer;
}
body .ov-vote.ov-vote:hover { color: var(--secondary-color-dark) !important; }
body .ov-vote.ov-vote.is-active { color: var(--secondary-color-dark) !important; background: #fff !important; }
body .ov-vote.ov-vote:disabled { opacity: .6; cursor: default; }
.ov-vote svg.is-down { transform: rotate(180deg); }
.ov-vote-n:empty { display: none; }
