.headerlink-wrap {
	clear: both;
	position: relative;
}

.headerlink-center {
	justify-content: center;
}

.headerlink-end {
	justify-content: end;
}

.headerlink-wrap.headerlink-navbar {
	float: none;
	line-height: 1;
	margin-bottom: 2px;
}

.headerlink,
.headerlink-wrap.responsive-0 .headerlink {
    display: flex;
	flex-wrap: wrap;
	gap: 4px 0;
	list-style: none;
}

.headerlink-js .headerlink {
	flex-wrap: nowrap;
	gap: initial;
}

.headerlink-list-item {
	margin: 0 4px;
}

.headerlink-link {
	background-color: var(--headerlink-bg);
	border-radius: 4px;
	display: block;
	font-size: 13px;
	padding: 7px;
	transition: background-color 0.2s;
	white-space: nowrap;
}

.headerlink-link:hover {
	background-color: var(--headerlink-hover-bg);
	text-decoration: none;
}

[data-hover="transparent"] .headerlink-link:hover {
	--headerlink-hover-bg: var(--headerlink-bg);
}

.headerlink-link i {
	color: var(--headerlink-icon-color);
}

.headerlink-link span {
	color: var(--headerlink-text-color);
}

.sub-toggler {
	background-color: var(--sub-toggler-bg);
	color: var(--sub-toggler-color);
	transition: background-color 0.2s;
}

.sub-toggler:hover {
	background-color: var(--headerlink-hover-bg);
	color: var(--sub-toggler-color);
}

.sub-toggler:focus {
	color: var(--sub-toggler-color);
	outline: none;
}

[data-hover="transparent"] .sub-toggler:hover {
	--headerlink-hover-bg: var(--sub-toggler-bg);
}

/* Accessibility
---------------------------------------------------------------------------- */
a.skip-link {
	background: #000edf;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	padding: 1em;
	position: absolute;
	top: -20em;
	z-index: 99;
}

.skip-link:focus {
	top: auto;
}

.headerlink-wrap a:focus-visible,
.headerlink-wrap button:focus-visible {
	outline: 4px double #000edf;
}

/* Responsive 1
---------------------------------------------------------------------------- */
.toggler-1 {
	border-radius: 4px;
	display: none;
	margin: 0 4px;
	padding: 7px;
}

/* Responsive 2
---------------------------------------------------------------------------- */

.sublist {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 99;
}
.rtl .sublist {
	left: 0;
	right: auto;
}

.sublist li {
	margin: 2px 0 0;
}

.has-sublist {
	position: relative;
}

/********* Custom **************/

.topnav {
	overflow: hidden;
	background-color: var(--headerlink-bg);
	height: auto;
  }
  
  .topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 13px;
  }
  
  .active {
	/* background-color: #04AA6D; */
	background-color: var(--headerlink-bg);
	color: white;
  }
  
  .topnav .icon {
	display: none;
  }
  
  .dropdown_custom {
	float: left;
	overflow: hidden;
  }
  
  .dropdown_custom .dropbtn {
	font-size: 13px;    
	border: none;
	outline: none;
	color: white;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
  }
  
  .dropdown_custom-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  .dropdown_custom-content a {
	float: none;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
  }
  
  .topnav a:hover, .dropdown_custom:hover .dropbtn {
	background-color: #555;
	color: white;
  }
  
  .dropdown_custom-content a:hover {
	background-color: #ddd;
	color: black;
  }
  
  .dropdown_custom:hover .dropdown_custom-content {
	display: block;
  }
  
  @media screen and (max-width: 600px) {
	.topnav a:not(:first-child), .dropdown_custom .dropbtn {
	  display: none;
	}
	.topnav a.icon {
	  float: right;
	  display: block;
	}
  }
  
  @media screen and (max-width: 600px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive .icon {
	  position: absolute;
	  right: 0;
	  top: 0;
	}
	.topnav.responsive a {
	  float: none;
	  display: block;
	  text-align: left;
	}
	.topnav.responsive .dropdown_custom {float: none;}
	.topnav.responsive .dropdown_custom-content {position: relative;}
	.topnav.responsive .dropdown_custom .dropbtn {
	  display: block;
	  width: 100%;
	  text-align: left;
	}
  }