:root {
  /* height also used in other style sheets */
  --toolbar-height: 2.5rem; 
}

.head-line-menu {
	background: #11879b;
	color: white;
	font-weight: 500;
	border-bottom: 1px solid #17613b;
	height: var(--toolbar-height);
  }

  .head-line-menu-index {
	  width: 100%;
	  height: 39px;
	  opacity: 0;
  }
  
  .head-line-menu > .standard-width {
	display: flex;
	height:2.5rem;
	align-items: center;
  }
  
  .head-line-menu .contact-container,
  .head-line-menu .price-container {
	flex: 1;
  }
  
  .head-line-menu .contact-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
  }
  
  .head-line-menu .price-container {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
  }
  
  .head-line-menu .contact-container a {
	font-size: 0.9rem;
	font-weight: 500;
	color: white;
	margin-right: 0.5rem;
	/* transition: color 1s ease; */
  }
  
  .head-line-menu .contact-container a:hover {
	color: var(--brand-a-hover);
	/* transition: color 1s ease; */
  }
  
  .head-line-menu .contact-container a:nth-of-type(1) img {
	width: 18px;
	vertical-align: sub;
	margin-right: 0.3rem;
  }
  
  .head-line-menu .contact-container a:nth-of-type(2) img {
	width: 20px;
	vertical-align: middle;
	margin-right: 0.3rem;
  }
  
  .head-line-menu .contact-container a.btn-top-header {
	padding: 0.2rem 0.75rem;
	color: #231f20;
	text-transform: uppercase;
  }
  
  .btn-top-header-join {
	background: #d5dc30;
  }
  
  .btn-top-header-shop {
	background: #e84924;
  }
  
  .btn-top-header-donate {
	background: #8cc143;
  }
  
  .price-container .alert-price {
	color: #231f20;
	padding: 0 0.75rem;
	display: flex;
	align-items: center;
  }
  
  .price-container .alert-price.flags-price a {
	height: 17px;
	transition: color 1s ease;
  }
  
  .price-container .alert-price.flags-price a:hover {
	opacity: 0.6;
	transition: opacity 1s ease;
  }
  
  

  
/* pad out the height of a fixed header to the height of the headline */
/* ;nav-transition-from-mobile; */
@media screen and (min-width: 1024px){
	.fixed-header.page-home #header:after{
		padding-top: var(--toolbar-height);
		content: '';
		display: block;

		display: none;
	}
}

/* overriding toolbarstyles */
.price-container #widgetBar{
	padding: .5rem 0;
	margin:0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.price-container #widgetBar > div{
	margin: 0 1.5rem 0 1rem;
}
.price-container #widgetBar > div:last-of-type{
	margin-right: 0;
}

.price-conatiner a.shoppingcart .cartWidgetItems{
	position: relative;
	top: -.4rem;
	right: .5rem;
	float:right;
}


@media screen and (max-width: 500px)
{
	.price-container a.shoppingcart .cartWidgetPrice.cartnonzero{
		display:none;
	}
	
	span.currencySwitch a.selCurrency{
		display:none;
	}

	/* shim to show only the selected choice, but be able to click it to switch */
	/* mask the unselected one with opacity 0, it has the right trigger */
	.price-container span.currencySwitch a{
		padding: .1rem .1rem;
		z-index: 100;
		opacity: 0;
		position: relative;
		display: block;
		margin-top: -0.5rem;
	}
	/* position the selected one over the masked one */
	/* now, the unselected choice can be triggered while showing the selected choice */
	.price-container span.currencySwitch a.selCurrency{
		position: absolute;
		left: .1rem;
		padding: 0;
		z-index: 0;
		opacity: 1;
		top: 0.4rem;
		margin: 0;
		height: 0;
	}
	/* hide the divider, it gets in the way */
	.price-container span.currencySep{
		display:none;
	}

}

@media screen and (max-width: 1275px)
{
	.price-container .shopAccount{
		margin:0;
	}
	
	.price-container #widgetBar div#accountPanel.open {
	margin-right: 0;
}
}



/*
selected
	padding: .1rem 1rem;
	z-index: 100;
	visibility: hidden;

notselected
	position: absolute;
	left: 1rem;

*/