.raf-thumbnail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px dashed tint($black, 75%); // color-mod(var(black) tint(75%));
  border-radius: $borderRadius;
  cursor: pointer;

  &:hover {
    background: tint($black, 95%); // color-mod(var(black) tint(95%));
  }
}
