/* We don't use 2xl, 3xl, 4xl map keys because in some Intellij configurations, these keys are reformatted */
.joy-bottom-sheet {
  z-index: 30;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  box-sizing: border-box;
  font-weight: var(--joy-font-weight-normal);
  font-size: var(--joy-font-size-primary-400);
  line-height: var(--joy-line-height-large);
  font-family: var(--joy-font-family-base);
  color: var(--joy-color-neutral-60);
  transition-property: background-color, height;
  transition-duration: 0.6s, 0s;
  transition-delay: 0s, 0.6s;
}
.joy-bottom-sheet .joy-bottom-sheet-container {
  z-index: 2;
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 8px 32px rgba(24, 24, 24, 0.24);
  background: #FFF;
  transition-property: bottom;
  transition-duration: 0.6s;
  user-select: none;
}
.joy-bottom-sheet .joy-bottom-sheet-container.moving {
  transition: none;
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_footer {
  display: flex;
  padding: 16px;
  border-top: 1px solid var(--joy-color-secondary-10);
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_footer .joy-bottom-sheet_footer-close {
  margin: 0 auto;
  width: 100%;
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_footer ::slotted(*) {
  width: 100%;
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_footer ::slotted(joy-wrapper) {
  margin: 0;
  --wrapper-gap: var(--joy-core-spacing-4);
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_content {
  padding: 0 16px 16px 16px;
  max-height: 60vh;
  overflow-y: auto;
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_content h2 {
  text-align: justify;
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_content p {
  text-align: justify;
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_header {
  padding: 16px;
}
.joy-bottom-sheet .joy-bottom-sheet-container .joy-bottom-sheet_header .joy-bottom-sheet_header-close {
  height: 6px;
  width: 36px;
  margin: 0 auto;
  background-color: var(--joy-color-neutral-30);
  border-radius: 100px;
  cursor: grabbing;
}
.joy-bottom-sheet--open {
  transition-delay: 0s;
  height: 100%;
  background-color: var(--joy-color-overlay);
}
.joy-bottom-sheet--open .joy-bottom-sheet-container {
  bottom: 0;
}