body {
	background-color: white;
}

.mapdiv {
	height: 10%;
	margin: auto;
}

.mapdiv polygon {
	fill: #CC1100;
	stroke: #dece0c;
	stroke-width: inherit;
	/*transition: fill 0.1s;*/
}

.mapdiv polygon:hover {
	fill: #000;
}

.mapdiv polygon.disabled {
	fill: #f0f0f0;
}

.branch-panel {
	padding: 4px;
}

.panel {
	margin: 4px;
}

.panel-body.odd {
	background-color: #f0f0f0;
}

.panel-body.even {
	background-color: #e0e0e0;
}

.ohnohoney{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
}

.iban-form {
	font-size: 18px; /* Adjust the font size as needed */
}

.iban-label {
	font-size: 20px; /* Adjust the font size for the label */
}

.iban-input {
	font-size: 20px; /* Adjust the font size for the input field */
	padding: 10px; /* Adjust the padding to increase the size of the input field */
	width: 400px;
	max-width: 100%;
	box-sizing: border-box;
}

.iban-submit {
	font-size: 18px; /* Adjust the font size for the submit button */
	padding: 10px 20px; /* Adjust the padding to increase the size of the button */
}

.iban span {
	font-size: 1.6em;
}

/* IBAN tool: form first, with sources and country coverage close to the action. */
.iban-page > main { padding: 0; }
.iban-page-content { padding: 0 20px 32px; }
.iban-tool {
	background: #f1f7fb;
	border: 1px solid #d6e5ef;
	border-radius: 8px;
	padding: 24px 28px;
	margin-bottom: 24px;
}
.iban-tool h1 { margin: 0 0 12px; font-size: 36px; line-height: 1.2; color: #173b54; }
.iban-intro { max-width: 800px; font-size: 18px; line-height: 1.5; margin-bottom: 8px; }
.iban-tool-benefits { margin-bottom: 22px; color: #455e6e; }
.iban-tool .iban-label { display: block; font-size: 16px; margin-bottom: 8px; }
.iban-form-controls { display: flex; gap: 12px; max-width: 850px; }
.iban-tool .iban-input {
	flex: 1;
	min-width: 0;
	width: 100%;
	border: 1px solid #869faf;
	border-radius: 5px;
	background: #fff;
	font-family: monospace;
	font-size: 18px;
}
.iban-tool .iban-submit {
	flex-shrink: 0;
	background: #176392;
	color: #fff;
	border: 1px solid #176392;
	border-radius: 5px;
	font-weight: 600;
}
.iban-tool .iban-submit:hover { background: #114c71; }
.iban-page button:focus-visible, .iban-page input:focus-visible, .iban-page a:focus-visible {
	outline: 3px solid #176392;
	outline-offset: 3px;
}
.iban-input-help { font-size: 13px; color: #526370; margin: 8px 0 0; }
.iban-tool-limit { font-size: 13px; margin: 18px 0 0; max-width: 850px; }
.iban-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.iban-overview section { border: 1px solid #ddd; border-radius: 8px; padding: 20px; min-width: 0; }
.iban-overview h2, .iban-countries h2 { margin: 0 0 12px; font-size: 22px; line-height: 1.3; }
.iban-example-caption { margin: 18px 0 6px; font-size: 12px; color: #59646e; }
.iban-example-code { display: block; padding: 10px; overflow-wrap: anywhere; color: #173b54; background: #f1f7fb; font-size: 15px; }
.iban-example-parts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.iban-example-parts dt { font-size: 12px; color: #59646e; }
.iban-example-parts dd { font-size: 16px; }
.iban-example-button { display: inline-block; background: #fff; border: 1px solid #176392; border-radius: 4px; padding: 9px 12px; color: #176392; }
.iban-example-note { font-size: 13px; margin: 14px 0 0; }
.iban-sources ul { padding-left: 19px; }
.iban-sources li { margin-bottom: 12px; }
.iban-countries { margin-bottom: 32px; padding: 20px; background: #f7f8fa; border-radius: 8px; }
.iban-country-list { display: flex; flex-wrap: wrap; gap: 5px; padding: 0; margin: 14px 0 10px; list-style: none; }
.iban-country {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 43px;
	min-height: 47px;
	border: 1px solid #d9dfe5;
	border-radius: 4px;
	background: #fff;
	font-size: 23px;
	line-height: 1.1;
	padding: 3px;
}
.iban-country:hover, .iban-country:focus { border-color: #176392; background: #e9f3fa; }
.iban-country-code { font: 10px/1.4 sans-serif; color: #425563; }
.iban-country-detail { margin: 0; min-height: 40px; font-size: 13px; color: #425563; }
.iban-page .panel-heading, .iban-page .iban span { overflow-wrap: anywhere; }
@media (max-width: 767px) {
	.iban-page .navbar > .container { display: flex; flex-wrap: wrap; align-items: center; gap: 0 12px; }
	.iban-page .navbar-header { flex-basis: 100%; }
	.iban-page .navbar-nav { display: flex; flex-wrap: wrap; margin: 0; }
	.iban-page .navbar-nav > li > a { padding: 9px 0; font-size: 13px; }
	.iban-page .navbar-nav > li + li { margin-left: 12px; }
	.iban-page-content { width: 100%; padding: 0 15px 24px; }
	.iban-tool { padding: 20px 16px; }
	.iban-tool h1 { font-size: 29px; }
	.iban-intro { font-size: 16px; }
	.iban-form-controls { flex-direction: column; }
	.iban-tool .iban-input { font-size: 16px; }
	.iban-tool .iban-submit { width: 100%; }
	.iban-overview { grid-template-columns: 1fr; gap: 16px; }
	.iban-overview section, .iban-countries { padding: 16px; }
	.iban-country-list { gap: 4px; }
	.iban-country { width: 38px; min-height: 44px; }
}

/* Add 3D styling to the button */
.btn-3d {
	background-color: #3498db;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.3s;
}

/* Add a hover effect */
.btn-3d:hover {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.leaflet-control-attribution {
	display: none;
}

/* Homepage search */
.site-search {
	position: relative;
	max-width: 640px;
	margin: 0 auto 24px auto;
}

.site-search-icon {
	position: absolute;
	left: 16px;
	top: 50%;
	width: 17px;
	height: 17px;
	transform: translateY(-50%);
	color: #555;
	fill: currentColor;
	pointer-events: none;
}

.site-search-input {
	width: 100%;
	font-size: 18px;
	padding: 12px 16px 12px 44px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.site-search-input:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 8px rgba(52, 152, 219, 0.4);
}

.site-search-results {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	max-height: 70vh;
	overflow-y: auto;
}

.site-search-result {
	display: flex;
	flex-direction: column;
	padding: 8px 16px;
	color: #222;
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
}

.site-search-result:last-child {
	border-bottom: none;
}

.site-search-result:hover,
.site-search-result.is-active {
	background-color: #eef6fd;
	text-decoration: none;
}

.site-search-result-title {
	font-weight: 600;
}

.site-search-result-subtitle {
	font-size: 13px;
	color: #777;
}

/* Pubnation CSS */
@media only screen and (max-width: 430px) {
	.mapdiv > svg {
		max-width: 100% !important;
	}
}

/* Zero-delay pure-CSS tooltip for the VoP "verified" badge (the native title= tooltip has an
   unconfigurable ~0.5s browser delay). */
.vop-verified {
	position: relative;
	display: inline-block;
	cursor: help;
}
.vop-verified::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50%;
	bottom: 135%;
	transform: translateX(-50%);
	width: 220px;
	background: #333;
	color: #fff;
	text-align: center;
	padding: 6px 8px;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1.3;
	white-space: normal;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1000;
}
.vop-verified:hover::after {
	opacity: 1;
	visibility: visible;
}
