.banner-container {
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #ffa500;
  background-color: #ffeece;
  font-size: 14px;
  color: #838383; }

.btn-icon {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  transition: background-color 0.3s ease-in-out; }
  .btn-icon:hover {
    background-color: #e7e7e7; }

.pagination-container {
  color: #838383;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0;
  font-size: 14px; }

.pagination-page-controller {
  display: flex; }

.pagination-page-prev, .pagination-page-next {
  cursor: pointer;
  font-size: 24px;
  width: 45px;
  height: 30px;
  font-weight: bold;
  margin: 0 10px;
  text-align: center;
  color: #a7a7a7; }
  .pagination-page-prev:hover, .pagination-page-next:hover {
    color: #32cd32; }

.pagination-page-prev.disabled, .pagination-page-next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none; }
  .pagination-page-prev.disabled:hover, .pagination-page-next.disabled:hover {
    color: #a7a7a7; }

.pagination-page-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0; }

.pagination-page-item {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  width: 45px;
  height: 30px;
  border-radius: 4px; }
  .pagination-page-item:hover {
    border: 1px solid #32cd32;
    color: #32cd32;
    opacity: 0.5; }

.pagination-page-item.active {
  border: 1px solid #32cd32;
  color: #32cd32; }

.table-container {
  width: 100%;
  border-collapse: collapse; }

.table-head {
  color: #838383;
  border-bottom: 1px solid #e7e7e7; }
  .table-head-sorter-column {
    cursor: pointer; }
    .table-head-sorter-column:hover {
      background-color: #e7e7e7; }

.table-head > tr > td {
  padding: 20px;
  font-size: 14px; }

.table-body {
  color: #535353; }

.table-body > tr {
  border-bottom: 1px solid #e7e7e7; }

.table-body > tr > td {
  padding: 20px;
  font-size: 14px; }

.table-body tr:nth-child(even) {
  background-color: #f8f8f8; }

.title-block-container {
  padding: 30px 0;
  font-size: 40px;
  font-weight: bold; }

.flex {
  display: flex; }

.justify-center {
  justify-content: center; }

.justify-end {
  justify-content: flex-end; }

.items-center {
  align-items: center; }

.pa20 {
  padding: 20px; }

.mh-auto {
  margin: 0 auto; }

.ml8 {
  margin-left: 8px; }

.mt4 {
  margin-top: 4px; }

.mb50 {
  margin-bottom: 50px; }

.c-grey-a7 {
  color: #a7a7a7; }

.c-black {
  color: #000; }

.fw7 {
  font-weight: 700; }

.pointer {
  cursor: pointer; }

*,
*::before,
*::after {
  box-sizing: border-box; }

html,
body {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif; }

