.pagination-mobile-component {
  padding: 20px 0;
}
.pagination-mobile-component .pagination-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.pagination-mobile-component .pagination-mobile a, .pagination-mobile-component .pagination-mobile span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.pagination-mobile-component .pagination-mobile a {
  color: #000;
  font-size: 12px;
  border: 1px solid #F0F0F0;
}
.pagination-mobile-component .pagination-mobile a:active:not(.disabled) {
  opacity: 0.8;
}
.pagination-mobile-component .pagination-mobile a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination-mobile-component .pagination-mobile .current {
  color: #EA8101;
  border: 1px solid #EA8101;
  cursor: default;
  pointer-events: none;
}
.pagination-mobile-component .pagination-mobile .page-more {
  background-color: transparent;
  border: none;
  cursor: default;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5019607843);
}
.pagination-mobile-component .pagination-mobile .page-prev,
.pagination-mobile-component .pagination-mobile .page-next {
  width: 68px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-sizing: border-box;
}
.pagination-mobile-component .pagination-mobile .page-next {
  background-color: #EA8101;
  color: #fff;
  border: 1px solid #EA8101;
}
