@import url("/static/dgst/css/pages/safety_information.css");
@import url("/static/dgst/css/modules/card.css");

.dangerousMaterialRangeInformationLabel {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	column-gap: 0.375rem;
	width: 100%;
	height: auto;
	padding: 0.375rem;
	border-radius: 0.625rem;
}

.iconDangerous {
	background-color: #ff4242;
	color: var(--white-color);
}

.iconNonDangerous {
	background-color: #0075e0;
	color: var(--white-color);
}

.iconDangerous::before,
.iconNonDangerous::before {
	content: "";
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.iconDangerous::before {
	background-image: url("/static/dgst/img/icon/ic_dangerous.svg");
}
.iconNonDangerous::before {
	background-image: url("/static/dgst/img/icon/ic_non_dangerous.svg");
}

.dangerousMaterialRangeInformationContentsWrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 1.25rem;
	width: 100%;
	height: auto;
}

.dangerousMaterialRangeInformationContents {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: auto;
	padding: 1rem;
	background-color: var(--white-color);
	color: rgba(0, 0, 0, 0.5);
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.4;
	border-radius: 0.625rem;
}

.weak {
	font-size: 0.75rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.4;
	text-transform: super;
}

@media screen and (min-width: 768px) {
	.dangerousMaterialRangeInformationContentsWrapper {
		max-width: 53.125rem;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (min-width: 1024px) {
	.dangerousMaterialRangeInformationContentsWrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: stretch;
		column-gap: 1.25rem;
		width: 100%;
		height: auto;
	}

	.dangerousMaterialRangeInformationLabel {
		flex-direction: column;
		row-gap: 0.5rem;
		width: 8.125rem;
		height: 8.125rem;
		aspect-ratio: 1/1;
	}

	.iconDangerous::before,
	.iconNonDangerous::before {
		width: 2.5rem;
		height: 2.5rem;
	}

	.dangerousMaterialRangeInformationContents {
		flex: 1;
		justify-content: flex-start;
		align-items: center;
		font-size: 1rem;
	}
}

@media screen and (min-width: 1440px) {
}
