/**
 * MENU
 */
.navigation-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;

  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

/**
 * MENU BUTTON
 */
.navigation-menu__button {
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 28px;
  padding-top: 8px;

  border-radius: 25px 25px 0 0;
  background-color: rgba(115, 50, 65, 0.9);

  cursor: pointer;
}

.navigation-menu__button.opened {
  background-color: rgba(173, 162, 202, 0);
}

.navigation-menu__button svg {
  pointer-events: none;
  cursor: pointer;
}

.navigation-menu__button svg path {
  fill: #fff;
}

/**
 * MENU CONTENT
 */
.navigation-menu__content {
  position: absolute;
  bottom: -100vh;
  z-index: -1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 0 12px;

  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.navigation-menu__content.opened {
  width: 100%;
  padding-bottom: 40px;
  bottom: 0;
  opacity: 1;
  background-color: rgba(115, 50, 65, 1);
}

/**
 * MENU ITEM
 */
.navigation-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;

  list-style: none;

  font-size: 13.5px;
  line-height: 20px;
}

.navigation-menu__item a {
  color: #fff;
}

@media screen and (max-width: 670px) {
  .navigation-menu__content {
    display: block;
  }
}
