

	/* FORMS */
  
  .module-filter {
    margin-bottom: max(50px, calc(100 * var(--base-unit)));
  }
  
  .filter-form-list {
    display: flex;
    flex-flow: row wrap;
  }
  
  .filter-form-list > li {
    margin-right: 25px;
    margin-bottom: 25px;
  }

	.filter-form-list label,
	.search-form-list label {
    --min-font-size: 14px;
		display: block;
		margin-bottom: .6em;
    color: #adaeb0;
	}

	.styled-select,
	.styled-search {
		position: relative;
	}

	.styled-select select,
	li.search input {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		display: inline-block;
		background: #394390;
		color: #fff;
		border: 0;
		margin: 0;
		padding: 0;
		box-shadow: none;
		padding: .875rem 4em 0.95rem 1rem;
		--font-size: 18;
    --min-font-size: 16px;
    --max-font-size: 18px;
		outline: 0;
	}

	.styled-select select {
		cursor: pointer;
	}

	.styled-select::after,
	.styled-search::after {
		font-family: "fontello";
		content: '\e800';
		position: absolute;
		right: 1rem;
		top: calc(50% - 2px);
		z-index: 2;
		pointer-events: none;
		color: #ffd92f;
		transform: translateY(-50%);
	}

	.styled-search::after {
		content: '\e80f';
		font-size: 140%;
		top: 50%;
	}






  .form-list li.input input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: max(16px, min(1.45833333333333333333vw, 21px));
    font-family: "Source Sans Pro Regular", sans-serif;
    width: 100%;
    padding: 0.7em 1.2em;
  }
  
  
  
  
  
  
  @media (max-width: 500px) {
    
    .filter-form-list {
      flex-flow: column nowrap;
    }
    
    .filter-form-list > li {
      margin-right: 0;
      margin-bottom: var(--page-padding-left);
    }
    
    .filter-form-list > li .styled-select select {
      width: 100%;
    }
    
  }