.chat-menu-directive {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  position: absolute;
  z-index: 80;
  background: rgba(0, 0, 0, 0.42);
  width: 100vw;
  height: calc(100 * var(--window-inner-height));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
}

.chat-menu-directive.animate-show-hide.ng-hide {
  opacity: 0;
}

.chat-menu-directive.animate-show-hide.ng-hide-add,
.chat-menu-directive.animate-show-hide.ng-hide-remove {
  transition: all linear 210ms;
}

.chat-menu-directive .chat-menu {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  flex: 1;
  margin: 16px;
  max-width: var(--max-content-width);
  width: calc(100% - 32px);
}

.chat-menu-directive .chat-menu .chat-menu-button-wrapper {
  overflow-y: auto;
}

.chat-menu-directive .chat-menu .chat-menu-button {
  display: flex;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: var(--default-radius);
  background: #FFFFFF;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  align-items: center;
  outline: none;
  cursor: pointer;
}

.chat-menu-directive .chat-menu .chat-menu-button.chat-menu-cancel-button {
  margin-top: 16px;
}
