#door-picker.container {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}
#door-picker .main {
  width: 300px;
}
#door-picker header {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 8px;
  font-family: 'Open Sans';
  font-weight: 700;
}
#door-picker item {
  display: flex;
  width: 220px;
  margin-left: 8px;
}
#door-picker item.add {
  margin-top: 8px;
}
#door-picker item info {
  flex-grow: 1;
}
action.remove {
  opacity: 0.6;
  transition: all 0.3s ease;
}
action.remove:hover {
  cursor: pointer;
  opacity: 1;
  transform: scale3d(1.1, 1.1, 1);
  transition: all 0.1s ease;
}
action.remove {
  color: #f00;
}
action.add {
  color: #fff;
  background: #db3c25;
  width: 68px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
action.add i {
  margin-right: 4px;
}
action.add:hover {
  cursor: pointer;
}
#door-picker select {
  font-family: Lato;
  font-size: 16px;
  position: relative;
  left: -2px;
}
