.locationmenu-full-screen-menu-active #locationmenu-full-screen-menu-toggle {
	/*background:red;*/
}

.locationmenu-site-nav {
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255);
  z-index: 101;
  font-family: "Open Sans";
  font-size: 2em;
  
	background-image: url(../img/locationbackground.png);
	background-size: cover;
	background-position: center center;    
}

.locationmenu-full-screen-menu-active .locationmenu-site-nav {
  opacity: 1;
  pointer-events: initial;
}

.locationmenu-site-nav ul {
  display: block;
  transition: all 0.3s ease;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3)
}

.locationmenu-site-nav a {
	color: black;
	text-decoration: none;
	display: block;
	padding:.2em;
	text-align: center;
}

.locationmenu-full-screen-menu-active .locationmenu-site-nav ul {
  transform: translate(-50%, -50%) scale(1)
}