/* Base
-------------------------- */


button {
  -webkit-font-smoothing: antialiased;
  background-color: #007A4D;
  border: none;
  border-radius: 0.1875em;
  color: white;
  display: inline-block;
  font-size: 1em;
  font-weight: bold;
  line-height: 50px;
  padding: .75em 1em;
  text-decoration: none;
}

button:hover {
  background-color: #01623F;
  color: white;
}

.menu-btn {
  z-index: 10;
  display: none;
  position: absolute;
  right: 0px;
  top: 0px;
  opacity: .90;
    height:40px;
}

.menu-btn:focus {
  background: #01623F;
  color: white;
	border:none;
	outline:0;
  opacity: .90;
    height:40px;
}
.menu-btn:active {
  background: #01623F;
  color: white;
	border:none;
	outline:0;
  opacity: .90;
    height:40px;
}
.menu-btn:hover {
  background: #01623F;
  color: #fff;
	outline:0;
}

@media (max-width: 1024px) {
  .menu-btn {
    opacity: .90;
    height:40px;
    display: block;

  }
}

/*  Menu
-------------------------- */
.menu {
  float: right;
}

.foreground {
  z-index: 9;
}

.menu__list {
   position: relative;
  opacity: .90;
  overflow: hidden;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.menu__item {
  z-index:9;
  float: left;
  text-align: center;
  background-color: #007A4D;
}

.menu__link {
  z-index:9;
  display: flex;
  color: #fff;
  text-decoration: none;
  height:40px;
  justify-content: center; /* align horizontal */
  align-items: center; /* align vertical */
  padding-left: 10px;
  padding-right: 10px;
  text-wrap: none;
  word-wrap:  no-wrap;
  transition: all .3s ease;
}

.menu__link:hover, .menu__link:focus {
  z-index:9;
  background: #01623F;
  color: #fff;
	outline:0;
}

@media (max-width: 1024px) {
  .menu {
    float: none;
  }
  .menu__item {
    z-index:-1;
    display: block;
    float: none;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all .3s ease-out;
  }
  .menu__item--play {
    z-index: 1000;
    display: block;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .menu__item + .menu__item {
    border-top: 1px solid #01623F;
  }
  .menu__link {
    background: #007A4D;
  }
  .menu__link:hover {
    background: #01623F;
  }
}

