/**
 * @file
 * Map functions.
 *
 * @package Functions.
 */
/* Use. */
/* Next. */
/* Prev. */
/**
 * @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. */
/**
 * @file
 * Mixins for breakpoints.
 *
 * @package Tools.
 */
/* Use. */
/* Breakpoint up. */
/* Breakpoint down. */
/* Breakpoint only. */
/**
 * @file
 * Math functions.
 *
 * @package Functions.
 */
/* Use. */
/* Get fraction. */
/* Strip unit. */
/**
 * @file
 * Mixin for types.
 *
 * @package Tools.
 */
/* Use. */
/* Responsive mixin. */
/* Hyphen mixin. */
/* Multiline-ellipsis mixin. */
/**
 * @file
 * Base sass file for Consuwijzer.
 */
/* Use. */
/* Set box-sizing. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Add responsive type. */
:root {
  font-size: 62.5%;
}
@media (min-width: 768px) and (max-width: 992px) {
  :root {
    /* prettier-ignore */
    font-size: calc(62.5% + (62.5 - 62.5) * math.div((100vw - 768px), (992 - 768)));
    /* stylelint-disable-line max-line-length */
  }
}
@media (min-width: 992px) {
  :root {
    font-size: 62.5%;
  }
}

/* HTML. */
html {
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  height: 100%;
  line-height: 1.75;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  font-size: 62.5%;
  /* stylelint-disable */
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  /* stylelint-enable */
}

/* Body. */
body {
  height: 100%;
  margin: 0;
  font-size: 1.3rem;
  background-color: #f6f7f9;
}
body.dashboard {
  overflow: hidden;
}

/* Set the display for new HTML5 elements block. */
figcaption,
figure,
main {
  display: block;
}

/* Line. */
hr {
  border: none;
  border-bottom: 1px solid #e2dfed;
  height: 1px;
  margin: 1.3rem 0;
}

.m-simple-header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  position: relative;
  gap: 2rem;
}
.m-simple-header .view-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 1.5rem;
}
@media screen and (min-width: 720px) {
  .m-simple-header .view-header {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.5rem;
  }
}
.m-simple-header .view-header .m-icon {
  color: #171725;
  margin-right: 1.2rem;
}
.m-simple-header .view-header h1 {
  color: #171725;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.6rem;
  z-index: 1;
}
.m-simple-header .view-header--main, .m-simple-header .view-header--second {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
.m-simple-header .view-header--second {
  color: #92929D;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
.m-simple-header .view-filters {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  z-index: 0;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .m-simple-header .view-filters {
    flex-direction: row;
    gap: 2rem;
  }
}
.m-simple-header .view-filters .m-button {
  height: 4.8rem;
  white-space: nowrap;
}
.m-simple-header .view-filters form {
  width: 100%;
  margin: 0;
}
.m-simple-header .view-filters form .js-form-type-textfield label {
  display: none;
}
.m-simple-header .view-filters form .js-form-type-textfield input {
  margin: 0;
  padding: 0.4rem 1.6rem;
  border-radius: 1.6rem;
  height: 4.8rem;
}
.m-simple-header .view-filters form .form-actions {
  margin: 0;
  display: none;
}

.link--overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.view-sidebar {
  width: 100%;
  max-width: 99rem;
}
.view-sidebar__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  gap: 2rem;
}
.view-sidebar__item:last-child {
  border-bottom: 0;
}
.view-sidebar__item--avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 20rem;
  position: relative;
  overflow: hidden;
}
.view-sidebar__item--avatar img {
  width: 100%;
  height: 100%;
  margin: 0;
}
.view-sidebar h1 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  color: #111827;
}

.view-products .row-flex {
  flex: 1 1 0;
  margin: 0;
  width: 100%;
  max-width: 990px;
}
.view-products .row-flex .views-row {
  width: 100%;
}
.view-products .row-flex .views-row:last-child {
  border-bottom: none;
}
.view-products .view-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .view-products .view-content {
    flex-direction: column;
  }
}

.view-vcards .row-flex,
.view-pages .row-flex {
  flex: 1 1 0;
  margin: 0;
  gap: 3rem;
  width: 100%;
  max-width: 990px;
}
.view-vcards .row-flex .views-row,
.view-pages .row-flex .views-row {
  flex: calc(50% - 1.5rem) 0 0;
}
.view-vcards .view-content,
.view-pages .view-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .view-vcards .view-content,
.view-pages .view-content {
    flex-direction: column;
  }
}
.view-vcards__results,
.view-pages__results {
  padding: 0;
}

