/* Background image grid */
img#backgroundPreview {
  background-size: cover;
}
body[data-theme=dark] img#backgroundPreview {
  background: url('../img/bg-img-placeholder.svg');
}
body[data-theme=light] img#backgroundPreview {
  background: url('../img/bg-img-placeholder-lm.svg');
}
div.bg-option.bg-active {
  box-shadow: 0 0 0 3px var(--primary-color) !important;
}
div.bg-option,div.bg-option img {
  width: 104px;
  height: 70px;
}
.clear-x {
  position: absolute;
  margin-left: -21px;
  margin-top: 3px;
  font-size: 18px;
  opacity: 0.7;
  border-radius: 100%;
}
body[data-theme="dark"] .clear-x {
  background: rgba(0, 0, 0, 0.6);
}
body[data-theme="light"] .clear-x {
  background: rgba(255, 255, 255, 0.6);
}
.clear-x:hover {
  opacity: 1;
}