section {
  display: flex;
  overflow-x: overlay;
}
.table {
  width: 100vw;
  min-width: 100vw;
}
@media (min-width: 576px) and (max-width: 1200px) {
  .table {
    width: 50vw;
    min-width: 50vw;
  }
}
@media (min-width: 1200px) {
  .table {
    width: calc(100vw / 3);
    min-width: calc(100vw / 3);
  }
}

.layout {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.layout > main {
  flex: 1;
}

.header {
  display: flex;
  align-items: center;
  padding: 0px 20px;
  cursor: pointer;
}
.header img {
  width: 30px;
}
.rs-modal {
  width: fit-content;
}

footer {
  padding: 20px 40px;
  background-color: #f7f7fa;
}

.table-wrapper {
  display: flex;
  flex-direction: column;
}
.table-wrapper > .date {
  padding: 5px 15px;
}
.table-wrapper .category small:first-child {
  display: block;
  color: #00bcd4;
}

.frequency-table {
  display: block;
  max-height: 200px;
  height: 100%;
  overflow: auto;
}
.frequency-table > thead > th {
  top: 0px;
  position: sticky;
  background-color: #272c36;
}

