.filter-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.select-box {
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  padding-top: 20px;
}

.select-box .label {
  padding-right: 15px;
  width: 20%;
}

select {
  /* Reset Select */
  appearance: none;
  outline: 0;
  border: 1px solid #ff5b7f;
  box-shadow: none;
  border-radius: 24px;
  flex: 1;
  padding: 0 1em;
  color: #ff5b7f;
  background-color: #ffffff;
  background-image: none;
  cursor: pointer;
}

/* Remove IE arrow */
select::-ms-expand {
  display: none;
}

/* Custom Select wrapper */
.select {
  position: relative;
  display: flex;
  width: 18em;
  height: 2.6em;
  border-radius: .25em;
  overflow: hidden;
}

/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.8em;
  /* background-color: #34495e; */
  transition: .25s all ease;
  pointer-events: none;
  color: #ff5b7f;
}

/* Transition */
.select:hover::after {
  color: #95243d;
}


/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .select {
    height: auto;
  }

  .select::after {
    padding: 0.5em;
  }

  select {
    height: 34px;
    font-size: 15px;
  }

  .select-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
  }

  .select-box .label {
    font-size: 15px;
  }

  .filter-area {
    display: inline;
  }
}