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

.faqContentsList {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: auto;
}
.faqContentsItem {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 1.25rem;
	width: 100%;
	height: auto;
	border-bottom: 1px solid var(--grey-color);
}
.faqContentsItem.active {
	background-color: rgba(0, 0, 0, 0.03);
}
.faqContentsQuestion {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	column-gap: 0.25rem;
	width: 100%;
	height: auto;
	padding: 1.25rem;
}
.faqContentsQuestion::before {
	content: "Q";
	display: inline-block;
	color: var(--primary-color);
	font-size: 1rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.5;
}
.faqContentsQuestion::after {
	content: "";
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url("/static/dgst/img/icon/ic_dropdown.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-left: auto;
	transition: all 0.25s ease-in-out;
}
.faqContentsItem.active .faqContentsQuestion::after {
	transform: rotate(180deg);
}
.faqContentsAnswer {
	display: none;
}
.faqContentsItem.active .faqContentsAnswer {
	display: block !important;
	width: 100%;
	height: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-bottom: 1.25rem;
	color: rgba(0, 0, 0, 0.5);
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.5;
}

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

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

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