/* Front: Filter box on home page */
.filter-box {
  background: #101014;
  border: 1px solid #1e1e24;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 18px 16px;
  margin: 15px 0 25px;
  direction: rtl;
  text-align: right;
}
.filter-row {
  align-items: flex-end;
}
.filter-field {
  margin-bottom: 12px;
}
.filter-label {
  display: block;
  margin-bottom: 6px;
  color: #ddd;
  font-size: 13px;
  text-align: right;
}
.filter-form .form-control {
  background: #0f0f13;
  border: 1px solid #2a2a33;
  color: #eaeaea;
  border-radius: 8px;
  height: 38px;
  text-align: right;
}
.filter-form select.form-control {
  text-align: right;
  text-align-last: right;
}
.filter-form .form-control:focus {
  outline: none;
  border-color: #fdd922;
  box-shadow: 0 0 0 2px rgba(253, 217, 34, 0.15);
}
.filter-actions {
  margin-top: 8px;
  text-align: left;
}
.filter-submit {
  background: #fdd922;
  border-color: #fdd922;
  color: #121212;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 18px;
}
.filter-submit:hover {
  background: #ffe463;
  border-color: #ffe463;
}
