/* =================================================================
   Emerald Glass Box
   ================================================================= */

.emerald-glass-box {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	padding: 20px 12px;
	border: 0.61px solid #ffffff54;
	border-radius: 16px;
	background-color: #ffffff26;
	box-shadow: 0 4.92px 19.67px 0 #1f2d2a14;
	-webkit-backdrop-filter: blur(5.29px);
	backdrop-filter: blur(5.29px);
}

.emerald-glass-box__item {
	position: relative;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: min-content;
	padding: 8px 20px;
	text-align: center;
}

.emerald-glass-box__item + .emerald-glass-box__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18%;
	bottom: 18%;
	width: 0.61px;
	background-color: #ffffff54;
	pointer-events: none;
}

.emerald-glass-box__label {
	margin: 0;
	color: #ffffff;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	white-space: nowrap;
}

.emerald-glass-box__value {
	margin: 0;
	color: #ffffff;
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.emerald-glass-box {
		flex-direction: column;
		padding: 12px 16px;
	}

	.emerald-glass-box__item {
		flex: 1 1 auto;
		padding: 16px 12px;
	}

	.emerald-glass-box__item + .emerald-glass-box__item::before {
		top: 0;
		right: 18%;
		bottom: auto;
		left: 18%;
		width: auto;
		height: 0.61px;
	}
}
