.lc-char-style.h1, .lc-char-style.h2, .lc-char-style.h3 {
  color: #000;
  font-family: Roboto, sans-serif;
  font-weight: bold;
}

.lc-char-style.default-text {
  font-size: 1.4rem;
  font-family: Roboto, sans-serif;
  line-height: 1.4;
  color: #888;
}

.lc-char-style.h1 {
  font-size: 3rem;
}

.lc-char-style.h2 {
  font-size: 1.6rem;
}

.lc-char-style.h3 {
  font-size: 2rem;
}

.lc-char-style.input-label {
  font-family: Roboto, sans-serif;
  color: #000;
  font-size: 1.4rem;
}

.lc-char-style.input {
  font-size: 1.4rem;
  font-family: Roboto, sans-serif;
  line-height: 1.6rem;
  color: #888;
}

.lc-char-style.no-uppercase {
  text-transform: none;
}

.lc-char-style.color-red {
  color: #ff1218;
}

.lc-char-style.color-grey {
  color: #888;
}

.lc-char-style.color-light-grey {
  color: #ccc;
}

.lc-char-style.color-white {
  color: #fff;
}

.lc-char-style.color-black {
  color: #000;
}

html {
  font-size: 10px;
}
html > body {
  font-size: 1.4rem;
  font-family: Roboto, sans-serif;
  line-height: 1.4;
  color: #888;
}
html > body > .content-wrapper {
  height: calc(100vh - 70px);
  overflow-y: scroll;
}
html > body a {
  color: inherit;
}
html > body *:focus {
  outline: none;
}

* {
  box-sizing: border-box;
}

/* --- --- */
.lc-app-notifications-wrapper {
  top: 20px;
  right: 20px;
  left: 20px;
  position: fixed;
  z-index: 20000000000;
}

/* --- --- */
.lc-app-loading-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  z-index: 20000000010;
}
.lc-app-loading-overlay.show {
  display: flex;
}
.lc-app-loading-overlay.animate-in {
  animation: marketplace-add-or-edit-loading-overlay-animate-in .3s ease forwards;
}
.lc-app-loading-overlay.animate-out {
  animation: marketplace-add-or-edit-loading-overlay-animate-out .3s ease forwards;
}
.lc-app-loading-overlay > .window {
  background-color: #fff;
  padding: 20px;
  line-height: 1;
}
.lc-app-loading-overlay > .window > .loading-icon {
  color: #4f55cd;
  font-size: 40px;
}
@keyframes marketplace-add-or-edit-loading-overlay-animate-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes marketplace-add-or-edit-loading-overlay-animate-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
