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

/* 각 열의 공통 너비를 지정 */
.designatedQuantityTable th:nth-child(1),
.designatedQuantityTable td:nth-child(1) {
	width: 5rem; /* 1번째 열의 너비 */
}

.designatedQuantityTable th:nth-child(2),
.designatedQuantityTable td:nth-child(2) {
	width: 6.25rem; /* 2번째 열의 너비 */
}

.designatedQuantityTable th:nth-child(3),
.designatedQuantityTable td:nth-child(3) {
	width: 11.25rem; /* 3번째 열의 너비 */
}
.designatedQuantityTable th:nth-child(4),
.designatedQuantityTable td:nth-child(4) {
	width: 11.25rem; /* 3번째 열의 너비 */
}

.designatedQuantityTable th:nth-child(5),
.designatedQuantityTable td:nth-child(5) {
	width: 6.25rem; /* 4번째 열의 너비 */
}

.designatedQuantityFlowList {
	width: 100%;
	height: auto;
	padding-left: 1.25rem;
}

.designatedQuantityFlowItem {
	width: 100%;
	height: auto;
	margin-bottom: 0.25rem;
}

.designatedQuantityFlowItem ul {
	padding-left: 1.25rem;
}

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

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

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

.iconTooltip {
	display: inline-block;
	vertical-align: middle;
}

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

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

.searchTooltipContentsWrapper {
	position: absolute;
	top: 3.375rem;
	right: 0;
	display: none;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 0.25rem;
	max-width: 10rem;
	width: 100%;
	height: auto;
	background-color: var(--white-color);
	padding: 1.25rem;
	border: 2px solid var(--primary-color);
	border-radius: 0.75rem;
	z-index: 0;
	text-align: left;
}
.searchTooltipContentsWrapper.show {
	display: flex !important;
	z-index: 8;
}
.searchTooltipContentsWrapper.show::before {
	content: "";
	position: absolute;
	top: -0.875rem;
	left: 0.5rem;
	display: inline-block;
	width: 1.5rem;
	height: 0.875rem;
	background-image: url("/static/dgst/img/icon/ic_tooltip_horn.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 9;
}

.searchTooltipContentsWrapper h1 {
	color: rgba(0, 0, 0, 0.7);
	font-size: 1rem;
	font-weight: var(--font-weight-semi-bold);
	line-height: 1.4;
}

.searchTooltipContentsWrapper p {
	color: rgba(0, 0, 0, 0.7);
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.4;
}


@media screen and (min-width: 1024px) {
	.searchTooltipContentsWrapper {
		position: absolute;
		top: 4.25rem;
		right: 0.625rem;
		min-width: 22rem;
	}
}