.aside-notes {
  position: relative;
  width: var(--aside-notes-width, 320px);
  flex-shrink: 0;
  z-index: 5;
}
.aside-notes__content {
  position: sticky;
  top: 0;
  background-color: color-mix(in srgb, var(--bg-color) var(--color-mix-black-percent, 95%), black);
}
.aside-notes input {
  border-width: 1px;
  background-color: var(--bg-color);
  border-style: solid;
}
.aside-notes__wrap {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .aside-notes {
    width: 100%;
  }
  .aside-notes__wrap {
    padding-bottom: 50px;
  }
}
