/* Makes our label white. */
.blocklyTreeLabel {
  color: black;
}
/* Adds padding around the group of categories and separators. */
.blocklyToolboxContents {
  padding: .5em;
}
/* Adds space between the categories, rounds the corners and adds space around the label. */


.blocklyTreeRow {
  padding: 3px;
  margin-bottom: .5em;
  border-radius: 4px;
  background-color: #F2F2F2 !important;
}
/* Changes color of the icon to white. */
.customIcon {
  color: white;
}
/* Stacks the icon on top of the label. */
.blocklyTreeRowContentContainer {
  /* display: flex;
  align-items: center;
  justify-content: center; */

  display: flex;
  flex-direction:row;
  align-items: center;
  margin-bottom: 5%;
  background-color: #F2F2F2;
  border: none;
  border-radius: 0;
}
.blocklyTreeRow {
  height: initial;
}

.blocklyToolboxDiv{
  background-color: #F2F2F2;
  width: 183px;
}


