/* COMPONENT CLICK */
tz-click {
  position: fixed;
  z-index: 99999999;
  top: -999px;
  left: -999px;
  display: block;
  pointer-events: none;
  user-select: none;
  width: 0;
  height: 0;
}
tz-click:before {
  content: '';
  display: block;
  animation-name: tz-click;
  animation-duration: 0.3s;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  transform: scale(8);
  backface-visibility: hidden;
}
@keyframes tz-click {
  from {
    opacity: 0.04;
    transform: scale(1);
  }
}
/* COMPONENT MENU */
html.tz-menu-open,
body.tz-menu-open {
	overflow: hidden;
}
tz-menu {
  display: none;
  position: absolute;
  z-index: 9999999;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
tz-menu {
	display: block;
}
}
tz-menu nav {
  position: fixed;
  z-index: 2;
  top: 15vh;
  right: 5vw;
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: right 0.4s, opacity 0.4s;
  transition-delay: 0.2s;
  backface-visibility: hidden;
}
tz-menu nav ul {
	display: table;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 80vw;
}
tz-menu nav li {
  display: table-row;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: ease-out;
  transition-delay: 0.2s;
  backface-visibility: hidden;
  transform: translateX(5vw);
  opacity: 0;
}
tz-menu nav li:nth-child(1) {
  transition-delay: 0.2s;
}
tz-menu nav li:nth-child(2) {
  transition-delay: 0.25s;
}
tz-menu nav li:nth-child(3) {
  transition-delay: 0.3s;
}
tz-menu nav li:nth-child(4) {
  transition-delay: 0.35s;
}
tz-menu nav li:nth-child(5) {
  transition-delay: 0.4s;
}
tz-menu nav li:nth-child(6) {
  transition-delay: 0.45s;
}
tz-menu nav li:nth-child(7) {
  transition-delay: 0.5s;
}
tz-menu nav li:nth-child(8) {
  transition-delay: 0.55s;
}
tz-menu nav li:nth-child(9) {
  transition-delay: 0.6s;
}
tz-menu nav li:nth-child(10) {
  transition-delay: 0.65s;
}
tz-menu nav li:nth-child(11) {
  transition-delay: 0.7s;
}
tz-menu nav li:nth-child(12) {
  transition-delay: 0.75s;
}
tz-menu nav li:nth-child(13) {
  transition-delay: 0.8s;
}
tz-menu nav li:nth-child(14) {
  transition-delay: 0.85s;
}
tz-menu nav a {
	display: table-cell;
	vertical-align: middle;
	text-align: right;
	text-decoration: none;
	color: #fff;
	font-size: 3vh;
	font-weight: 100;
	line-height: 6vh;
	padding-right: 5px;
	position: relative;
	z-index: 1;
}
tz-menu nav div {
	display: table-cell;
	vertical-align: middle;
	opacity: 0.3;
	margin: 0;
	padding: 2vh 0;
}
tz-menu nav a.selected,
tz-menu nav a:hover,
tz-menu nav a:focus {
	opacity: 0.5;
	color: #fff;
	text-decoration: none;
}
	tz-menu nav a .navbar-notification {
		display: inline-block;
		vertical-align: top;
		background: #000;
		color: #fff;
		font-weight: bold;
		line-height: 16px;
		font-size: 11px;
		height: 16px;
		width: 16px;
		margin: 0 -23px 0 7px;
		text-align: center;
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}
tz-menu nav a[data-subname]:after {
  content: attr(data-subname);
  display: block;
  color: #000000;
  font-style: italic;
  font-family: 'Roboto Slab', serif;
  font-size: 2vh;
  line-height: 100%;
  margin-top: 0.5vh;
  font-weight: normal;
}
tz-menu nav-q {
  display: block;
}
tz-menu tz-burger {
  position: absolute;
  z-index: 10;
	top: 4vw;
  right: 4vw;
  width: 40px;
  height: 35px;
  display: block;
  opacity: 1;
	background: rgba(255,255,255,0.0001);
  backface-visibility: hidden;
  cursor: pointer;
}
tz-menu tz-burger tz-meat {
  display: block;
  position: absolute;
  height: 3px;
  left: 10px;
	right: 10px;
  background: #ddd;
  transition: top 0.3s, left 0.3s, width 0.3s, height 0.3s, opacity 0.3s, background-color 0.3s, transform 0.3s;
  backface-visibility: hidden;
}
#topbanner tz-menu tz-burger tz-meat {
	background-color: #fff;
}
tz-menu tz-burger tz-meat:nth-child(1) {
  top: 10px;
}
tz-menu tz-burger tz-meat:nth-child(2),
tz-menu tz-burger tz-meat:nth-child(3) {
  top: 16px;
}
tz-menu tz-burger tz-meat:nth-child(4) {
  top: 22px;
}
tz-menu tz-burger.hover tz-meat {
	background-color: #055555;
}
tz-menu tz-burger.click {
  animation-name: tz-burger-click;
  animation-duration: 0.3s;
}
@keyframes tz-burger-click {
  50% {
    transform: scale(0.5);
  }
}
tz-menu tz-bg {
  position: fixed;
  z-index: 1;
  display: block;
  background: #055555;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 60px;
  right: 30px;
  margin: -15px 5px 0 0;
  opacity: 0;
  transition: margin 0.3s, width 0.3s, height 0.3s, opacity 0.3s, border-radius 0.3s;
  backface-visibility: hidden;
}
@media screen and (max-width: 500px) {
tz-menu tz-bg {
	top: 11.5vw;
	right: 4vw;
}
}
tz-menu.open nav {
  width: 80vw;
  height: auto;
  opacity: 1;
  right: 10vw;
  overflow: visible;
}
tz-menu.open nav li {
  transform: translateX(0);
  opacity: 1;
}
tz-menu.open tz-burger tz-meat {
  background-color: #fff;
}
tz-menu.open tz-burger tz-meat:nth-child(1) {
  top: 9px;
  opacity: 0;
  height: 0;
  width: 0;
  left: 50%;
}
tz-menu.open tz-burger tz-meat:nth-child(2) {
  transform: rotate(-45deg);
}
tz-menu.open tz-burger tz-meat:nth-child(3) {
  transform: rotate(45deg);
}
tz-menu.open tz-burger tz-meat:nth-child(4) {
  top: 9px;
  opacity: 0;
  height: 0;
  width: 0;
  left: 50%;
}
tz-menu.open tz-bg {
  opacity: 1;
  width: 280vw;
  height: 280vh;
  margin: -140vh -140vw;
}
