/* Host element */
:host {
	display: block;
}

[part~="wrapper"] {
	box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	padding: 32px;
	margin-bottom: 32px;
}

::slotted([slot="title"]) {
	display: block;
	margin-bottom: 32px;
}

[part~="content"] {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

[part~="map"] {
	width: 70%;
}

[part~="map"] iframe {
	height: 500px;
}

.mmx-abus-our-location__map-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 14px;
	color: var(--mmx-abus-our-location__link-color, #1a73e8);
	text-decoration: none;
}

.mmx-abus-our-location__map-link:hover {
	text-decoration: underline;
}

[part~="addresses"] {
	width: 28%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mmx-abus-our-location__address-block {
	display: flex;
	flex-direction: column;
}

.mmx-abus-our-location__flag img {
	display: block;
}

.mmx-abus-our-location__address-description {
	margin-bottom: 10px;
}

.mmx-abus-our-location__address-text {
	padding-left: 10px;
}

.mmx-abus-our-location__address-text p {
	margin: 0;
}

.mmx-abus-our-location__address-text-one {
	margin-bottom: 5px;
}

.mmx-abus-our-location__address-text-two {
	margin-bottom: 0;
	line-height: 1.4;
}

@media screen and (max-width: 768px) {
	[part~="content"] {
		flex-direction: column;
	}

	[part~="map"] {
		width: 100%;
	}

	[part~="map"] iframe {
		height: 300px;
	}

	[part~="addresses"] {
		width: 100%;
		flex-direction: row;
		gap: 40px;
	}
}

@media screen and (max-width: 500px) {
	[part~="addresses"] {
		flex-direction: column;
		gap: 0;
	}
}
