body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 1000px;
}

::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.find-a-branch {
	display: flex;
	border: 1px solid rgba(0,0,0,0.1);
	background-color: white;
	border-radius: 6px;
	height: 500px;
	overflow: hidden;
}

.find-a-branch__search-container {
	border-right: 1px solid rgba(0,0,0,0.1);
	display: flex;
	width: 300px;
	flex-direction: column;
}

.find-a-branch__search-input-container {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.find-a-branch__search-input {
	width: 100%;
	margin: 0;
	padding: 12px;
	box-sizing: border-box;
	border: 0 !important;
	font-size: 1.5rem;
}

.find-a-branch__search-results-container {
	flex-grow: 1;
	background-color: rgba(0,0,0,0.04);
	overflow-y:scroll;
}

.find-a-branch__search-results {
	margin: 0;
	padding-left: 0;
	list-style: none;
	padding: 12px;
}

.find-a-branch__search-result {
	cursor: pointer;
	padding: 12px;
	box-sizing: border-box;
	background-color: white;
	border-radius: 6px;
	margin-bottom: 12px;
}

.find-a-branch__search-result-location-name {
	display: block;
}

.find-a-branch__search-result-location-address {
	display: block;
	font-size: 0.8rem;
}

.find-a-branch__map-container {
	height: 100%;
	width: 100%;
	position: relative;
	border: 0 !important;
	overflow: hidden !important;
}

.find-a-branch__mobile-detail {
	display: none;
	
	cursor: pointer;
	padding: 12px;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.04);
	border-radius: 6px;
	margin-bottom: 12px;
	margin-top: 6px;
}


@media only screen and (max-width: 800px) {
	.find-a-branch	{
		display: block;	
		position: relative;
	}
	
	.find-a-branch__search-container {
		position: absolute;
		width: 100%;	
		top: 0;
		left: 0;
		z-index: 999;
		background-color: white;
	}
	
	.find-a-branch__search-results-container {
		display: none;
	}
	
	.find-a-branch__map-container {
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	
	.find-a-branch__mobile-detail {
		display: block;
	}
}

.find-a-branch__search-results-container__show {
	display: block;
}