
.fi-tick{

  cursor: pointer;
  border-radius: 50%;

  transition: background 0.5s, transform 0.3s;
  background-color: black;

}

.fi-tick.ticked{

  transform: scale(1.2);
  background-color: green;

}

.hiddenTask {
  opacity: 0.2;
}

.MBPMenu {
  position: fixed;
  background: #000033;
  min-width: 100px;
  min-height: 100px;
  box-shadow: 3px 3px 5px #cccccc;
}

.MBPsection {
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 15px 15px;
  color: white;
  border-bottom: white 1px solid;
}

.MBPsection:hover {
  background-color: #333333;
  transition: background-color 0.5s;
}

.MBPColorPicker {
  padding: 8px;
  color: white;
  text-align: center;
}

.MBPColor {
  width: 30px;
  height: 30px;
  border: white 1px solid;
  cursor: pointer;
  margin: 2px;
  box-sizing: border-box;
}

.MBPColorSelected {
  border: white 4px solid;
}

.MBPColorSection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.MBPtable, .MBPth, .MBPtd {
  border: 1px solid black;
  border-collapse: collapse;
}

.MBPth, .MBPtd {
  padding: 15px;
}

.MBPth {
  text-align: left;
}

.MBPtable {
  border-spacing: 5px;
}
