@charset "UTF-8";
@keyframes spinner {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0);
  }
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 400;
  src: url("/fonts/NunitoSans/NunitoSans-Regular.ttf");
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 700;
  src: url("/fonts/NunitoSans/NunitoSans-Bold.ttf");
}
@font-face {
  font-family: "NunitoSans";
  font-weight: 100;
  src: url("/fonts/NunitoSans/NunitoSans-ExtraLight.ttf");
}
html {
  font-size: var(--font-size-desktop);
  font-family: "NunitoSans", sans-serif;
}
@media (max-width: 1399px) {
  html {
    font-size: var(--font-size-laptop);
  }
}
@media (max-width: 991px) {
  html {
    font-size: var(--font-size-tablet);
  }
}
@media (max-width: 767px) {
  html {
    font-size: var(--font-size-phone);
  }
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

a {
  text-decoration: none;
  color: var(--color-action-500);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

.deployer-editor.loading {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.deployer-editor.loading::before, .deployer-editor.loading::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.deployer-editor.loading::before {
  left: calc(50% - 1.1rem);
}
.deployer-editor.loading::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}

.field {
  position: relative;
  display: flex;
}
.field:not(:last-child) {
  margin-bottom: var(--padding-medium);
  border-bottom: 1px solid var(--color-default-200);
  padding-bottom: var(--padding-medium);
}
.field.loading {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
  min-height: var(--size-widget-small);
}
.field.loading::before, .field.loading::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.field.loading::before {
  left: calc(50% - 1.1rem);
}
.field.loading::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
.field.loading::before, .field.loading::after {
  margin-top: -0.5rem;
}
@media (max-width: 991px) {
  .field {
    display: block;
  }
  .field .field {
    margin-left: var(--padding-large);
  }
}
.field__tools {
  margin-right: var(--padding-small);
  padding-right: var(--padding-small);
  border-right: 1px solid var(--color-default-200);
  min-width: calc(var(--size-widget-small) + var(--padding-small));
}
.field__tools:empty {
  border-right: none;
}
@media (max-width: 991px) {
  .field__tools {
    border: 0;
    display: flex;
    margin-bottom: var(--padding-small);
  }
}
.field__tool:not(:last-child) {
  margin: 0 0 var(--padding-small) 0;
}
@media (max-width: 991px) {
  .field__tool:not(:last-child) {
    margin: 0 var(--padding-small) 0 0;
  }
}
.field__key {
  flex-basis: var(--width-field-key);
  flex-shrink: 0;
  line-height: var(--size-widget-small);
  margin-right: var(--padding-medium);
}
.field__key__description {
  color: var(--color-default-400);
  line-height: 1.5;
}
.field__value {
  flex-grow: 1;
}
.field__value > .widget, .field__value > .widget-group {
  max-width: var(--max-width-field-value);
}
.field__value__label {
  line-height: var(--size-widget-small);
}

.field--array-editor__items {
  width: 100%;
}
.field--array-editor__item {
  position: relative;
  display: flex;
}
.field--array-editor__item > .field {
  flex-grow: 1;
}
.field--array-editor__item > .widget, .field--array-editor__item > .widget-group {
  max-width: var(--max-width-field-value);
}
.field--array-editor__item__tools {
  display: flex;
  border-bottom: 1px solid var(--color-default-200);
  margin-bottom: var(--padding-medium);
}
.field--array-editor__item__tool {
  margin-left: var(--padding-small);
}
.field--rich-text-editor__header {
  background-color: var(--color-default-300);
  display: flex;
  align-items: flex-end;
  min-height: var(--size-widget-large);
  border-top-left-radius: var(--border-radius-small);
  border-top-right-radius: var(--border-radius-small);
}
.field--rich-text-editor__header__tabs {
  margin-left: var(--padding-medium);
  flex-grow: 1;
  display: flex;
}
.field--rich-text-editor__header__tab {
  display: block;
  border: 0;
  margin-right: var(--padding-small);
  background-color: var(--color-default-200);
  border-bottom: 1px solid transparent;
  padding: 0 var(--padding-large);
  line-height: var(--size-widget-medium);
  height: var(--size-widget-medium);
  border-top-left-radius: var(--border-radius-small);
  border-top-right-radius: var(--border-radius-small);
  font-weight: bold;
}
.field--rich-text-editor__header__tab.active {
  pointer-events: none;
}
.field--rich-text-editor__header__tab:not(.active) {
  border-color: var(--color-default-300);
  cursor: pointer;
}
.field--rich-text-editor__header__tab:not(.active):hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.field--rich-text-editor__header__tools {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-right: var(--padding-medium);
}
.field--rich-text-editor__body {
  min-height: var(--height-rich-text-editor);
  background-color: var(--color-default-200);
  border-bottom-left-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: var(--padding-small);
  display: flex;
}
.field--rich-text-editor__body > .widget--text {
  height: auto;
}

.list-item--panel-item.loading > .list-item--panel-item__inner {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.list-item--panel-item.loading > .list-item--panel-item__inner::before, .list-item--panel-item.loading > .list-item--panel-item__inner::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.list-item--panel-item.loading > .list-item--panel-item__inner::before {
  left: calc(50% - 1.1rem);
}
.list-item--panel-item.loading > .list-item--panel-item__inner::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
.list-item--panel-item__inner {
  display: flex;
  border-bottom: 1px solid var(--color-decor-800);
  min-height: var(--size-widget-large);
}
.list-item--panel-item[data-drag-over] > .list-item--panel-item__inner {
  position: relative;
}
.list-item--panel-item[data-drag-over] > .list-item--panel-item__inner::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  z-index: 20;
  pointer-events: none;
}
.list-item--panel-item[data-drag-over=self] > .list-item--panel-item__inner::after {
  top: 0;
  height: calc(100% - 2px);
  width: calc(100% - 4px);
  border: 2px solid var(--color-decor-text);
}
.list-item--panel-item[data-drag-over=above] > .list-item--panel-item__inner::after {
  top: -1px;
  height: 2px;
  width: 100%;
  background-color: var(--color-decor-text);
}
.list-item--panel-item[data-drag-over=below] .list-item--panel-item__inner::after {
  bottom: -2px;
  height: 2px;
  width: 100%;
  background-color: var(--color-decor-text);
}
.list-item--panel-item__icon {
  display: inline-block;
  margin-right: 0.75rem;
  width: 1rem;
  text-align: center;
}
.list-item--panel-item__name {
  padding: 0 1rem 0 1rem;
  line-height: var(--size-widget-large);
  flex-grow: 1;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-item--panel-item__name:hover, .list-item--panel-item__name:focus {
  outline: none;
  background-color: var(--color-decor-700);
}
.list-item--panel-item__name:hover ~ .list-item--panel-item__actions, .list-item--panel-item__name:hover ~ .list-item--panel-item__properties, .list-item--panel-item__name:focus ~ .list-item--panel-item__actions, .list-item--panel-item__name:focus ~ .list-item--panel-item__properties {
  background-color: var(--color-decor-700);
}
.list-item--panel-item.active > .list-item--panel-item__inner > .list-item--panel-item__name, .list-item--panel-item.active > .list-item--panel-item__inner > .list-item--panel-item__actions, .list-item--panel-item.active > .list-item--panel-item__inner > .list-item--panel-item__properties {
  background-color: var(--color-decor-800);
}
.list-item--panel-item__actions, .list-item--panel-item__properties {
  display: flex;
  align-items: center;
}
.list-item--panel-item__actions:last-child, .list-item--panel-item__properties:last-child {
  padding-right: 0.5rem;
}
.list-item--panel-item__property {
  opacity: 0.5;
}
.list-item--panel-item__property, .list-item--panel-item__action {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: inherit;
  text-align: center;
  height: var(--size-widget-small);
  width: var(--size-widget-small);
  margin: calc((var(--size-widget-large) - var(--size-widget-small)) / 2) 0;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.list-item--panel-item__property:focus, .list-item--panel-item__property:hover, .list-item--panel-item__action:focus, .list-item--panel-item__action:hover {
  outline: none;
  background-color: var(--color-decor-700);
}
.list-item--panel-item__children {
  margin-left: 1rem;
  border-left: 1px solid var(--color-decor-800);
}

.list-item--project {
  padding: 1rem;
  margin: 0.5rem;
  position: relative;
  flex-grow: 0;
  flex-basis: calc(33.33% - 1rem);
  width: calc(33.33% - 1rem);
  color: var(--color-default-text);
  background-color: var(--color-default);
  transform-origin: center;
  transition: transform 0.25s ease;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}
.list-item--project.loading {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.list-item--project.loading::before, .list-item--project.loading::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.list-item--project.loading::before {
  left: calc(50% - 1.1rem);
}
.list-item--project.loading::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
@media (max-width: 991px) {
  .list-item--project {
    flex-basis: calc(50% - 1rem);
    width: calc(50% - 1rem);
  }
}
@media (max-width: 767px) {
  .list-item--project {
    flex-basis: 0;
    width: auto;
  }
}
.list-item--project__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.list-item--project__info {
  flex-grow: 1;
}
.list-item--project__info__name {
  margin: 0;
}
.list-item--project__environment {
  position: relative;
  margin-bottom: 1rem;
}
.list-item--project .widget--popup[role=item-menu] {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.list-item--user {
  color: var(--color-default-text);
  background-color: var(--color-default);
  padding: 1rem;
  margin: 0.5rem;
  position: relative;
  flex-grow: 0;
  flex-basis: calc(33.33% - 1rem);
  width: calc(33.33% - 1rem);
  transform-origin: center;
  transition: transform 0.25s ease;
  box-shadow: var(--box-shadow);
}
@media (max-width: 991px) {
  .list-item--user {
    flex-basis: calc(50% - 1rem);
    width: calc(50% - 1rem);
  }
}
@media (max-width: 767px) {
  .list-item--user {
    flex-basis: 0;
    width: auto;
  }
}
.list-item--user__name {
  margin: 0;
}
.list-item--user__type {
  margin-top: 0.5rem;
}
.list-item--user__type__icon {
  margin-right: 0.5rem;
}
.list-item--user .widget--popup[role=item-menu] {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

/**
 * A generic modal
 */
.modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.25);
  transition: opacity 0.5s ease;
  overflow-y: auto;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999;
}
.modal.in {
  opacity: 1;
}
.modal.in .modal__dialog {
  transform: none !important;
}
.modal__dialog {
  transform: translateY(-2rem);
  margin: 10rem auto 2rem auto;
  transition: transform 0.5s ease;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-small);
  width: calc(100% - 2rem);
  max-width: 40rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal__close {
  border: 0;
  line-height: 2rem;
  height: var(--size-widget-small);
  display: block;
  width: var(--size-widget-small);
  color: var(--color-decor-text);
  background-color: var(--color-decor-500);
  border-radius: var(--border-radius-small);
  cursor: pointer;
  margin-left: 1rem;
}
.modal__close:hover {
  background-color: var(--color-decor-200);
}
.modal__header {
  background-color: var(--color-decor-500);
  color: var(--color-decor-text);
  padding: 1rem;
  position: relative;
  display: flex;
}
.modal__title {
  white-space: nowrap;
  line-height: var(--size-widget-small);
  height: var(--size-widget-small);
  margin: 0;
  padding-right: 1rem;
  flex-shrink: 0;
  flex-grow: 1;
}
.modal__body {
  padding: 1rem;
  background-color: var(--color-default);
  color: var(--color-default-text);
  position: relative;
  flex-grow: 1;
  margin: 0;
}
.modal__body__message {
  list-style-type: none;
}
.modal__body__message + .modal__body__message {
  margin-top: 1rem;
}
.modal__footer {
  background-color: var(--color-decor-500);
  padding: 1rem;
  color: var(--color-decor-text);
  display: flex;
  justify-content: flex-end;
}
.modal__footer .widget {
  margin-left: 0.5rem;
}
.modal[role=notification-small] {
  background-color: transparent;
  height: auto;
  width: auto;
  overflow-y: visible;
  top: auto;
  bottom: 0;
}
.modal[role=notification-small] .modal__dialog {
  transform: translateY(2rem);
  width: auto;
  margin: 1rem;
  background-color: var(--color-action-500);
  color: var(--color-action-text);
  padding: 1rem;
}
.modal[role=notification-small] .modal__header {
  background-color: transparent;
  padding: 0;
}
.modal[role=notification-small] .modal__title {
  height: auto;
}
.modal[role=notification-small] .modal__close {
  background-color: var(--color-action-300);
}
.modal[role=notification-small] .modal__body {
  padding: 0;
  background-color: transparent;
  color: inherit;
}
.modal[role=notification-small] .modal__body a {
  color: inherit;
  text-decoration: underline;
}
.modal[role=notification-small] .modal__footer {
  display: none;
}

/**
 * An element for highlighting and explaining other elements
 */
@keyframes highlight-pulse {
  to {
    box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0);
  }
}
@keyframes highlight-popup {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.modal--highlight {
  position: absolute;
  display: flex;
  z-index: 999999;
}
.modal--highlight.right {
  flex-direction: row;
}
.modal--highlight.left {
  flex-direction: row-reverse;
}
.modal--highlight.top {
  flex-direction: column-reverse;
}
.modal--highlight.bottom {
  flex-direction: column;
}
.modal--highlight.right .modal--highlight__label {
  top: 0.5rem;
  left: calc(100% + 1.5rem);
}
.modal--highlight.right .modal--highlight__label:after {
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-right: 1rem solid var(--color-action-500);
  top: 0%;
  right: 100%;
}
.modal--highlight.left .modal--highlight__label {
  top: 0.5rem;
  right: calc(100% + 1.5rem);
}
.modal--highlight.left .modal--highlight__label:after {
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid var(--color-action-500);
  top: 0%;
  left: 100%;
}
.modal--highlight.top .modal--highlight__label {
  bottom: calc(100% + 1.5rem);
}
.modal--highlight.top .modal--highlight__label:after {
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid var(--color-action-500);
  top: 100%;
  left: 0%;
}
.modal--highlight.bottom .modal--highlight__label {
  top: calc(100% + 1.5rem);
}
.modal--highlight.bottom .modal--highlight__label:after {
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-bottom: 1rem solid var(--color-action-500);
  bottom: 100%;
  left: 0%;
}
.modal--highlight__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.modal--highlight__frame {
  border: 1px solid var(--color-action-500);
  border-radius: 0.2rem;
  box-shadow: 0 0 0 0 var(--color-action-500);
  animation: highlight-pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.modal--highlight__label {
  transform-origin: 0% 0%;
  animation: highlight-popup 0.5s once cubic-bezier(0.75, -0.5, 0, 1.75);
  border-radius: 0.2rem;
  border: 1px solid var(--color-action-500);
  background-color: var(--color-default);
  color: var(--color-default-text);
  font-weight: bold;
  padding: 1rem;
  line-height: 1.5;
  position: absolute;
  min-height: 2rem;
  min-width: 20rem;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
}
.modal--highlight__label:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.modal--highlight__button {
  margin-top: 0.5rem;
  margin-left: auto;
}

.modal--media-browser__dialog {
  max-width: 100rem;
}
.modal--media-browser__body {
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .modal--media-browser__body {
    display: block;
  }
}
.modal--media-browser__folders {
  padding: 1rem;
  border-right: 1px solid var(--color-default-300);
  flex-basis: 20rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .modal--media-browser__folders {
    flex-basis: 0;
  }
}
.modal--media-browser__items {
  flex-grow: 1;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 20rem;
}
.modal--media-browser__items::after {
  content: "";
  display: block;
  clear: both;
}
.modal--media-browser__search {
  flex-grow: 0;
  width: auto;
}
.modal--media-browser__item {
  flex-grow: 1;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  background-color: transparent;
  margin: 0;
  min-width: 20rem;
  max-width: calc(100% / 3);
  height: 20rem;
  position: relative;
  border: 1px solid transparent;
}
.modal--media-browser__item:hover {
  border-color: var(--color-action-500);
}
@media (max-width: 991px) {
  .modal--media-browser__item {
    max-width: calc(100% / 2);
  }
}
@media (max-width: 767px) {
  .modal--media-browser__item {
    max-width: 100%;
  }
}
.modal--media-browser__item__media {
  position: absolute;
  max-height: calc(100% - 1rem);
  max-width: calc(100% - 1rem);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal--media-browser__item__name {
  display: block;
  padding: 0 0.5rem;
  line-height: var(--size-widget-small);
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: calc(100% - 2rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: var(--color-default-100);
  color: var(--color-default-text);
  border-radius: var(--border-radius-small);
}
.modal--media-browser__item:hover .modal--media-browser__item__name {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}

.modal--pick-icon .modal__dialog {
  max-width: 70rem;
}
.modal--pick-icon__search {
  margin-bottom: 1rem;
  max-width: 100%;
}
.modal--pick-icon__icon {
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0.5rem;
  text-align: center;
  line-height: var(--size-widget-medium);
  float: left;
  width: var(--size-widget-medium);
  height: var(--size-widget-medium);
  cursor: pointer;
  border-radius: var(--border-radius-small);
}
.modal--pick-icon__icon:hover {
  background-color: var(--color-default-100);
}

.modal--upload-media__previews {
  margin: 0 auto 1rem auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
.modal--upload-media__previews:empty {
  display: none;
}
.modal--upload-media__previews::after {
  content: "";
  display: block;
  clear: both;
}
.modal--upload-media__preview {
  flex-grow: 1;
  flex-basis: 0;
}
.modal--upload-media__preview img, .modal--upload-media__preview video {
  max-width: 100%;
  display: block;
  max-height: 20vh;
  margin: 0 auto;
}

.navigation--resource-browser {
  width: 100%;
  height: 100%;
  display: flex;
}
.navigation--resource-browser__tabs {
  padding: 0.5rem 0 0 0;
  background-color: var(--color-decor-500);
}
.navigation--resource-browser__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0.5rem 0 1rem 0;
}
.navigation--resource-browser__logo svg {
  fill: var(--color-decor-700);
  width: var(--size-widget-medium);
  height: var(--size-widget-medium);
}
.navigation--resource-browser__logo:hover svg {
  fill: var(--color-action-500);
}
.navigation--resource-browser__tab {
  display: block;
  margin: var(--padding-small) 0 0 var(--padding-medium);
  width: var(--size-widget-large);
  height: var(--size-widget-large);
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
  line-height: var(--size-widget-large);
  text-align: center;
  font-size: 2rem;
}
.navigation--resource-browser__tab.active {
  color: var(--color-decor-text);
  background-color: var(--color-decor-600);
}
.navigation--resource-browser__tab:not(.active) {
  background-color: var(--color-decor-600);
  color: var(--color-decor-800);
  border-right: 1px solid var(--color-decor-500);
}
.navigation--resource-browser__tab:focus {
  outline: none;
}
.navigation--resource-browser__tab:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.navigation--resource-browser__panels {
  flex-grow: 1;
  background-color: var(--color-decor-600);
  color: var(--color-decor-text);
}

.navigation--session {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  z-index: 200;
}
.navigation--session .widget {
  margin-left: 0.5rem;
}

html, body {
  height: 100%;
  background-color: var(--color-default-100);
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

@keyframes page__spinner__logo {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
.page {
  margin: 0;
  padding: 0;
}
.page.loading .page__spinner {
  opacity: 1;
  pointer-events: all;
}
.page.logo {
  background-color: var(--color-decor-500);
  color: var(--color-decor-text);
}
.page.logo::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/svg/logo_white.svg");
  opacity: 0.04;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.page.centered {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page__spinner {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  transition: opacity 1s ease;
  background-color: var(--color-default-100);
}
.page__spinner__logo {
  position: absolute;
  top: calc(50% - 5rem);
  left: calc(50% - 5rem);
  width: 10rem;
  height: 10rem;
}
.page__spinner__logo svg {
  fill: var(--color-action-500);
  width: 100%;
  height: 100%;
  animation: page__spinner__logo 1s ease infinite;
}

.page--dashboard__header {
  background-color: var(--color-decor-500);
  color: var(--color-decor-text);
  padding: 1rem 0 0 5rem;
  height: 4rem;
  display: flex;
}
.page--dashboard__header__logo {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  text-align: center;
}
.page--dashboard__header__logo svg {
  fill: var(--color-decor-700);
  width: var(--size-widget-medium);
  height: var(--size-widget-medium);
}
.page--dashboard__header__logo:hover svg {
  fill: var(--color-action-500);
}
.page--dashboard__header__actions {
  display: flex;
  padding: 0.5rem 0;
  margin-left: auto;
}
.page--dashboard__header__actions .widget {
  margin-right: 0.5rem;
}
.page--dashboard__header__tab {
  text-decoration: none;
  padding: 0 2rem;
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
  display: inline-block;
  height: 3rem;
  line-height: 3rem;
  text-transform: uppercase;
  font-weight: bold;
  border: 0;
  background-color: transparent;
  color: var(--color-decor-text);
  background-color: var(--color-decor-600);
  margin-right: 0.5rem;
}
.page--dashboard__header__tab:hover {
  color: var(--color-action-text);
  background-color: var(--color-action-500);
  text-decoration: none;
}
.page--dashboard__header__tab.active {
  pointer-events: none;
  color: var(--color-default-text);
  background-color: var(--color-default-100);
}
.page--dashboard__body {
  width: 100%;
  padding-top: 4rem;
  height: calc(100% - 4rem);
  overflow-y: auto;
  margin: 0;
}
.page--dashboard__body__container {
  width: calc(100% - 2rem);
  max-width: 60rem;
  margin: 0 auto;
}
.page--dashboard__users__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
@media (max-width: 767px) {
  .page--dashboard__users__list {
    flex-direction: column;
  }
}
.page--dashboard__users__add {
  margin-top: 1rem;
}
.page--dashboard__user__name {
  margin: 0;
}
.page--dashboard__projects {
  padding-bottom: 4rem;
}
.page--dashboard__projects__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
  position: relative;
  min-height: 10rem;
}
@media (max-width: 767px) {
  .page--dashboard__projects__list {
    flex-direction: column;
  }
}
.page--dashboard__projects__list .placeholder {
  padding: 1rem;
  margin: 0.5rem;
  position: relative;
  flex-grow: 0;
  flex-basis: calc(33.33% - 1rem);
  width: calc(33.33% - 1rem);
  color: var(--color-default-text);
  background-color: var(--color-default);
  transform-origin: center;
  transition: transform 0.25s ease;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  min-height: 12rem;
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.page--dashboard__projects__list .placeholder::before, .page--dashboard__projects__list .placeholder::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.page--dashboard__projects__list .placeholder::before {
  left: calc(50% - 1.1rem);
}
.page--dashboard__projects__list .placeholder::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
.page--dashboard__projects__add {
  margin-top: 1rem;
}
.page--dashboard__server__info {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1rem;
  background-color: var(--color-default);
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
}
.page--dashboard__frontend-test__check {
  position: relative;
  line-height: 2rem;
  padding-bottom: 0.5rem;
}
.page--dashboard__frontend-test__check:not(:last-child) {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-default-200);
}
.page--dashboard__frontend-test__check ul {
  border-top: 1px solid var(--color-default-200);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.page--dashboard__frontend-test__check__checkbox {
  position: absolute !important;
  top: 0;
  right: 0;
}
.page--dashboard__projects__add, .page--dashboard__users__add {
  position: fixed !important;
  bottom: 2rem;
  right: 3rem;
}

/**
 * Environment page style
 */
.page--environment__spaces {
  display: flex;
  height: 100%;
  transition: opacity 0.5s ease;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.page--environment__space {
  position: relative;
}
.page--environment__space--nav {
  flex-shrink: 0;
  height: 100%;
}
@media (max-width: 991px) {
  body.welcome .page--environment__space--nav {
    flex-grow: 1;
  }
}
.page--environment__space--editor {
  flex-grow: 1;
  height: 100%;
}
@media (max-width: 991px) {
  body.welcome .page--environment__space--editor {
    display: none;
  }
}

.page--login__login {
  max-width: 20rem;
  width: calc(100% - 2rem);
  text-align: center;
}
.page--login__login .widget {
  margin-bottom: 1rem;
}

.page--setup__step {
  max-width: 20rem;
  width: calc(100% - 2rem);
  text-align: center;
}
.page--setup__step .widget {
  margin-bottom: 1rem;
}

.panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: calc(var(--width-panels) - var(--size-widget-large) - var(--padding-medium));
}
@media (max-width: 991px) {
  body:not(.welcome) .panel {
    display: none;
  }
  body.welcome .panel {
    width: 100%;
  }
}
.panel.loading {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.panel.loading::before, .panel.loading::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.panel.loading::before {
  left: calc(50% - 1.1rem);
}
.panel.loading::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
.panel__tools {
  display: flex;
  padding: 0.5rem;
  border-bottom: 1px solid var(--color-decor-800);
  position: relative;
}
.panel__tools__sort {
  margin-left: 0.5rem;
}
.panel__items {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.panel__context {
  flex-grow: 1;
  width: 100%;
}
.panel[data-drag-over] .panel__context {
  box-shadow: inset 0 0 0 2px var(--color-decor-text);
}

.processor-editor.loading {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.processor-editor.loading::before, .processor-editor.loading::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.processor-editor.loading::before {
  left: calc(50% - 1.1rem);
}
.processor-editor.loading::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}

@keyframes resource-editor__footer__warning__icon {
  0% {
    transform: scale(0.9);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.resource-editor {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.resource-editor.loading {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.resource-editor.loading::before, .resource-editor.loading::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.resource-editor.loading::before {
  left: calc(50% - 1.1rem);
}
.resource-editor.loading::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
.resource-editor__welcome {
  padding: 4rem;
  margin-right: auto;
}
.resource-editor__header {
  background-color: var(--color-decor-500);
  color: var(--color-decor-text);
  display: flex;
  align-items: flex-end;
  min-height: var(--size-widget-large);
  flex-shrink: 0;
}
.resource-editor__header__spacer {
  flex-grow: 1;
}
.resource-editor__header__title {
  line-height: var(--size-widget-large);
  padding-right: var(--padding-large);
  flex-shrink: 0;
}
.resource-editor__header__title__icon {
  display: inline-block;
  width: var(--size-widget-large);
  text-align: center;
}
.resource-editor__header__tabs {
  display: flex;
}
.resource-editor__header__tab {
  display: block;
  background-color: var(--color-decor-700);
  border-bottom: 1px solid transparent;
  padding: 0 var(--padding-large);
  line-height: var(--size-widget-medium);
  height: var(--size-widget-medium);
  border-top-left-radius: var(--border-radius-small);
  border-top-right-radius: var(--border-radius-small);
  font-weight: bold;
  margin-right: var(--padding-small);
}
.resource-editor__header__tab.active {
  background-color: var(--color-default-100);
  color: var(--color-default-text);
  pointer-events: none;
}
.resource-editor__header__tab:not(.active) {
  color: var(--color-decor-text);
  background-color: var(--color-decor-600);
  border-color: var(--color-decor-500);
}
.resource-editor__header__tab:not(.active):hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.resource-editor__body {
  border-radius: 0;
  border: 0;
  padding: 1rem;
  flex-grow: 1;
  overflow: auto;
}
.resource-editor__body.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-editor__body > *:last-child {
  margin-bottom: var(--padding-medium);
}
.resource-editor__footer {
  border-top: 1px solid var(--color-default-200);
  padding: 1rem;
  min-height: var(--size-widget-large);
  display: flex;
  flex-shrink: 0;
}
.resource-editor__footer__warning {
  position: relative;
}
.resource-editor__footer__warning:empty {
  display: none;
}
.resource-editor__footer__warning__message {
  padding: var(--padding-medium);
  position: absolute;
  bottom: 100%;
  width: var(--max-width-field-value);
  background-color: var(--color-warn-500);
  color: var(--color-warn-text);
  border-radius: var(--border-radius-small);
  line-height: 1.5;
}
.resource-editor__footer__warning__icon {
  animation: resource-editor__footer__warning__icon 0.25s ease;
  cursor: pointer;
  line-height: var(--size-widget-medium);
  display: block;
  text-align: center;
  width: var(--size-widget-medium);
  background-color: var(--color-warn-500);
  color: var(--color-warn-text);
  border-radius: var(--border-radius-small);
}
.resource-editor__footer__warning__icon:hover {
  background-color: var(--color-warn-300);
}
.resource-editor__footer__actions {
  margin-left: auto;
  display: flex;
}

/**
 * A generic widget
 */
@keyframes widget__spinner {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.widget {
  position: relative;
  text-align: inherit;
  font-size: inherit;
}
.widget-group {
  display: flex;
  position: relative;
}
.widget-group.vertical {
  flex-direction: column;
}
.widget-group + .widget-group {
  margin-top: 0.5rem;
}
.widget-group > .widget:not(.small):not(.checkbox):not(.widget--checkbox):not(.widget--popup) {
  flex-grow: 1;
  flex-basis: 100%;
  max-width: 100%;
}
.widget-group:not(.vertical) > .widget:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.widget-group:not(.vertical) > .widget:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.widget-group:not(.vertical) > .widget:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.widget-group.vertical > .widget:first-child {
  border-top-left-radius: 0.2rem !important;
  border-top-right-radius: 0.2rem !important;
}
.widget-group.vertical > .widget:last-child {
  border-bottom-left-radius: 0.2rem !important;
  border-bottom-right-radius: 0.2rem !important;
}
.widget-group__separator {
  user-select: none;
  pointer-events: none;
  position: relative;
  line-height: 2rem;
}
.widget-group__separator:not(.line) {
  min-width: 2rem !important;
  padding: 0 0.5rem;
}
.widget-group__separator.line {
  background-color: var(--color-default-200);
  width: 1px;
  height: 2rem;
}
.widget__notifier {
  position: absolute;
  line-height: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  display: block;
  top: -0.75rem;
  right: calc(100% - 0.75rem);
  background-color: var(--color-action-500);
  color: var(--color--action-text);
  border-radius: 1rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 0.3rem;
}
.widget.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.widget.hidden {
  display: none;
}
.widget.warn {
  background-color: var(--color-warn-500);
  color: var(--color-warn-text);
}
.widget.warn:hover {
  background-color: var(--color-warn-300);
}
.widget.action {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget.action:hover {
  background-color: var(--color-action-300);
}
.widget.default, .field--array-editor__item__tool > .widget.widget--popup__icon, .field--array-editor__add > .widget.widget--popup__label {
  background-color: var(--color-default-200);
  color: var(--color-default-text);
}
.widget.default:hover, .field--array-editor__item__tool > .widget.widget--popup__icon:hover, .field--array-editor__add > .widget.widget--popup__label:hover {
  background-color: var(--color-default-200);
}
.widget.decor {
  background-color: var(--color-decor-500);
  color: var(--color-decor-text);
}
.widget.decor:hover {
  background-color: var(--color-decor-300);
}

.widget--button, .field--array-editor__item__tool > .widget--popup__icon, .field--array-editor__add > .widget--popup__label {
  border: 0;
  border-radius: var(--border-radius-small);
  background-color: var(--color-action-500);
  color: var(--color-action-text);
  height: var(--size-widget-medium);
  line-height: var(--size-widget-medium);
  padding: 0 1rem;
  text-transform: uppercase;
  display: block;
  min-width: 10rem;
  text-align: center;
  cursor: pointer;
  max-width: 20rem;
  position: relative;
}
.widget--button:not(.fa), .field--array-editor__item__tool > .widget--popup__icon:not(.fa), .field--array-editor__add > .widget--popup__label:not(.fa) {
  font-weight: bold;
}
.widget--button:focus, .field--array-editor__item__tool > .widget--popup__icon:focus, .field--array-editor__add > .widget--popup__label:focus {
  outline: none;
}
.widget--button:hover, .field--array-editor__item__tool > .widget--popup__icon:hover, .field--array-editor__add > .widget--popup__label:hover, .widget--button:focus, .field--array-editor__item__tool > .widget--popup__icon:focus, .field--array-editor__add > .widget--popup__label:focus {
  background-color: var(--color-action-300);
  text-decoration: none;
}
.widget--button.round, .field--array-editor__item__tool > .round.widget--popup__icon, .field--array-editor__add > .round.widget--popup__label {
  font-size: 1.5rem;
  font-weight: normal;
  height: var(--size-widget-large);
  line-height: var(--size-widget-large);
  width: var(--size-widget-large);
  min-width: 0;
  border-radius: 50%;
  padding: 0;
  box-shadow: var(--box-shadow);
}
.widget--button.right, .field--array-editor__item__tool > .right.widget--popup__icon, .field--array-editor__add > .right.widget--popup__label {
  margin-left: auto;
}
.widget--button.low, .field--array-editor__item__tool > .low.widget--popup__icon, .field--array-editor__add > .low.widget--popup__label {
  height: var(--size-widget-small);
  line-height: var(--size-widget-small);
}
.widget--button.small, .field--array-editor__add > .small.widget--popup__label, .field--array-editor__item__tool > .widget--popup__icon {
  width: var(--size-widget-small);
  flex-basis: var(--size-widget-small);
  line-height: var(--size-widget-small);
  height: var(--size-widget-small);
  padding: 0;
  min-width: 0;
  flex-grow: 0;
  flex-shrink: 0;
}
.widget--button.loading, .field--array-editor__item__tool > .loading.widget--popup__icon, .field--array-editor__add > .loading.widget--popup__label {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
  color: transparent;
}
.widget--button.loading::before, .field--array-editor__item__tool > .loading.widget--popup__icon::before, .field--array-editor__add > .loading.widget--popup__label::before, .widget--button.loading::after, .field--array-editor__item__tool > .loading.widget--popup__icon::after, .field--array-editor__add > .loading.widget--popup__label::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.widget--button.loading::before, .field--array-editor__item__tool > .loading.widget--popup__icon::before, .field--array-editor__add > .loading.widget--popup__label::before {
  left: calc(50% - 1.1rem);
}
.widget--button.loading::after, .field--array-editor__item__tool > .loading.widget--popup__icon::after, .field--array-editor__add > .loading.widget--popup__label::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
.widget--button.loading::after, .field--array-editor__item__tool > .loading.widget--popup__icon::after, .field--array-editor__add > .loading.widget--popup__label::after, .widget--button.loading::before, .field--array-editor__item__tool > .loading.widget--popup__icon::before, .field--array-editor__add > .loading.widget--popup__label::before {
  color: var(--color-action-text);
}
.widget--button.loading.default::after, .field--array-editor__item__tool > .loading.widget--popup__icon::after, .field--array-editor__add > .loading.widget--popup__label::after, .widget--button.loading.default::before, .field--array-editor__item__tool > .loading.widget--popup__icon::before, .field--array-editor__add > .loading.widget--popup__label::before {
  color: var(--color-default-text);
}
.widget--button.loading.decor::after, .field--array-editor__item__tool > .loading.decor.widget--popup__icon::after, .field--array-editor__add > .loading.decor.widget--popup__label::after, .widget--button.loading.decor::before, .field--array-editor__item__tool > .loading.decor.widget--popup__icon::before, .field--array-editor__add > .loading.decor.widget--popup__label::before {
  color: var(--color-decor-text);
}
.widget--button.loading.action::after, .field--array-editor__item__tool > .loading.action.widget--popup__icon::after, .field--array-editor__add > .loading.action.widget--popup__label::after, .widget--button.loading.action::before, .field--array-editor__item__tool > .loading.action.widget--popup__icon::before, .field--array-editor__add > .loading.action.widget--popup__label::before {
  color: var(--color-action-text);
}
.widget--button.condensed, .field--array-editor__item__tool > .condensed.widget--popup__icon, .field--array-editor__add > .condensed.widget--popup__label {
  min-width: 0;
  flex-grow: 0;
  flex-shrink: 0;
}
.widget--button.expanded, .field--array-editor__item__tool > .expanded.widget--popup__icon, .field--array-editor__add > .widget--popup__label {
  max-width: none;
  width: 100%;
}
.widget--button.default, .field--array-editor__item__tool > .widget--popup__icon, .field--array-editor__add > .widget--popup__label {
  color: var(--color-default-text);
  background-color: var(--color-default-200);
}
.widget--button.default:hover, .field--array-editor__item__tool > .widget--popup__icon:hover, .field--array-editor__add > .widget--popup__label:hover, .widget--button.default:focus, .field--array-editor__item__tool > .widget--popup__icon:focus, .field--array-editor__add > .widget--popup__label:focus {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget--button.list-item, .field--array-editor__item__tool > .list-item.widget--popup__icon, .field--array-editor__add > .list-item.widget--popup__label {
  text-align: left;
  text-transform: none;
}
.widget--button.dashed, .field--array-editor__item__tool > .dashed.widget--popup__icon, .field--array-editor__add > .dashed.widget--popup__label {
  border-style: dashed;
  border-width: 1px;
}
.widget--button.embedded, .field--array-editor__item__tool > .embedded.widget--popup__icon, .field--array-editor__add > .embedded.widget--popup__label {
  color: var(--color-action-500);
  background-color: transparent;
  box-shadow: none;
}
.widget--button.embedded:hover, .field--array-editor__item__tool > .embedded.widget--popup__icon:hover, .field--array-editor__add > .embedded.widget--popup__label:hover, .widget--button.embedded:focus, .field--array-editor__item__tool > .embedded.widget--popup__icon:focus, .field--array-editor__add > .embedded.widget--popup__label:focus {
  color: var(--color-action-300);
}
.widget--button__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  display: block;
  appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.widget--button .fa, .field--array-editor__item__tool > .widget--popup__icon .fa, .field--array-editor__add > .widget--popup__label .fa {
  font-weight: normal;
}
.widget--button .fa:first-child, .field--array-editor__item__tool > .widget--popup__icon .fa:first-child, .field--array-editor__add > .widget--popup__label .fa:first-child {
  margin-right: var(--padding-small);
}
.widget--button .fa:last-child, .field--array-editor__item__tool > .widget--popup__icon .fa:last-child, .field--array-editor__add > .widget--popup__label .fa:last-child {
  margin-left: var(--padding-small);
}

.widget--checkbox {
  display: flex;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  height: var(--size-widget-small);
  color: var(--color-default-text);
  background-color: var(--color-default-200);
}
.widget--checkbox:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget--checkbox:not(.placeholder) {
  width: var(--size-widget-small);
  max-width: var(--size-widget-small);
  min-width: var(--size-widget-small);
}
.widget--checkbox.large {
  height: var(--size-widget-medium);
}
.widget--checkbox.large .widget--checkbox__placeholder {
  padding-left: 1rem;
}
.widget--checkbox.large .widget--checkbox__indicator {
  width: var(--size-widget-medium);
}
.widget--checkbox__input {
  display: none;
}
.widget--checkbox__indicator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--size-widget-small);
  text-align: center;
}
.widget--checkbox__indicator::after {
  position: relative;
  font-family: "FontAwesome";
  content: "";
}
.widget--checkbox__placeholder {
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
  white-space: nowrap;
}
.widget--checkbox__input:checked + .widget--checkbox__indicator::after {
  content: "";
}
.widget--checkbox:not(:hover) .widget--checkbox__input:not(:checked) + .widget--checkbox__indicator::after {
  color: var(--color-default-300);
}

.widget--date-time {
  display: flex;
  width: 100%;
  white-space: nowrap;
}
.widget--date-time.disabled {
  line-height: var(--size-widget-small);
}
.widget--date-time:not(.disabled) {
  background-color: var(--color-default);
  color: var(--color-default-text);
  border: 1px solid var(--color-default-200);
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.widget--date-time__field {
  width: 3rem;
  flex-grow: 1;
  border: 0;
  background-color: transparent;
  display: block;
  line-height: var(--size-widget-small);
  padding: 0 0.5rem;
  appearance: textfield;
  -o-appearance: textfield;
  -ms-appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  text-align: center;
}
.widget--date-time__field.year {
  width: 5rem;
}
.widget--date-time__field::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.widget--date-time__field::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.widget--date-time__clear {
  cursor: pointer;
  background-color: transparent;
  color: var(--color-default-text);
  display: block;
  width: var(--size-widget-small);
  height: var(--size-widget-small);
  line-height: var(--size-widget-small);
  text-align: center;
  padding: 0;
  border: 0;
  margin: 0;
  border-left: 1px solid var(--color-default-200);
}
.widget--date-time__clear:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget--date-time__separator {
  color: var(--color-default-300);
  line-height: var(--size-widget-small);
}
.widget--date-time__separator.hard {
  width: 1px;
  display: block;
  flex-shrink: 0;
  background-color: var(--color-default-200);
}

.widget--file__input {
  display: none;
}
.widget--file__placeholder {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.widget--folders__folder__inner {
  display: flex;
}
.widget--folders__folder__add {
  display: block;
  line-height: var(--size-widget-small);
  width: var(--size-widget-small);
  flex-shrink: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  border-radius: var(--border-radius-small);
}
.widget--folders__folder__add:hover {
  background-color: var(--color-default-100);
}
.widget--folders__folder__name {
  background-color: var(--color-default);
  color: var(--color-default-text);
  padding: 0 0.5rem;
  margin: 0;
  line-height: var(--size-widget-small);
  border: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border-radius: var(--border-radius-small);
}
.widget--folders__folder__name:hover {
  background-color: var(--color-default-100);
}
.widget--folders__folder.active > .widget--folders__folder__inner > .widget--folders__folder__name {
  background-color: var(--color-default-200);
}
.widget--folders__folder__children {
  margin-left: 1rem;
}
.widget--folders__folder__icon {
  margin-right: 0.75rem;
}

/**
 * A generic label
 */
.widget--label {
  line-height: 2rem;
  height: 2rem;
  display: block;
  flex-grow: 1;
  margin: 0;
  background-color: var(--color-default-200);
  color: var(--color-default-text);
  padding: 0 0.5rem;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--color-default-200);
}
.widget--label > .fa {
  margin-right: 0.5rem;
}
.widget--label.small, .field--array-editor__item__tool > .widget--label.widget--popup__icon {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 10rem;
  max-width: 10rem;
}

.widget--list {
  padding: 0;
  margin: 0;
  width: 100%;
}
.widget--list__add {
  margin-left: auto;
}
.widget--list__handle {
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
  background-color: var(--color-default-200);
  width: var(--size-widget-small);
  line-height: var(--size-widget-small);
  display: block;
  text-align: center;
  cursor: grab;
  flex-shrink: 0;
}
.widget--list__item {
  margin-bottom: var(--padding-small);
}
.widget--list__item__edit, .widget--list__item__label {
  background-color: var(--color-default-200);
  color: var(--color-default-text);
  font-weight: normal;
  text-align: left;
  line-height: var(--size-widget-small);
  padding: 0 var(--padding-small);
  border: 0;
  margin: 0;
  display: block;
  flex-grow: 1;
}
.widget--list__item__edit:last-child, .widget--list__item__label:last-child {
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
}
.widget--list__item__label {
  cursor: grab;
}
.widget--list__item__edit {
  cursor: pointer;
}
.widget--list__item__edit:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget--list__item[data-drag-over] {
  position: relative;
}
.widget--list__item[data-drag-over]::before {
  font-family: "FontAwesome";
  content: "";
  position: absolute;
  right: 100%;
  line-height: var(--padding-small);
  width: var(--size-widget-small);
  display: block;
  text-align: center;
  color: var(--color-action-500);
  transform: translateY(-50%);
}
.widget--list__item[data-drag-over=above]::before {
  bottom: 100%;
}
.widget--list__item[data-drag-over=below]::before {
  top: 100%;
}

.widget--media {
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.widget--media.small, .field--array-editor__item__tool > .widget--media.widget--popup__icon {
  width: 10rem;
}
.widget--media.small .widget--media__preview, .field--array-editor__item__tool > .widget--media.widget--popup__icon .widget--media__preview {
  height: 10rem;
}
.widget--media__placeholder {
  position: relative;
  pointer-events: none;
  min-height: 1rem;
  min-width: 1rem;
}
.widget--media__placeholder::before, .widget--media__placeholder::after {
  pointer-events: none;
  position: absolute;
  display: block;
  font-family: "FontAwesome";
  content: "⚫";
  z-index: 21;
  font-size: 1rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  text-align: center;
  top: calc(50% - 0.6rem);
  animation: spinner 1s ease infinite;
  transform: scale(0);
}
.widget--media__placeholder::before {
  left: calc(50% - 1.1rem);
}
.widget--media__placeholder::after {
  left: calc(50% + 0.1rem);
  animation-delay: 0.25s;
}
.widget--media__preview {
  padding: var(--padding-small);
  margin: 0;
  border-top-left-radius: var(--border-radius-small);
  border-top-right-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border: 1px solid var(--color-default-200);
  background-color: var(--color-default-200);
  min-width: 6rem;
  min-height: 6rem;
}
.widget--media__preview.readonly {
  border-radius: var(--border-radius-small);
}
.widget--media__preview:not(.readonly) {
  cursor: pointer;
}
.widget--media__preview:not(.readonly):hover {
  border-color: var(--color-action-500);
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget--media__preview__source {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  z-index: 100;
}
.widget--media__tools {
  display: flex;
}
.widget--media__name {
  color: var(--color-default-text);
  background-color: var(--color-default-200);
  border-bottom-left-radius: var(--border-radius-small);
  flex-grow: 1;
  padding: 0 var(--padding-small);
  white-space: nowrap;
  overflow: hidden;
  line-height: var(--size-widget-small);
  text-overflow: ellipsis;
}
.widget--media__clear {
  line-height: var(--size-widget-small);
  width-height: var(--size-widget-small);
  display: block;
  flex-shrink: 0;
  text-align: center;
  color: var(--color-default-text);
  background-color: var(--color-default-200);
  border-bottom-right-radius: var(--border-radius-small);
  border: 0;
  cursor: pointer;
}
.widget--media__clear:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}

/**
 * A notification message
 */
.widget--message {
  margin: 1rem auto;
  font-weight: 700;
  border-radius: 0.2rem;
  line-height: 2rem;
  padding: 0 0.5rem;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget--message.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.widget--message.expanded, .field--array-editor__add > .widget--message.widget--popup__label {
  width: 100%;
}
.widget--message.large {
  padding: 1rem 2rem;
}
.widget--message.fixed {
  position: fixed;
  z-index: 900;
}
.widget--message.fixed--top {
  left: 50%;
  top: 4rem;
  transform: translateX(-50%);
}
.widget--message.fixed--bottom {
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
}
.widget--message.fixed--left {
  top: 50%;
  left: 4rem;
  transform: translateY(-50%);
}
.widget--message.fixed--right {
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}

.widget--number {
  width: 100%;
  display: flex;
}
.widget--number__input {
  display: block;
  cursor: auto;
  width: 100%;
  resize: none;
  border: 1px solid var(--color-default-200);
  padding: 0 0.5rem;
  border-radius: var(--border-radius-small);
  height: var(--size-widget-small);
  line-height: var(--size-widget-small);
  background-color: var(--color-default);
  color: var(--color-default-text);
}
.widget--number__input:focus, .widget--number__input:hover {
  border-color: var(--color-action-500);
  outline: none;
}
.widget--number__input[type=range] {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
.widget--number__input[type=range]:focus {
  outline: none;
}
.widget--number__input[type=range]:focus::-moz-range-thumb {
  background-color: var(--color-action-500);
}
.widget--number__input[type=range]:hover::-moz-range-thumb {
  background-color: var(--color-action-500);
}
.widget--number__input[type=range]:focus::-webkit-slider-thumb {
  background-color: var(--color-action-500);
}
.widget--number__input[type=range]:hover::-webkit-slider-thumb {
  background-color: var(--color-action-500);
}
.widget--number__input[type=range]::-moz-range-thumb {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 50%;
  display: block;
  width: calc(var(--size-widget-small) / 2);
  height: calc(var(--size-widget-small) / 2);
  border: 0;
  background-color: var(--color-default-text);
}
.widget--number__input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 50%;
  display: block;
  width: calc(var(--size-widget-small) / 2);
  height: calc(var(--size-widget-small) / 2);
  border: 0;
  background-color: var(--color-default-text);
  margin-top: calc(var(--size-widget-small) / -4 + 1px);
}
.widget--number__input[type=range]::-moz-range-track {
  width: 100%;
  height: 2px;
  background-color: var(--color-default-200);
}
.widget--number__input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  background-color: var(--color-default-200);
}
.widget--number__indicator {
  height: var(--size-widget-small);
  flex-basis: 4rem;
  width: 4rem;
  min-width: 4rem;
  line-height: var(--size-widget-small);
  padding: 0 0.5rem;
  text-align: center;
  background-color: var(--color-default-200);
  color: var(--color-default-text);
  margin-left: 0.5rem;
  border-radius: var(--border-radius-small);
  white-space: nowrap;
}

.widget--popup {
  position: relative;
  color: var(--color-default-text);
  background-color: transparent;
  min-height: var(--size-widget-small);
  min-width: var(--size-widget-small);
  border-radius: var(--border-radius-small);
}
.widget--popup:not([role]) {
  width: 100%;
}
.widget--popup[role=context-menu] {
  position: absolute;
  min-width: 0;
  min-height: 0;
}
.widget--popup.primary .widget--popup__icon, .widget--popup.primary .widget--popup__label {
  color: var(--color-action-text);
  background-color: var(--color-action-500);
}
.widget--popup.primary .widget--popup__icon:hover, .widget--popup.primary .widget--popup__label:hover {
  background-color: var(--color-action-600);
}
.widget--popup.secondary .widget--popup__icon, .widget--popup.secondary .widget--popup__label {
  color: var(--color-decor-text);
  background-color: var(--color-decor-500);
}
.widget--popup.secondary .widget--popup__icon:hover, .widget--popup.secondary .widget--popup__label:hover {
  background-color: var(--color-decor-800);
}
.widget--popup__inner {
  display: flex;
  border-radius: inherit;
  height: var(--size-widget-small);
}
.widget--popup__value {
  background-color: var(--color-default);
  color: var(--color-default-text);
  border-radius: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  padding: 0 0 0 0.5rem;
  border: 1px solid var(--color-default-200);
  width: 0;
  flex-grow: 1;
  line-height: var(--size-widget-small);
  text-align: left;
}
.widget--popup__value:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.widget--popup__value:hover {
  border-color: var(--color-action-500);
}
.widget--popup__value__icon {
  float: right;
  display: inline-block;
  width: var(--size-widget-small);
  line-height: var(--size-widget-small);
  text-align: center;
}
.widget--popup__value__icon::before {
  position: relative;
  top: -2px;
}
.widget--popup__clear {
  width: var(--size-widget-small);
  cursor: pointer;
  border: 0;
  padding: 0;
  line-height: var(--size-widget-small);
  display: block;
  text-align: center;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  color: var(--color-default-text);
  background-color: var(--color-default-200);
}
.widget--popup__clear:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget--popup__label {
  border: 0;
  padding: 0 0.6rem;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
  line-height: var(--size-widget-small);
  border-radius: var(--border-radius-medium);
}
.widget--popup__label .fa {
  margin-right: 0.5rem;
}
.widget--popup__label:hover {
  background-color: var(--color-default-100);
}
.widget--popup__icon {
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  cursor: pointer;
  line-height: var(--size-widget-small);
  width: var(--size-widget-small);
  max-width: var(--size-widget-small);
  min-width: var(--size-widget-small);
  text-align: center;
  display: block;
  border-radius: var(--border-radius-medium);
}
.widget--popup__icon:hover {
  background-color: var(--color-default-100);
}
.widget--popup__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: auto;
  opacity: 0;
  z-index: 900;
}
.widget--popup__search {
  position: relative;
}
.widget--popup__search::before {
  position: absolute;
  content: "";
  display: block;
  font-family: "FontAwesome";
  color: var(--color-default-200);
  line-height: var(--size-widget-small);
  width: var(--size-widget-small);
  text-align: center;
  height: var(--size-widget-small);
  left: 0;
  top: 0;
}
.widget--popup__search__input {
  display: block;
  width: 100%;
  border: 0;
  background-color: transparent;
  line-height: var(--size-widget-small);
  padding: 0 var(--size-widget-small);
}
.widget--popup__search__input:focus {
  border-color: var(--color-action-500);
}
.widget--popup__search__clear {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  line-height: var(--size-widget-small);
  text-align: center;
  width: var(--size-widget-small);
  z-index: 10;
  border: 0;
  background-color: transparent;
}
.widget--popup__menu {
  z-index: 910;
  position: absolute;
  min-width: 14rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--color-default);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-small);
  border: 1px solid var(--color-default-200);
}
.widget--popup__menu::before {
  font-family: "FontAwesome";
  display: block;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  font-size: 2rem;
  position: absolute;
  z-index: 10;
  color: var(--color-default);
}
.widget--popup__menu.top {
  top: var(--size-widget-small);
}
.widget--popup__menu.top::before {
  content: "";
  top: -0.9rem;
}
.widget--popup__menu.bottom {
  bottom: var(--size-widget-small);
  flex-direction: column-reverse;
}
.widget--popup__menu.bottom::before {
  content: "";
  bottom: -0.7rem;
}
.widget--popup__menu.left {
  left: 0;
}
.widget--popup__menu.left::before {
  left: 0.5rem;
}
.widget--popup__menu.right {
  right: 0;
}
.widget--popup__menu.right::before {
  right: 0.5rem;
}
.widget--popup[role=context-menu] .widget--popup__menu::before {
  display: none;
}
.widget--popup[role=context-menu] .widget--popup__menu.top {
  top: 0;
}
.widget--popup[role=context-menu] .widget--popup__menu.bottom {
  bottom: 0;
}
.widget--popup__options {
  background-color: transparent;
  overflow: auto;
  max-height: 20rem;
  padding: 0.25rem 0;
}
.widget--popup[role=context-menu] .widget--popup__options {
  max-height: none;
}
.widget--popup__separator {
  position: relative;
  line-height: var(--size-widget-small);
  padding: 0 1rem;
  color: var(--color-default-300);
  border-bottom: 1px solid var(--color-default-200);
}
.widget--popup__option {
  width: 100%;
  display: block;
  background-color: inherit;
  color: var(--color-default-text);
  white-space: nowrap;
  text-align: left;
  line-height: var(--size-widget-small);
  padding: 0 1rem;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 20;
}
.widget--popup__option.selected::after {
  font-family: "FontAwesome";
  content: "";
  display: block;
  line-height: var(--size-widget-small);
  width: var(--size-widget-small);
  text-align: center;
  right: 0;
  top: 0;
  position: absolute;
}
.widget--popup__option:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}
.widget--popup__option + .widget--popup__separator {
  margin-top: 0.5rem;
}

.widget--rich-text {
  background-color: var(--color-default-200);
  width: 100%;
}
.widget--rich-text__toolbar {
  margin-bottom: var(--padding-small);
  display: flex;
}
.widget--rich-text__toolbar .widget--popup {
  max-width: 14rem;
}
.widget--rich-text__toolbar .widget--popup__option::after {
  font-size: 1rem;
  line-height: inherit !important;
}
.widget--rich-text__editor {
  height: var(--height-rich-text-editor);
  background-color: var(--color-default);
  color: var(--color-default-text);
  overflow: auto;
  padding: var(--padding-medium);
  border-radius: var(--border-radius-small);
}
.widget--rich-text__editor:focus {
  outline: none;
}
.widget--rich-text__editor a {
  cursor: text;
}
.widget--rich-text__editor *[src] {
  max-width: 100%;
}

.widget--search {
  position: relative;
  width: 100%;
}
.widget--search__clear, .widget--search__icon, .widget--search__submit {
  border: 0;
  padding: 0;
  line-height: var(--size-widget-small);
  height: var(--size-widget-small);
  display: block;
  text-align: center;
  background-color: transparent;
}
.widget--search__icon {
  pointer-events: none;
  z-index: 20;
  position: absolute;
  width: var(--size-widget-small);
  color: var(--color-default-200);
}
.widget--search__input {
  width: 10rem;
  flex-grow: 1;
  padding-left: var(--size-widget-small);
  background-color: transparent;
  display: block;
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
  background-color: var(--color-default);
  color: var(--color-default-text);
  border: 1px solid var(--color-default-200);
  border-right: 0;
}
.widget--search__input:focus, .widget--search__input:hover, .widget--search__input:focus + button, .widget--search__input:hover + button {
  border-color: var(--color-action-500);
}
.widget--search__clear {
  border: 1px solid var(--color-default-200);
  border-left: 0;
  width: var(--size-widget-small);
  color: var(--color-default-text);
  cursor: pointer;
  display: block;
  background-color: var(--color-default);
  color: var(--color-default-text);
}
.widget--search__submit {
  cursor: pointer;
  width: var(--size-widget-small);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  color: var(--color-default-text);
  background-color: var(--color-default-200);
}
.widget--search__submit:hover {
  background-color: var(--color-action-500);
  color: var(--color-action-text);
}

/**
 * A graphical separator
 */
.widget--separator {
  margin: 2rem 0;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-default-text);
}

/**
 * A spinner for loading
 */
@keyframes widget--spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.widget--spinner {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
}
.widget--spinner.no-background {
  background-color: transparent;
}
.widget--spinner.hidden {
  display: block !important;
  opacity: 0;
  pointer-events: none;
}
.widget--spinner.embedded {
  position: absolute;
}
.widget--spinner__inner {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
}
.widget--spinner__image {
  position: absolute;
  display: block;
  width: 8rem;
  height: 8rem;
  text-align: center;
  line-height: 8rem;
  color: var(--color-decor-500);
  font-size: 2rem;
  top: calc(50% - 4rem);
  left: calc(50% - 4rem);
  animation-name: widget--spinner;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.widget--spinner__messages {
  left: calc(50% + 4rem);
  top: 50%;
  position: absolute;
  transform: translate(0%, -50%);
  border-left: 1px solid var(--color-action-500);
}
.widget--spinner__message {
  position: relative;
  width: 180px;
  transition: color 0.25s ease;
  padding: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-action-500);
}
.widget--spinner__message:before {
  content: "";
  display: block;
  background-color: var(--color-action-500);
  width: 0%;
  height: 100%;
  transition: width 0.25s ease;
  top: 0%;
  left: 0%;
  position: absolute;
  z-index: -1;
}
.widget--spinner__message.loaded {
  color: var(--color-action-text);
}
.widget--spinner__message.loaded:before {
  width: 100%;
}

.widget--text {
  min-width: 0%;
  width: 100%;
  resize: none;
  border: 1px solid var(--color-default-200);
  padding: 0 0.5rem;
  border-radius: var(--border-radius-small);
  display: block;
  background-color: var(--color-default);
  color: var(--color-default-text);
  height: var(--size-widget-small);
  line-height: var(--size-widget-small);
}
.widget--text.code {
  font-family: monospace;
  line-height: 1.5;
}
.widget--text.large {
  height: var(--size-widget-medium);
  line-height: var(--size-widget-medium);
}
.widget--text:focus, .widget--text:hover {
  border-color: var(--color-action-500);
}
.widget--text[disabled] {
  opacity: 0.5;
}

textarea.widget--text {
  height: calc(6 * var(--size-widget-small));
}

/*# sourceMappingURL=style.css.map */
