#show-hide-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.right #show-hide-icon {
  align-self: flex-end;
}

.left #show-hide-icon {
  align-self: flex-start;
}

#show-hide-icon.color-primary {
  background: var(--theme-primary);
}

#show-hide-icon:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 2px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 3px;
}

#show-hide-icon:before {
  content: "";
  position: absolute;
  height: 12px;
  width: 2px;
  background: #fff;
  transform: rotate(-45deg);
  border-radius: 3px;
}

#show-hide-icon.right.hide {
  right: 0;
  transition: right 0.5s ease-out;
}

#show-hide-icon.left.hide {
  left: 0;
  transition: left 0.5s ease-out;
}
