/*
* {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
*/
.mdl-selectfield {
  width: 200px;
  height: 27px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.mdl-selectfield__select {
  background:
    linear-gradient(45deg, transparent 50%, rgba(0,0,0, 0.26) 50%),
    linear-gradient(135deg, rgba(0,0,0, 0.26) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 10px) calc(1em - 4px),
    calc(100% - 5px) calc(1em - 4px),
    100% 0;
  background-size:
    5px 5px, 5px 5px;
  background-repeat: no-repeat;

  /* reset */

  border-radius: 0;
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance:none;
  -moz-appearance:none;
  
  box-shadow: none;
  outline: none !important;

  border-style: solid;
  border-color: rgba(0,0,0, 0.12);
  border-width: 0 0 1px 0;
  
  width: 100%;
  height: 26px;
  line-height: 18px;
  padding-top: 4px;
  padding-bottom: 4px;

  background-color: transparent;
}

.mdl-selectfield__label {
  color: rgba(0,0,0, 0.26);
  font-size: 16px;
  left: 0;
  pointer-events: none;
  position: relative;
  display: block;
  top: -23px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.mdl-selectfield__label.is-active {
  color: rgb(255,87,34);
  font-size: 12px;
  top: -40px;
}