

.bottom-sheet {
  z-index: 22;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
}
.bottom-sheet.show {
  opacity: 1;
  pointer-events: auto;
}
.body h1 {
    font-size: 25px;
    font-family: 'Proxima Nova Regular';
    letter-spacing: 1.1px;
}
.bottom-sheet .sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}
.bottom-sheet .content {
  width: 95%;
  position: relative;
  background: #333;
  max-height: 90vh;
  height: 50vh;
  max-width: 692px;
  padding: 18px 18px;
  transform: translateY(100%);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  transition: 0.3s ease;
}
.bottom-sheet.show .content{
  transform: translateY(0%);
}
.bottom-sheet.dragging .content {
  transition: none;
}
.bottom-sheet.fullscreen .content {
  border-radius: 14px;
  overflow-y: hidden;
}
.bottom-sheet .header {
  display: flex;
  justify-content: center;
}
.header .drag-icon {
  display: none;
  cursor: grab;
  user-select: none;
  padding: 15px;
  margin-top: -15px;
}
.header .drag-icon span {
  height: 4px;
  width: 40px;
  display: block;
  background: #C7D0E1;
  border-radius: 50px;
}
.bottom-sheet .body {
  height: 100%;
  overflow-y: auto;
  padding: 0px 0 40px;
  scrollbar-width: none;
}
.bottom-sheet .body::-webkit-scrollbar {
  width: 0;
}
.bottom-sheet .body h2 {
  font-size: 1.8rem;
}
.bottom-sheet .body p {
  margin-top: 20px;
  font-size: 1.05rem;
}

button.menu_style {
    display: flex;
    background: #2d2d2d;
    color: #fff;
    border-radius: 0.4rem;
    padding: 0.9rem;
    width: 100%;
    font-size: 14px;
    transition: all .55s;
}

button.menu_style:hover {
    transition: all 0.55s;
    background: #1b1b1b;
}

.menu_buttons {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

span.span {
    display: flex;
    gap: 14px;
    align-items: center;
}

span.report svg {background: #ef3a3a;padding: 4px;border-radius: 4px;width: 25px;height: 25px;}

span.edit svg {background: #3a7eef;padding: 4px;border-radius: 4px;width: 25px;height: 25px;}