/* Mixins */

.action-menu-container {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.03), 0px 4px 5px rgba(0, 0, 0, 0.24), 0px 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 10;
  overflow: hidden;
}

.action-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #FFFFFF;
  color: #333333;
  text-decoration: none;
  user-select: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.action-menu-item:hover,
.action-menu-item:focus-within {
  outline: none;
  text-decoration: none;
  color: #333333;
  background: #F7F7F8;
}

/* Styles */

.action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #FFFFFF;
  color: #828282;
  text-decoration: none;
  user-select: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  padding: 8px 16px;
}

.action-item:hover,
.action-item:focus-within {
  outline: none;
  text-decoration: none;
  color: #333333;
  background: #F7F7F8;
}

.action-item.active {
  background: #F4F9FD;
}

.action-item.active:hover,
.action-item.active:focus {
  background: #DFE9F1;
}

.action-item-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #FFFFFF;
  color: #333333;
  text-decoration: none;
  user-select: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 0 16px;
}

.action-item-checkbox:hover,
.action-item-checkbox:focus-within {
  outline: none;
  text-decoration: none;
  color: #333333;
  background: #F7F7F8;
}

.action-item-checkbox app-checkbox {
  width: 100%;
}

.action-menu {
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.03), 0px 4px 5px rgba(0, 0, 0, 0.24), 0px 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 10;
  overflow: hidden;
}

.action-menu-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #ECECED;
}

.action-menu-header .title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.action-menu-body {
  padding: 8px 0;
}

.action-menu-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-top: 1px solid #ECECED;
}