@media screen and (min-width: 720px) {
  .view-products .row-flex {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.view-products .views-row {
  padding: 0;
}
@media screen and (min-width: 960px) {
  .view-products .views-row {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    border-bottom: none;
  }
}

.node-form fieldset .fieldset-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 2rem;
}
.node-form fieldset .fieldset-wrapper > .form-wrapper {
  flex: 1 1 0;
  gap: 1rem;
  flex-direction: column;
  display: flex;
}
.node-form fieldset .fieldset-wrapper .m-form-item {
  margin: 0;
}
.node-form fieldset .fieldset-wrapper .form-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 1rem;
}

.node-vcard-qraphy-editor-form {
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto;
  border-radius: 1.6rem;
  overflow: hidden;
}
@media screen and (min-width: 720px) {
  .node-vcard-qraphy-editor-form {
    padding: 2rem 4.8rem;
  }
}

.tabledrag-toggle-weight-wrapper,
.tableresponsive-toggle-columns,
.tableresponsive-toggle-columns + .field-multiple-table thead,
.tabledrag-hide,
.delta-order,
.field-multiple-drag {
  display: none !important;
}

.field--widget-entity-reference-paragraphs th, .field--widget-entity-reference-paragraphs td, .field--widget-entity-reference-paragraphs h1, .field--widget-entity-reference-paragraphs h2, .field--widget-entity-reference-paragraphs h3, .field--widget-entity-reference-paragraphs h4,
.field--widget-entity-reference-paragraphs .m-form-item,
.field-multiple-table th,
.field-multiple-table td,
.field-multiple-table h1,
.field-multiple-table h2,
.field-multiple-table h3,
.field-multiple-table h4,
.field-multiple-table .m-form-item {
  margin: 0 !important;
  padding: 0 !important;
}
.field--widget-entity-reference-paragraphs h3,
.field-multiple-table h3 {
  margin-bottom: 2rem !important;
}
.field--widget-entity-reference-paragraphs h4,
.field-multiple-table h4 {
  margin-bottom: 1.5rem !important;
}
.field--widget-entity-reference-paragraphs thead tr th,
.field-multiple-table thead tr th {
  display: none;
}
.field--widget-entity-reference-paragraphs thead tr th:first-child,
.field-multiple-table thead tr th:first-child {
  display: block;
}
.field--widget-entity-reference-paragraphs tr + tr td,
.field-multiple-table tr + tr td {
  display: block;
  margin-top: 1.5rem !important;
}
.field--widget-entity-reference-paragraphs td > div > .form-wrapper,
.field--widget-entity-reference-paragraphs td > .ajax-new-content > div > .form-wrapper,
.field-multiple-table td > div > .form-wrapper,
.field-multiple-table td > .ajax-new-content > div > .form-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.6rem 1.6rem;
  border-radius: 1.8rem;
  border: 1px solid #E2E2EA;
}
@media screen and (min-width: 720px) {
  .field--widget-entity-reference-paragraphs td > div > .form-wrapper,
.field--widget-entity-reference-paragraphs td > .ajax-new-content > div > .form-wrapper,
.field-multiple-table td > div > .form-wrapper,
.field-multiple-table td > .ajax-new-content > div > .form-wrapper {
    padding: 1.6rem 2rem;
  }
}
.field--name-field-address .field--widget-entity-reference-paragraphs td > div > .form-wrapper,
.field--name-field-address .field--widget-entity-reference-paragraphs td > .ajax-new-content > div > .form-wrapper,
.field--name-field-address .field-multiple-table td > div > .form-wrapper,
.field--name-field-address .field-multiple-table td > .ajax-new-content > div > .form-wrapper {
  background-color: #f00;
}
.field--widget-qraphy-paragraphs .field--widget-entity-reference-paragraphs td > div > .form-wrapper, .field--name-field-paragraphs .field--widget-entity-reference-paragraphs td > div > .form-wrapper,
.field--widget-qraphy-paragraphs .field--widget-entity-reference-paragraphs td > .ajax-new-content > div > .form-wrapper,
.field--name-field-paragraphs .field--widget-entity-reference-paragraphs td > .ajax-new-content > div > .form-wrapper,
.field--widget-qraphy-paragraphs .field-multiple-table td > div > .form-wrapper,
.field--name-field-paragraphs .field-multiple-table td > div > .form-wrapper,
.field--widget-qraphy-paragraphs .field-multiple-table td > .ajax-new-content > div > .form-wrapper,
.field--name-field-paragraphs .field-multiple-table td > .ajax-new-content > div > .form-wrapper {
  flex-direction: column;
}
.field--widget-entity-reference-paragraphs .paragraph-type-title,
.field-multiple-table .paragraph-type-title {
  display: none;
}
.field--widget-entity-reference-paragraphs .paragraph-top,
.field-multiple-table .paragraph-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .field--widget-entity-reference-paragraphs .paragraph-top,
.field-multiple-table .paragraph-top {
    gap: 5rem;
  }
}
.field--widget-entity-reference-paragraphs .paragraph-top .paragraph-type,
.field-multiple-table .paragraph-top .paragraph-type {
  font-size: 1.6rem;
}
.field--widget-entity-reference-paragraphs .paragraph-top .paragraph-info,
.field--widget-entity-reference-paragraphs .paragraph-top .paragraph-summary,
.field-multiple-table .paragraph-top .paragraph-info,
.field-multiple-table .paragraph-top .paragraph-summary {
  display: none;
}
.field--widget-entity-reference-paragraphs .paragraph-top .paragraphs-actions .button,
.field-multiple-table .paragraph-top .paragraphs-actions .button {
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border-radius: 3px;
  font-family: "Font Awesome 6 Pro";
  background-color: #3DD598;
  border-color: #3DD598;
  color: #ffffff;
}
.field--widget-entity-reference-paragraphs .paragraph-top .paragraphs-actions .button:hover, .field--widget-entity-reference-paragraphs .paragraph-top .paragraphs-actions .button:active,
.field-multiple-table .paragraph-top .paragraphs-actions .button:hover,
.field-multiple-table .paragraph-top .paragraphs-actions .button:active {
  background-color: rgba(61, 213, 152, 0.7);
  border-color: rgba(61, 213, 152, 0.7);
  color: white;
}
.field--widget-entity-reference-paragraphs .paragraph-top .paragraphs-actions .button:focus,
.field-multiple-table .paragraph-top .paragraphs-actions .button:focus {
  outline-color: #3DD598;
}
.field--widget-entity-reference-paragraphs .paragraph-top .paragraphs-actions .button:before,
.field-multiple-table .paragraph-top .paragraphs-actions .button:before {
  content: "\f068";
  display: inline-block;
  text-align: center;
  width: 1.8rem;
}
.field--widget-entity-reference-paragraphs .paragraph-top .paragraphs-actions .button span,
.field-multiple-table .paragraph-top .paragraphs-actions .button span {
  display: none;
}
.field--widget-entity-reference-paragraphs .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove],
.field-multiple-table .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove] {
  padding: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: none;
  border: none;
  font-family: "Font Awesome 6 Pro";
  color: #FC5A5A;
  font-size: 1.4rem;
  font-weight: 400;
  border: 1px solid #FC5A5A;
}
@media screen and (min-width: 720px) {
  .field--widget-entity-reference-paragraphs .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove],
