.app-bottom-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
.app-bottom-sheet__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.app-bottom-sheet__container {
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 0;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  max-height: 400px;
  margin: 0 auto;
  overflow-y: auto;
  border-radius: 12px 12px 0 0;
  background-color: white;
  background-color: var(--color-background);
  box-shadow: rgba(0, 0, 0, 0.05) 0 1px 4px, rgba(0, 0, 0, 0.1) 0 8px 24px;
}
@media (max-width: 1024px) {
  .app-bottom-sheet__container {
    padding-bottom: env(safe-area-inset-bottom);
    transition: padding-bottom 0.2s ease-in-out;
  }
}
.app-bottom-sheet ul {
  list-style-type: none;
  padding: 0.5rem;
  margin: 0.5rem;
}
.app-bottom-sheet ul > li {
  margin-bottom: 0.5rem;
}
.app-bottom-sheet ul > li:last-child {
  margin-bottom: 0;
}
.app-bottom-sheet ul > li > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.75rem;
  color: #343a40;
  color: var(--color-gray-800);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}
.app-bottom-sheet ul > li > a i, .app-bottom-sheet ul > li > a ion-icon, .app-bottom-sheet ul > li > a svg {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
  margin-right: 0.75rem;
  color: #868e96;
  color: var(--color-gray-600);
  --ionicon-stroke-width: 3rem;
}
.app-bottom-sheet ul > li > a:hover {
  color: #212529;
  color: var(--color-gray-900);
  background-color: #f8f9fa;
  background-color: var(--color-gray-050);
}
.app-bottom-sheet ul > li.app-divider {
  margin: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  border-bottom-color: var(--color-gray-200);
}
.app-bottom-sheet {
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  transition: 0.3s ease;
}
.app-bottom-sheet__container {
  opacity: 0;
  transform: translate(-50%, 1rem);
  transition: 0.3s ease;
}
.app-bottom-sheet.active {
  opacity: 1;
  visibility: visible;
  user-select: initial;
  pointer-events: initial;
}
.app-bottom-sheet.active .app-bottom-sheet__container {
  opacity: 1;
  transform: translate(-50%, 0);
}
.app-bottom-sheet__container {
  overflow-y: overlay;
}
.app-bottom-sheet__container::-webkit-scrollbar {
  width: 12px;
  transition: 250ms;
}
.app-bottom-sheet__container::-webkit-scrollbar-track {
  background: transparent;
  transition: 250ms;
}
.app-bottom-sheet__container::-webkit-scrollbar-thumb {
  background: #e9ecef;
  background: var(--color-gray-200);
  border-radius: 20px;
  border: 3px solid transparent;
  background-clip: padding-box;
  transition: 250ms;
}
.app-bottom-sheet__container:hover::-webkit-scrollbar, .app-bottom-sheet__container:hover::-webkit-scrollbar-track, .app-bottom-sheet__container:hover::-webkit-scrollbar-thumb {
  display: block;
}
.app-bottom-sheet__container::-webkit-scrollbar, .app-bottom-sheet__container::-webkit-scrollbar-track, .app-bottom-sheet__container::-webkit-scrollbar-thumb {
  display: none;
}
/*# sourceMappingURL=8511a3e995990cd7b20b2609322f329443762c87.bottom-sheet.scss.map */
