:host {
  --width: 100%;
  --max-width: 500px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  position: fixed;
  touch-action: none;
  user-select: none;
  z-index: 1000; }

.action-sheet-wrapper {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translate3d(0,  100%,  0);
  display: block;
  position: absolute;
  width: var(--width);
  max-width: var(--max-width);
  z-index: 10;
  pointer-events: none; }

.action-sheet-button {
  width: var(--width);
  border: 0;
  outline: none;
  font-family: inherit; }

.action-sheet-button-inner {
  display: flex;
  flex-flow: row nowrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }

.action-sheet-container {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: 100%;
  max-height: 100%; }

.action-sheet-group {
  flex-shrink: 2;
  overscroll-behavior-y: contain;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  pointer-events: all; }

.action-sheet-group::-webkit-scrollbar {
  display: none; }

.action-sheet-group-cancel {
  flex-shrink: 0;
  overflow: hidden; }

:host {
  font-family: var(--ion-font-family, inherit); }

.action-sheet-title {
  padding: 11px 16px 17px;
  color: var(--ion-text-color-step-400, #666666);
  font-size: 16px;
  text-align: start; }

.action-sheet-sub-title {
  padding: 16px 0 0;
  font-size: 14px; }

.action-sheet-group {
  background-color: var(--ion-overlay-background-color, #fafafa); }

.action-sheet-group:first-child {
  padding-top: 8px; }

.action-sheet-group:last-child {
  padding-bottom: 8px; }

.action-sheet-button {
  padding: 0 16px;
  position: relative;
  height: 48px;
  background: transparent;
  color: var(--ion-text-color-step-150, #262626);
  font-size: 16px;
  text-align: start;
  contain: strict;
  overflow: hidden; }

.action-sheet-button.activated {
  background: var(--ion-background-color-step-50, #f2f2f2); }

.action-sheet-icon {
  margin: 0 32px 0 0;
  font-size: 24px; }

.action-sheet-button-inner {
  justify-content: flex-start; }

.action-sheet-selected {
  font-weight: bold; }
