.MediaPicker {
  align-items: center;
  border: 1px solid rgb(220, 220, 220);
  color: #848a95;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 10px 5px;
  text-align: center;

  &.single {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 120px;
    padding: 10px;
    width: 120px;
  }

  &.hidden {
    display: none;
  }

  input {
    display: none;
  }

  :hover {
    background-color: #f5f5f5;
  }
}