/* CSS Document */
.popup-menu-container {
  position: relative;
}

.popup-menu-container .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-menu-container .popup-menu {
  position: absolute;
  z-index: 2;
  width: 10rem;
  margin-top: 0.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.popup-menu-container .popup-menu.shown {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
#app {
    height: 100vh;
    background: #eee;
}
*/
/*# sourceMappingURL=PopupMenu.css.map */