/* Import Google Font: Roboto Condensed */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

/* Apply the font to the body or specific elements */
.condensed {
    font-family: 'Roboto Condensed', sans-serif;
}

.material-select {
    /* font-family: 'Roboto Condensed', sans-serif; */
    position: relative;
    width: auto;
    margin: 20px 0;
    font-size: 16px;
    display: flex;
    flex-direction: column;
  }
  
  .material-select label {
    font-size: 12px;
    color: #adadad;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .material-select select {
    width: 100%;
    padding: 0px 30px 0px 5px;
    border: none;
    border-bottom: 2px solid #DE7552;
    background: transparent;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #333;
    text-transform: uppercase;
  }
  
  .material-select select:focus {
    outline: none;
    border-bottom-color: #b44d30;
  }
  
  .material-select .arrow {
    position: absolute;
    right: 0;
    bottom: 8px;
    pointer-events: none;
    color: #DE7552;
    font-size: 16px;
  }
  