.field-multiple-table .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove] {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 2rem;
  }
}
.field--widget-entity-reference-paragraphs .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove]:before,
.field-multiple-table .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove]:before {
  content: "\f2ed";
  display: inline-block;
  margin: 0 auto;
}
.field--widget-entity-reference-paragraphs .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove] span,
.field-multiple-table .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove] span {
  display: none;
}
.field--widget-entity-reference-paragraphs .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove]:hover, .field--widget-entity-reference-paragraphs .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove]:active,
.field-multiple-table .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove]:hover,
.field-multiple-table .paragraph-type-top .paragraphs-dropbutton-wrapper .button.form-item[name*=_remove]:active {
  background-color: #FC5A5A;
  color: #fff;
}

table.field-multiple-table {
  margin-bottom: 1rem;
}

.paragraphs-subform,
.js .paragraphs-subform {
  width: 100%;
  margin: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 1.6rem;
}
.ajax-new-content .paragraphs-subform,
.ajax-new-content .js .paragraphs-subform {
  flex-direction: column;
}
.paragraphs-subform .form-wrapper,
.js .paragraphs-subform .form-wrapper {
  flex: 1 1 0;
  width: 100%;
}
.paragraphs-subform .form-inline-wrapper,
.js .paragraphs-subform .form-inline-wrapper {
  padding-top: 1rem;
}
.paragraphs-subform .form-inline-wrapper .ief-entity-table,
.js .paragraphs-subform .form-inline-wrapper .ief-entity-table {
  margin: 0;
}
.paragraphs-subform .form-inline-wrapper .ief-entity-table thead,
.js .paragraphs-subform .form-inline-wrapper .ief-entity-table thead {
  display: none;
}
.paragraphs-subform .form-inline-wrapper .ief-entity-table tr + tr td,
.paragraphs-subform .form-inline-wrapper .ief-entity-table td,
.js .paragraphs-subform .form-inline-wrapper .ief-entity-table tr + tr td,
.js .paragraphs-subform .form-inline-wrapper .ief-entity-table td {
  margin-top: 0 !important;
}
.paragraphs-subform .form-inline-wrapper td,
.js .paragraphs-subform .form-inline-wrapper td {
  margin-top: 0 !important;
}
.paragraphs-subform .form-inline-wrapper .inline-entity-form-media-label,
.js .paragraphs-subform .form-inline-wrapper .inline-entity-form-media-label {
  margin: 0 !important;
  padding: 0;
}
.paragraphs-subform .form-inline-wrapper .field--name-field-media-oembed-video,
.js .paragraphs-subform .form-inline-wrapper .field--name-field-media-oembed-video {
  width: 100%;
  aspect-ratio: 16/9;
}
.paragraphs-subform .form-inline-wrapper .field--name-field-media-oembed-video iframe,
.js .paragraphs-subform .form-inline-wrapper .field--name-field-media-oembed-video iframe {
  width: 100%;
  height: 100%;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 1rem;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item {
  flex: 1 0 0;
  flex-basis: 100%;
  max-width: 100%;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__field,
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__label,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__field,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__label {
  height: 100%;
  width: 100%;
  margin: 0;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__field:before,
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__label:before,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__field:before,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item .m-form-item__label:before {
  content: none;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input {
  display: none;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked {
  outline: none;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-vcard-select-list:before, .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-theme-select-list:before,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-vcard-select-list:before,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-theme-select-list:before {
  content: "\f00c";
  background-color: #3DD598;
  border-color: #3DD598;
}
.paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-vcard-select-list:hover:before, .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-theme-select-list:hover:before,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-vcard-select-list:hover:before,
.js .paragraphs-subform .field--type-entity-reference .fieldset-wrapper .m-form-group .m-form-item input:checked + label .m-theme-select-list:hover:before {
  content: "\f00c";
}
.paragraphs-subform .m-form-item__description,
.js .paragraphs-subform .m-form-item__description {
  margin: 0;
  padding-left: 1rem;
  font-style: italic;
}
.paragraphs-subform .m-form-item__description ul,
.js .paragraphs-subform .m-form-item__description ul {
  list-style: none;
  padding: 0;
}
.paragraphs-subform .m-form-item__description ul li:nth-child(1),
.js .paragraphs-subform .m-form-item__description ul li:nth-child(1) {
  display: none;
}
.paragraphs-subform details,
.js .paragraphs-subform details {
  border: none;
  margin: 0;
  padding: 0;
}
.paragraphs-subform details summary,
.js .paragraphs-subform details summary {
  display: none;
}
.paragraphs-subform details > div > .form-wrapper,
.js .paragraphs-subform details > div > .form-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 1rem;
}
.paragraphs-subform details .address-container-inline,
.js .paragraphs-subform details .address-container-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  gap: 1rem;
}
.paragraphs-subform details .address-container-inline .form-item:last-child,
.js .paragraphs-subform details .address-container-inline .form-item:last-child {
  flex: 1 1 0;
}

.field-multiple-table + .clearfix > div:not(.qraphy-paragraphs-add-wrapper) .form-submit,
.field-add-more-submit {
  background: none;
  color: #64748b;
  padding: 0;
  border: none;
  border-radius: 0;
}
.field-multiple-table + .clearfix > div:not(.qraphy-paragraphs-add-wrapper) .form-submit:hover,
.field-add-more-submit:hover {
  background: none;
  text-decoration: none;
  color: #64748b;
}
.field-multiple-table + .clearfix > div:not(.qraphy-paragraphs-add-wrapper) .form-submit:hover span,
.field-add-more-submit:hover span {
  text-decoration: underline;
}
.field-multiple-table + .clearfix > div:not(.qraphy-paragraphs-add-wrapper) .form-submit:before,
.field-add-more-submit:before {
  content: "\f055";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  font-size: 1.6rem;
  font-weight: 900;
  margin-right: 0.6rem;
  text-decoration: none;
}

.placeholder--avatar:before {
  content: "\f6fb";
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 1.6rem;
  font-weight: 900;
  margin-right: 0.6rem;
  text-decoration: none;
}

.form--product-activate {
  flex: 1 1 0;
  margin: 0;
  padding: 3rem 4rem;
  background-color: #ffffff;
  border-radius: 2rem;
  gap: 4rem;
}
.form--product-activate__container {
  max-width: 102.4rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .form--product-activate__container {
    margin-top: 8rem;
    flex-direction: row;
  }
}
.form--product-activate__message {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem 2rem;
  background-color: #0062FF;
  border-radius: 2rem;
  color: #ffffff;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .form--product-activate__message {
    max-width: 26rem;
    padding: 3rem 2rem;
  }
}
.form--product-activate__message h2 {
  margin: 0;
  font-size: 1.6rem;
  color: #ffffff;
}
.form--product-activate__message p {
  margin: 0;
  font-size: 1.4rem;
  color: #ffffff;
}
.form--product-activate__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.form--product-activate__intro h1 {
  text-align: center;
  margin-bottom: 1rem;
}
.form--product-activate__intro h2 {
  width: 80%;
  max-width: 1024px;
  font-size: 1.4rem;
  text-align: center;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (min-width: 720px) {
  .form--product-activate__intro h2 {
    font-size: 1.6rem;
  }
}
.form--product-activate__intro p {
  margin: 0;
  color: #92929D;
}
.form--product-activate__content {
  position: relative;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}

.qraphy-paragraphs-add-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 1.6rem;
}
.qraphy-paragraphs-add-wrapper > button {
  flex: 1 1 0;
  align-self: auto;
  background: none;
  color: #64748b;
  padding: 0;
  border: none;
  border-radius: 0;
}
.qraphy-paragraphs-add-wrapper > button:hover {
  background: none;
  text-decoration: none;
  color: #64748b;
}
.qraphy-paragraphs-add-wrapper > button:hover span {
  text-decoration: underline;
}

.qr_options--add_new {
  width: 100%;
  height: 100%;
  padding: 1.7rem;
  border-radius: 0.8rem;
  border: 0.1rem dashed #cbd5e1;
  background-color: rgba(148, 163, 184, 0);
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 1.4rem;
  font-size: 1.6rem;
  color: #171725;
}
.qr_options--add_new:hover {
  background-color: #ffffff;
}
.qr_options--add_new::before {
  content: "+";
  background-color: #0062FF;
  width: 3.8rem;
  height: 3.8rem;
  font-family: "Font Awesome 6 Pro";
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 3.8rem;
  border-radius: 3.8rem;
}

.o-dashboard .status-messages {
  position: absolute;
  z-index: 12;
  right: 1rem;
  max-height: calc(100vh - 64px);
  overflow: auto;
}

.title-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 960px) {
  .title-container button {
    display: none;
  }
}

.avatar-label {
  position: absolute;
  z-index: 12;
}

a.link--overlay {
  outline: none;
}

.file.file--mime-video-mp4.file--video a {
  color: #000;
}

.user-gradient {
  background: linear-gradient(112.28deg, #D9E6F8 77.21%, #FE4944 152.82%);
}

.m-menu-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: center;
  gap: 1.3rem;
  padding: 0;
  margin: 0;
}
.m-menu-inline li {
  list-style: none;
  position: relative;
  color: #0062FF;
  text-align: center;
  font-size: 1.1rem;
}
.m-menu-inline li:first-child:before {
  content: none;
}
.m-menu-inline li:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: #0062FF;
  display: block;
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
}
.m-menu-inline li a {
  color: #0062FF;
  text-decoration: none;
}
.m-menu-inline li a:hover, .m-menu-inline li a:active, .m-menu-inline li a:focus {
  color: rgba(0, 98, 255, 0.6);
}

.view {
  max-width: 99rem;
}

.user-form {
  max-width: 57rem;
}

.text-italic {
  font-style: italic;
}

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