@import "@styles/theme.scss";

.item {
  color             : #888888;
  height            : 64px;
  // width          : 160px;
  display           : flex;
  padding           : 8px 12px;
  background        : #fff;
  border            : 2px solid #E5E5E5;
  justify-content   : center;
  align-items       : center;
  font-size         : 28px;
  opacity           : .9;

  &--checked {
    background: $primary-color;
    color     : #fff;
    border    : $primary-color 2px solid;
  }
}