/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 02 2025 | 12:45:17 */
.textgreen span {
  color: #00d36f;
}

.filters{
	display: flex;
	gap: 1.25rem;
}

.filters .filter-item{
	display: flex;
    flex-direction: column;
    align-items: center;
}

.filters .filter-item label{
	padding: 0 0.313rem;
    margin-bottom: -0.5rem;
    background-color: #ffffff;
    font-family: "Open Sans", Sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #008d4a;
    position: relative;
    z-index: 9;
}

.filters .filter-item select{
	padding: 1rem 1.875rem;
    font-family: "Open Sans", Sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1e1e1e;
    border-color: #dddddd;
    border-radius: 0.625rem;
}

#no-results-msg {
  display: none;
  text-align: center;
  font-style: italic;
  margin-top: 1rem;
  color: #a00;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.page-btn {
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  border: 1px solid #5a9;
  background-color: #ffffff;
  color: #2a6;
  user-select: none;
  font-size: 0.9rem;
  min-width: 30px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.page-btn:hover, .page-btn:focus, .page-btn:visited{
	background-color: #2a6 !important;
}

.page-btn.disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

.page-btn.active {
  background-color: #2a6;
  color: white;
  font-weight: bold;
  pointer-events: none;
}

@media(max-width: 767px){
	.remove_br_mobile br{
		display: none;
	}
	
	.filters{
		flex-direction: column;
	}
	
	.filters .filter-item{
		align-items: flex-start;
	}
	
	.filters .filter-item label{
		margin-left: 2rem;
	}
}