/**
 * @file
 * Easing settings.
 *
 * @package Settings.
 */
/* Ease in. */
/* Ease out. */
/* Ease in-out. */
/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
.o-qrcode-edit {
  margin: 2.5rem auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  word-break: break-word;
}
.o-qrcode-edit__form {
  width: 100%;
  flex: 1 1 auto;
  margin: 0;
  flex-direction: column;
  display: flex;
}
.o-qrcode-edit__form .m-form-item {
  margin: 0;
  margin-bottom: 2rem;
}
.o-qrcode-edit__form .m-form-item.m-form-item--vertical_tabs {
  display: none;
}
.o-qrcode-edit__form .qrcode-theme-selector .m-form-group {
  background-color: #f00;
}
.o-qrcode-edit__form .qrcode-theme-selector .m-form-group input {
  display: none;
}
.o-qrcode-edit__form .qrcode-theme-selector .m-form-group input + label {
  width: 100%;
  display: block;
  background-color: #00f;
}
.o-qrcode-edit__form .qrcode-theme-selector .m-form-group input + label:before {
  content: none;
}
.o-qrcode-edit__form__or {
  position: relative;
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.o-qrcode-edit__form__or:before {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 98, 255, 0.6);
  z-index: 0;
}
.o-qrcode-edit__form__or span {
  display: inline-block;
  z-index: 2;
  position: relative;
  padding: 0 1rem;
  background-color: #fff;
  font-weight: 600;
}
.o-qrcode-edit__form__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.o-qrcode-edit__form .form-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}
.o-qrcode-edit__content {
  flex: 1 1 auto;
  background-image: linear-gradient(to right, #1b2330 0%, #0d1118 100%);
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  color: #ffffff;
}
@media screen and (min-width: 720px) {
  .o-qrcode-edit__content {
    display: flex;
    padding: 4rem 8rem;
  }
}
.o-qrcode-edit__content h1,
.o-qrcode-edit__content h2,
.o-qrcode-edit__content h3 {
  color: inherit;
}
.o-qrcode-edit__content p {
  font-size: 1.6rem;
}

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