.container {
  border-top: 1px solid rgba(145, 158, 171, 0.24);
  padding: 5px 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.rows_per_page {
  position: relative;
  display: flex;
  align-items: center;
}

.rows_select {
  margin-left: 7px;
  background: none;
  outline: none;
  border: none;
  font-family: "Public sans", sans-serif;
  color: var(--text-color);
  font-size: 14px !important;
}

.rows_select svg {
  fill: var(--text-color);
}
.rows_select fieldset {
  border: none;
}
.rows_select option {
  font-size: 14px !important;
  background: var(--secondary-color);
}

.row_button {
  background: none;
  outline: none;
  border: none;
  box-shadow: none;
  width: 0px;
  padding: 0px;
}

.row_button:hover {
  background: none;
  outline: none;
  border: none;
  box-shadow: none;
}

.rows_menu {
  position: absolute;
  right: 0px;
  top: -20px;
  display: flex;
  flex-direction: column;
  background: var(--secondary-color);
  padding: 5px 0px;
  box-shadow: rgb(0 0 0 / 24%) 0px 0px 2px 0px,
    rgb(0 0 0 / 24%) -20px 20px 40px -4px;
  border-radius: 5px;
  transform: scale(0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-out;
}
.rows_menu.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.rows_menu .row_button {
  padding: 10px 0px !important;
}

.main {
  margin-left: 30px;
  font-weight: 300;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.next_prev {
  margin-left: 20px;
}

@media screen and (max-width: 400px) {
  .rows_per_page {
    font-size: 13px;
  }
  .row_button {
    font-size: 13px;
  }
  .main {
    font-size: 12px;
  }
}
