.dialog-html {
	min-width: 300px;
	height: 70%;
	min-height: 220px;
	box-shadow: 0 6px 6px hsl(0deg 0% 0% / 0.3);
	border: none;
	border-radius: 4px;
	overflow: hidden;
	padding: 0 0 17px;
}

.dialog-html::backdrop {
	background-color: black;
	opacity: 0.5;
}

.dialog-html .header {
	display: flex;
	padding: 17px;
}

.dialog-html .header button {
	all: unset;
	cursor: pointer;
}

.dialog-html span {
	flex-grow: 1
}

.dialog-html .dialog-body {
	overflow: auto;
	padding-left: 17px;
	height: calc(100% - 40px);
}

.gpsr-photos {
	display: flex;
	gap: 10px;
	width: 140px;
	flex-direction: column;
}

.gpsr-photos img {
	width: 120px;
	cursor: pointer;
}

.gpsr-content {
	display: flex;
	gap: 10px;
	padding-right: 17px;
}

.gpsr-photo img {
	width: 420px;
}

.gpsr-contact {
	font-size: 0.8em;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
	padding: 17px;
	margin: 10px 10px 10px 0;
}

.gpsr-ct {
	font-weight: bold;
}

@media (max-width: 600px) {

	.gpsr-photo {
		display: none;
	}

	.gpsr-photos img {
		width: 100%
	}

	.gpsr-photos {
		width: 100%
	}

}