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

.directionsImage {
	width: 100%;
	height: auto;
}

.directionsImage img {
	width: 100%;
}

.directionsInformationList {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 0.875rem;
	width: 100%;
	height: auto;
}
.directionsInformationItem {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	row-gap: 0.25rem;
	width: 100%;
	height: auto;
}
.directionsInformationLabel {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	column-gap: 0.5rem;
	width: 100%;
	height: auto;
}
.iconLocation::before {
	content: "";
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("/static/dgst/img/icon/ic_location.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.iconCall::before {
	content: "";
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("/static/dgst/img/icon/ic_call.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.iconFax::before {
	content: "";
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("/static/dgst/img/icon/ic_fax.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.directionsInformationValue {
}

.directionsPublicRouteTitle {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	column-gap: 0.5rem;
	width: 100%;
	height: auto;
	color: var(--text-color);
	font-size: 1rem;
	font-weight: var(--font-weight-semi-bold);
	line-height: 1.4;
}
.directionsPublicRouteTitle.iconBus::before {
	content: "";
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	background-image: url("/static/dgst/img/icon/ic_bus.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.directionsPublicRouteList {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	row-gap: 1.25rem;
	width: 100%;
	height: auto;
}
.directionsPublicRouteItem {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	row-gap: 0.5rem;
	width: 100%;
	height: auto;
}
.directionsPublicRouteItem strong,
.directionsPublicRouteValue {
	display: block;
	width: 100%;
	color: rgba(0, 0, 0, 0.7);
	font-size: 0.875rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.4;
}
.directionsPublicRouteItem strong.primary {
	color: var(--primary-color);
}

@media screen and (min-width: 768px) {
	.directionsInformationList {
		flex-direction: row;
		flex-wrap: nowrap;
		column-gap: 5rem;
	}
	.directionsInformationItem {
		width: auto;
	}
}

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

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