.serviceBar {
  width: 300px;
  position: fixed;
  /* top: 50vh;
  transform: translateY(-50%) translateX(-50%); */
  top: 70px;
  transform: translateX(-50%);
  padding-left: 0;
}

.serviceBar .serviceItemContainer {
  display: block;
  position: relative;
  margin: 10px 0;
}

.serviceBar .serviceItem {
  display: inline-block;
  width: calc(50% + 50px);
  height: 60px;
  background-color: white;
  transition: all 0.3s ease;
  padding-left: 15px;
  border-radius: 0 8px 8px 0;
}

.serviceBar .serviceItemText {
  display: inline-block;
  width: calc(100% - 50px);
  line-height: 20px;
  margin: 10px 0;
  font-weight: bold;
}

.serviceBar .serviceItemIcon {
  float: right;
  width: 50px;
  height: 100%;
  padding: 15px 0;
  text-align: center;
  /* background-color: orange; */
  color: white;
  border-radius: 0 8px 8px 0;
}

.serviceBar .serviceItemContainer .serviceItem.force,
.serviceBar .serviceItemContainer:hover .serviceItem {
  margin-left: calc(50%);
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1)
}