.x-picker {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.x-picker.landscape {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.x-picker.landscape .x-picker-title {
  border-radius: 4px 0 0 4px;
}
.x-picker-title {
  color: white;
  border-radius: 4px 4px 0 0;
}
.x-picker-body {
  position: relative;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in, width 0.3s ease-in;
  transition: height 0.3s ease-in, width 0.3s ease-in;
}