.Young_measure_container {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.Young_measure_card_image {
	width: 24px;
}

.Young_measure_card_heading {
	font-size: 20px;
}

.Young_measure_card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	background-color: var(--filinea-gray-background);
	border-radius: 8px;
	width: calc(253.333333px - 11.4px);
	font-size: 14px;
	position: relative;
}

.Young_measure_history,
.Young_measure_edit {
	cursor: pointer;
	position: absolute;
	top: 16px;
	right: 36px;
}

.Young_measure_history {
	top: 16px;
	right: 58px;
}

.Young_measure_card::after {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	right: 16px;
	top: 20px;
}

.Young_measure_card.active::after {
	background: var(--success);
}

.Young_measure_card.inactive::after {
	background: var(--red);
}

.measure_tooltip::before {
	content: attr(data-tooltip);
	position: absolute;
	top: -5px;
	left: 50%;
	transform: translate(-50%, -100%);
	padding: 3px;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	z-index: 20;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	color: black;
	text-align: center;
	background-color: white;
}

.Young_measure_history.measure_tooltip::before {
	width: 109px;
}

.measure_tooltip:hover::before {
	opacity: 1;
}