[data-bottomsheet] {
  touch-action: none;
  will-change: transform;

  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  transform: unset;

  overflow: scroll;
  display: none;

  width: 100%;
  height: 100%;
  
  /* min-height: -webkit-fill-available; */

  color: white;

  opacity: 0;
  background-color: black;
  box-shadow: 0 1px 37px 0 rgb(0 0 0 / 14%);
}

#maps-2 {
  width: 100%;
}

.modal {
  touch-action: none;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* position: absolute; */
  overflow: scroll;
  display: block;

  max-width: 50%;
  height: 50%;
  margin: auto;

  background-color: black;
  border-radius: 30px;
  box-shadow: 0 1px 37px 0 rgb(0 0 0 / 14%);
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;

  width: 100%;
  height: 100%;

  background-color: rgb(0 0 0 / 50%);
}

.overlay.display {
  display: block;
  opacity: 0;
}

[data-draggable] {
  position: sticky;
  top: 0;
  width: 100%;
}

#dragmodal-close {
  position: sticky;
  z-index: 100;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  cursor: pointer;
}

[data-bottomsheet] img {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-user-drag: none;
}

[data-bottomsheet] input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: 16px;
}

#side-left {
  text-align: left;
}

#side-right {
  text-align: right;
}

#resizable {
  cursor: col-resize;

  position: fixed;
  z-index: 120;
  top: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 3px;
  height: 100%;

  background-color: transparent;
}

.footer{
  position: sticky;
  bottom: 0
}

.header{
  position: sticky;
  top: 0
}