: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);
  text-align: center; }

.action-sheet-wrapper {
  margin: var(--ion-safe-area-top) auto var(--ion-safe-area-bottom); }

.action-sheet-container {
  padding: 0 10px; }

.action-sheet-group {
  border-radius: 13px;
  margin-bottom: 8px;
  background: var(--ion-overlay-background-color, #f9f9f9); }

.action-sheet-group:first-child {
  margin-top: 10px; }

.action-sheet-group:last-child {
  margin-bottom: 10px; }

:host(.action-sheet-translucent) .action-sheet-group {
  background: rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8);
  backdrop-filter: saturate(180%) blur(20px); }

.action-sheet-title {
  padding: 14px 14px 13px;
  border-bottom: 0.55px solid rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.2);
  color: var(--ion-text-color-step-600, #999999);
  font-size: 13px;
  font-weight: 400;
  text-align: center; }

.action-sheet-sub-title {
  padding: 15px 0 0;
  font-size: 12px; }

.action-sheet-button {
  margin: 0;
  padding: 18px;
  height: 56px;
  border-bottom: 0.55px solid rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.2);
  background: transparent;
  color: var(--ion-color-primary, #3880ff);
  font-size: 20px;
  contain: strict; }

.action-sheet-button .action-sheet-icon {
  margin-right: 0.1em;
  font-size: 28px; }

.action-sheet-button:last-child {
  border-bottom-color: transparent; }

.action-sheet-button.activated {
  margin-top: -0.55px;
  border-top: 0.55px solid rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.1);
  border-bottom-color: rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.1);
  background: rgba(var(--ion-text-color-rgb, 0, 0, 0), 0.1); }

.action-sheet-selected {
  background: var(--ion-background-color, #fff);
  font-weight: bold; }

.action-sheet-destructive {
  color: var(--ion-color-danger, #f04141); }

.action-sheet-cancel {
  background: var(--ion-background-color, #fff);
  font-weight: 600; }
