/**
 * @package         Logical-Arts Votes Free
 * @version         26.2.0
 * 
 * @author          Logical-Arts <info@logical-arts.de>
 * @copyright       Copyright © 2026 Logical-Arts All Rights Reserved
 * @license         GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
 * @link            https://www.logical-arts-extensions.com
 */

.larts-info-label {
	width: 100%;
	background-color: transparent;
	color: rgb(128,128,128);
}
.larts-info-box {
	width: 100%;
	border: 1px solid black;
	background-color: rgb(220, 220, 220);
	background-color: rgb(70, 100, 135);
	padding: 5px;
	color: black;
	color: rgb(220, 220, 220);
}

.lartsvotes {
 	--size: 40px;
 	--color-fg: gold;
 	--color-bg: lightgray;
	--color-rate: 0;
	white-space:nowrap;
  font-size:3em;
	font-size: var(--size);
	text-align: left;
}

.lartsvotes .star {
	--part-width: 50%;
  display: inline-block;
	position: relative;
	margin-right: 2px;
	color: var(--color-bg);
}
.lartsvotes .star::before {
	content: "\2605"; /* Unicode character for a star */
}

.lartsvotes .star-full::after {
	content: "\2605"; /* Unicode character for a star */
	color: var(--color-fg);
	width: 100%;
	position: absolute;
	left: 0;
}

.lartsvotes .star-half::after {
	content: "\2605"; /* Unicode character for a star */
	color: var(--color-fg);
	position: absolute;
	overflow: hidden;
	width: var(--part-width);
	left: 0;
}

.lartsvotes .star-empty::after {
	content: "\2605"; /* Unicode character for a star */
	color: var(--color-bg);
	position: absolute;
	overflow: hidden;
	width: 100%;
	left: 0;
}

.lartsvotes .rating {
	font-size: 0.5em;
  display: inline-block;
	position: relative;
	margin-left: 20px;
	color: var(--color-rate);
}

.lv-label {
	font-size: 16px;
}

.lartsvotes .lv-subtext {
	font-size: 12px;
	text-align: center;
}

.lv-comment {
	text-align: left;
}

.lv-beams .beams {
  display:grid;
  grid-template-columns:max-content auto;
  align-items:center;
}

.lv-beams .numstars {
  font-family: Roboto,Arial,sans-serif;
  line-height: 1rem;
  font-size: .75rem;
  letter-spacing: .025em;
  font-weight: 400;
  padding-right: 16px;
}

.lv-beams .beam-bg {
  background-color: rgb(232,234,237);
  height: 10px;
}

.lv-beams .beam-fg {
  height: 100%;
  border-radius: inherit;
  background-color: #bd0000;
}

.lv-beams .lvblock {
  display: flex;
  padding-top: 24px;
}

.lv-beams .lvcols {
  column-gap: 24px;
  display: grid;
  -moz-box-flex: 1;
  flex-grow: 1;
  grid-template-columns: max-content auto;
}

.lv-beams .rating {
  color: rgb(32,33,36);
  font-family: Roboto,Arial,sans-serif;
  line-height: 4rem;
  font-size: 2.5rem;
  letter-spacing: 0;
  font-weight: 400;
	text-align: center;
}


