@charset "UTF-8";

.wrapCenter {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.5rm;
  /* outline: dashed 1px red;
  background-color: grey; */
}

.wrapLeft {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  margin: 0%;
}

.wrapRight {
  display: flex;
  justify-content: right;
  align-items: right;
  text-align: right;
  margin: 0%;
}

.TopLeft {
  vertical-align: top;
  text-align: left;
  white-space: normal;
  width: 60%;
}

body {
  font-size: 16px;
}

table {
  width: 100%;
  height: 80%;
}

table td {
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: normal;
  vertical-align: top;
  padding: 0.5rem;
}

.menu-position {
  display: flex;
  right: 0;
  position: fixed;
  justify-content: flex-end;
  z-index: 70;
}

.menu-btn {
  display: flex;
  height: 48px;
  width: 48px;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 90;
  background-color: #e4e4e4;
  position: fixed;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  top: 13px;
  left: 12px;
  display: block;
  height: 3px;
  width: 24px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before {
  top: 8px;
  left: 0px;
}

.menu-btn span:after {
  top: 16px;
  left: 0px;
}

#menu-btn-check:checked~.menu-content {
  right: 0;
}

#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
  top: 8px;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 8px;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  position: fixed;
  width: 260px;
  height: 100%;
  top: 50px;
  right: -260px;
  z-index: 80;
  background-color: white; /* #e4e4e4; */
  border: solid;
  border-color: #e4e4e4;
  transition: all 0.5s;
  overflow-y: scroll;
  overflow-x: hidden;
}