#nrv-gm-map-container,
#nrv-gm-details-container,
#nrv-gm-items-list{
	height: clamp(400px, 35vw, 800px);
}
#nrv-gm-map{
	border-radius: 10px 0 0 10px;
}
#nrv-gm-details-container{
	border:1px solid rgb(85 142 213 / 20%);
	border-radius:0 10px 10px 0;
	overflow:hidden;
}
.nrv-gm-template-item:not(:last-child){
	border-bottom:.5px solid rgb(85 142 213 / 20%);
}
.nrv-gm-template-item:not(:first-child){
	border-top:.5px solid rgb(85 142 213 / 20%);
}
.nrv-gm-template-item.selected {
	background: #edf7ff;
}
.nrv-gm-template-item h3{
	font-size:20px;
	margin-bottom:8px;
}
.nrv-gm-template-item h4{
	font-size:16px;
	font-weight:400;
}
.nrv-gm-template-item.selected h3,
.nrv-gm-template-item.selected h4 {
	color: #233a57;
}
.nrv-gm-template-item .actions {
	display: flex;
	flex-wrap: wrap;
	margin: 8px -8px 0;
}
.nrv-gm-template-item .actions > div {
	width: 100%;
	margin: 8px 8px 0;
	font-size: 14px;
	color:#558ed5;
}
.nrv-gm-template-item .actions .ct-link-button {
	border-radius: 0;
	border:none;
	background-color:transparent;
	color:#558ed5;
	transition:.3s ease;
	cursor:pointer;
	font-family:montserrat;
	font-size:14px;
	position:relative;
	margin:4px 8px;
	display:flex;
	flex-direction:column;
	padding:0;
}
.nrv-gm-template-item .actions .ct-link-button:hover{
	color:#233a57;
}
.nrv-gm-template-item .actions .ct-link-button:after{
	content:'';
	display:block;
	width:100%;
	height:1px;
	background-color:#558ed5;
	transition:.3s ease;
}
.nrv-gm-template-item .actions .ct-link-button:hover:after{
	background-color:#233a57;
}
.nrv-gm-template-item.selected button.show-me,
.nrv-gm-template-item.selected .google-me button {
	background-color: transparent;
	color:#558ed5;
}
@media (max-width:1120px){
	#nrv-gm-map-container{
		height: clamp(500px, 50vw, 550px);
	}
	#nrv-gm-details-container{
		height: fit-content;
		border-radius: 0 0 10px 10px;
	}
	#nrv-gm-items-list {
		height: fit-content;
		display: flex;
		overflow: scroll;
	}
	.nrv-gm-template-item {
		width: fit-content;
		min-width: fit-content;
		border-top:none;
		border-bottom:none;
	}
	.nrv-gm-template-item:not(:last-child){
		border-right:.5px solid rgb(85 142 213 / 20%);
	}
	.nrv-gm-template-item:not(:first-child){
		border-left:.5px solid rgb(85 142 213 / 20%);
	}
}
@media (max-width:992px){
	#nrv-gm-map-container {
		height: clamp(400px, 50vw, 490px);
	}
}
@media (max-width:768px){
	#nrv-gm-map-container {
		height: clamp(300px, 60vw, 450px);
	}
	.nrv-gm-template-item {
		padding: 24px 36px;
	}
}
@media (max-width:690px){
	#nrv-gm-items-list {
		text-align: left;
	}
}
@media (max-width:480px){
	#nrv-gm-map-container {
		height: clamp(300px, 90vw, 400px);
	}
	.nrv-gm-template-item {
		padding: 16px 24px;
	}
	.nrv-gm-template-item h3{
		font-size:18px;
	}
}

/* CORRESPONDANTS */
.Correspondant {
	width: 100%;
	margin-top: 8px;
}
.Correspondant_titre-bloc {
	font-size: 12px;
	background-color: #fff;
	position: relative;
	z-index: 9;
	color: #949da9;
	margin: 0 0 2px;
}
.Correspondant_inner {
	display: flex;
	width: 100%;
	align-items: stretch;
	border: 1px solid rgb(85 142 213 / 20%);
	border-radius: 10px;
	flex-wrap: wrap;
	overflow: hidden;
}
.Correspondant_inner:nth-child(3){
	margin-top:2px;
}
.Correspondant_photo {
	width: 50px;
	height: auto;
	object-fit: cover;
	object-position: center;
	max-width: 25%;
}
.Correspondant_infos {
	padding: 8px 12px;
	flex-grow: 1;
	max-width: 75%;
	min-width: 75%;
}
.Correspondant_nom {
	line-height: 1.2;
}
.Correspondant_titre {
	font-size: 12px;
	color: #558ed5;
	line-height: 1.1;
}
.Correspondant_contact {
	height: auto;
	background-color: #558ed5;
	width: 40px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
}
.Correspondant_contact-picto {
	height: 16px;
}
@media (max-width:480px){
	.Correspondant_photo {
		max-height:50px;
	}
}