.overlay-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ece7e4;
  z-index: 9999;
  opacity: 1;
  color: #000;
  transform: translateY(0%);
}

.ovr_menu_pad {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.ovr_scroll_area {
  max-height: 100%;
  overflow-y: auto;
  padding-right: 10px;
  -webkit-overflow-scrolling: touch;
}
.ovr_scroll_area::-webkit-scrollbar {
  width: 8px;
}
.ovr_scroll_area::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.ovr_scroll_area::-webkit-scrollbar-thumb:hover {
  background: #999;
}