/*
 * Fork change (1.0.3): structure only. Size, colour and spacing belong to the
 * theme, which is why nothing here uses !important or sets a font size: the
 * line inherits from the price it sits in until the theme says otherwise.
 */
.sidrena-cijena {
	display: block;
	position: relative;
}

.sidrena-cijena--has-tooltip {
	cursor: help;
}

.sidrena-cijena__icon,
.sidrena-cijena__info > .sidrena-cijena__icon {
	display: none !important;
}

.sidrena-cijena__tooltip {
	position: absolute;
	left: 0;
	bottom: calc(100% + 8px);
	z-index: 20;
	width: min(280px, 70vw);
	padding: 0.65em 0.8em;
	border-radius: 6px;
	background: #1d2327;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
	transform: translateY(4px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.sidrena-cijena__tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 1.2em;
	border: 6px solid transparent;
	border-top-color: #1d2327;
}

.sidrena-cijena:hover .sidrena-cijena__tooltip,
.sidrena-cijena:focus .sidrena-cijena__tooltip,
.sidrena-cijena:focus-within .sidrena-cijena__tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sidrena-cijena:focus {
	outline: none;
}

.sidrena-cijena:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.sidrena-cijena-item {
	display: inline-block;
	max-width: 100%;
}

.sidrena-cijena-item__price {
	display: block;
	font-size: 1em;
	line-height: 1.4;
}

.sidrena-cijena-item__price del {
	opacity: 0.7;
	margin-right: 0.35em;
}

.sidrena-cijena-item__price ins {
	text-decoration: none;
}
