/* Calculate px to rem
   -------------------------------------------------------------------------------- */
/* Provides a valid URL encoded data-uri for any SVG XML input
   -------------------------------------------------------------------------------- */
/* Replace '$search' with '$replace' in '$string'
    @author Hugo Giraudel
    @link http://sassmeister.com/gist/1b4f2da5527830088e4d
    @param {String} $string - Initial string
    @param {String} $search - Substring to replace
    @param {String} $replace ('') - New value
    @return {String} - Updated string
   -------------------------------------------------------------------------------- */
/* Fonts
   -------------------------------------------------------------------------------- */
/* Colors
      -------------------------------------------------------------------------------- */
/* Layout
      -------------------------------------------------------------------------------- */
/* Breakpoints - use px unit only
      -------------------------------------------------------------------------------- */
/* Typography
      -------------------------------------------------------------------------------- */
/* Forms
      -------------------------------------------------------------------------------- */
/* Graphics
      -------------------------------------------------------------------------------- */
/* Media query
   -------------------------------------------------------------------------------- */
/* Generate icon from SVG path and HEX color definition as a background element
   -------------------------------------------------------------------------------- */
/* Mixin for icons and iconography
   -------------------------------------------------------------------------------- */
/*
    Styles for all used form elements

    Index:
    __control    
    __checkbox
    __radio-input
    __tristate
    __label
    __description
    -feedback
*/
.form {
  /*
    Styles for the input and textarea field

    Index:
    -control
        --focused
        --has-error
        --disabled
        __input
            --textarea
        __wrapper
            --textarea
        __suffix
        __prefix
*/
  /*
    Styles checkbox input

    Index:
    control
       __checkbox
            -input
            -indicator
*/
  /*
    Styles radio button input

    Index:
    control
        __radio
            -input
            -indicator
*/
  /*
    Styles radio group

    Index:
    control
        __radio-group
*/
  /*
    Styles for dropzone conponent
    
    Index:
    __content
    __icon
    __title
    __subtitle
    --loading
    --has-error
    --success
    --done
    --hover
*/
  /*
    Styles for the dropdown

    Index:
    -dropdown
        __container
            --open
        __suggestion
            --highlighted
            --empty
        __suggestions-container
        __suggestions-list
            --focused
        __input
            --focused
        __arrow

*/
  /*
    Styles signature input

    Index:
    -control
        __signature
            -controls
            -clear-label
            -explanation
            -expander
            -wrapper
            -saved
                -label
            --disabled
*/
  /*
    The form paragraph eg. form-paragraph

    Index:
    -paragraph

*/
  /*
    Styles for form-section

    Index:
    -section
        __title
*/ }
  .form-control__input {
    width: 100%;
    color: #000;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 1.125rem;
    border: none;
    outline: none;
    padding: 0; }
    .form-control__input:-webkit-autofill, .form-control__input:-webkit-autofill:hover, .form-control__input:-webkit-autofill:focus {
      box-shadow: 0 0 0 62.5rem #fff inset; }
    .form-control__input:autofill, .form-control__input:autofill:hover, .form-control__input:autofill:focus {
      box-shadow: 0 0 0 62.5rem #fff inset; }
    .form-control__input:disabled {
      cursor: not-allowed;
      background-color: #fff;
      color: #aaa; }
    .form-control__input:read-only {
      background-color: #fff;
      color: #aaa; }
    .form-control__input::placeholder {
      color: #666; }
    .form-control__input--textarea {
      min-height: 10.5rem;
      height: 10.5rem;
      padding: 0.75rem;
      resize: vertical;
      max-height: 21rem; }
    @supports (-webkit-hyphens: none) {
      .form-control__input--has-empty-value[type="date"]:not([disabled])::-webkit-datetime-edit-day-field {
        opacity: 0.34; }
      .form-control__input--has-empty-value[type="date"]:not([disabled])::-webkit-datetime-edit-month-field {
        opacity: 0.34; }
      .form-control__input--has-empty-value[type="date"]:not([disabled])::-webkit-datetime-edit-year-field {
        opacity: 0.34; } }
  .form-control__wrapper {
    position: relative;
    display: inline-flex;
    border: 1px solid #b9b9b9;
    border-radius: 0.1875rem;
    background-color: #fff;
    width: 100%;
    height: 3.1875rem;
    padding: 0 0.75rem; }
    .form-control__wrapper--textarea {
      height: auto;
      margin-bottom: 0;
      padding: 0; }
  .form-control__group-content {
    padding-left: 0;
    padding-top: 1.5rem; }
    @media (min-width: 36.0625rem) {
      .form-control__group-content {
        padding-left: 2rem; } }
  .form-control--focused {
    box-shadow: 0 0 0 2px #a6ddff; }
  .form-control--has-error {
    border-color: #BF1600; }
  .form-control--disabled, .form-dropdown__control--disabled {
    border: 1px solid #ddd !important; }
  .form-control__suffix, .form-control__prefix {
    color: #8d8d8d;
    font-size: 1.125rem;
    display: flex;
    flex: none;
    align-items: center;
    line-height: 1.15; }
  .form-control__suffix {
    padding-left: 0.5rem; }
  .form-control__prefix {
    padding-right: 0.5rem; }
  .form-control--checkbox {
    display: inline-flex;
    vertical-align: middle;
    line-height: 1.6875rem; }
    .form-control--checkbox .form__label {
      display: inline-block;
      margin: 0;
      font-weight: 400; }
    .form-control--checkbox .form__label .form__description {
      margin-top: 0.25rem; }
    .form-control--checkbox .form-control--has-error::before {
      border-color: #BF1600; }
  .form-control--label-above {
    flex-direction: column-reverse;
    align-items: center; }
  .form-control--label-above .form__label {
    white-space: nowrap; }
  .form-control--label-bottom {
    flex-direction: column;
    align-items: center; }
  .form-control--label-bottom .form__label {
    white-space: nowrap; }
  .form-control--label-left {
    flex-direction: row-reverse; }
  .form-control--label-above .form-control__checkbox {
    margin: 0.75rem 0 0 0;
    padding-top: 0;
    height: 22px; }
  .form-control--label-bottom .form-control__checkbox {
    margin: 0 0 0.75rem 0;
    padding-top: 0;
    height: 22px; }
  .form-control--label-left .form-control__checkbox {
    margin: 0 0 0 0.75rem;
    padding-top: 0.125rem; }
  .form-control__checkbox {
    margin: 0 0.75rem 0 0;
    padding-top: 0.125rem;
    height: 1.6875rem;
    text-align: initial; }
    .form-control__checkbox-input {
      position: absolute;
      width: 1.375rem;
      height: 1.375rem;
      opacity: 0;
      z-index: 1;
      cursor: pointer; }
      .form-control__checkbox-input:disabled {
        cursor: not-allowed; }
    .form-control__checkbox-indicator::before {
      display: block;
      content: "";
      width: 1.375rem;
      height: 1.375rem;
      background-color: #fff;
      border: 1px solid #b9b9b9; }
    .form-control__checkbox-input:checked + .form-control__checkbox-indicator::before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%2326993A%27%3E%3Cpath d=%27M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z%27 /%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat; }
    .form-control__checkbox-input:disabled + .form-control__checkbox-indicator::before {
      border-color: #ddd;
      background-color: transparent; }
    .form-control__checkbox-input:checked:disabled + .form-control__checkbox-indicator::before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%23666%27%3E%3Cpath d=%27M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z%27 /%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat; }
    .form-control__checkbox-input:focus + .form-control__checkbox-indicator::before {
      box-shadow: 0 0 0 2px #a6ddff; }
  .form-control--radio {
    position: relative;
    display: inline-flex;
    line-height: 1.6875rem; }
    .form-control--radio .form__label {
      display: inline-block;
      margin: 0;
      font-weight: 400; }
    .form-control--radio .form__label .form__description {
      margin-top: 0.25rem; }
    .form-control--radio .form-control--has-error::before {
      box-shadow: 0 0 0 1px #BF1600; }
  .form-control__radio-input {
    position: absolute;
    top: 0.5rem;
    left: 0.1875rem;
    opacity: 0;
    z-index: 1;
    cursor: pointer; }
    .form-control__radio-input:disabled {
      cursor: not-allowed; }
  .form-control__radio-indicator {
    padding-left: 2.125rem; }
    .form-control__radio-indicator::before {
      position: absolute;
      content: "";
      top: 3px;
      left: 1px;
      width: 1.25rem;
      height: 1.25rem;
      line-height: 1.6875rem;
      margin: 0 0.5rem 0 0;
      background-color: #fff;
      border: 4px solid #fff;
      box-shadow: 0 0 0 1px #b9b9b9;
      border-radius: 0.6875rem; }
  .form-control__radio-input:checked + .form-control__radio-indicator::before {
    background-color: #8d8d8d; }
  .form-control__radio-input:disabled + .form-control__radio-indicator::before {
    box-shadow: 0 0 0 1px #ddd; }
  .form-control__radio-input:focus + .form-control__radio-indicator::before {
    box-shadow: 0 0 0 1px #b9b9b9, 0 0 0 3px #a6ddff; }
  .form-control__radio-content {
    padding-left: 0;
    padding-top: 1.5rem; }
    @media (min-width: 36.0625rem) {
      .form-control__radio-content {
        padding-left: 2rem; } }
  .form-control__radio-input:focus + .form-control--has-error::before {
    box-shadow: 0 0 0 1px #BF1600, 0 0 0 3px #a6ddff; }
  .form-control--radio-group > .form__label {
    margin-bottom: 1rem; }
  .form-control--radio-group .form-group--grouped:last-child {
    margin-bottom: 0; }
  .form-control__radio-group > .form-feedback {
    padding-top: 0;
    padding-bottom: 1rem; }
  .form-control__radio-group > .form-feedback + .form-group {
    margin-top: 0; }
  .form-control__radio-group > .form-group {
    margin-top: 1.5rem; }
  .form-control__radio-group > .form-group:first-child {
    margin-top: 0; }
  .form-control__tristate--is-horizontal {
    display: flex;
    flex-direction: row; }
    .form-control__tristate--is-horizontal .form-group {
      margin-right: 2.25rem; }
  .form-dropzone {
    outline: none;
    /* padding added when multiple dropzones are present (multiple files are attached), this overriden for 'last-child' */
    margin-bottom: 1rem;
    /* padding is removed for 'last-child' */
    /* reset styles when dropzone custom template is used */ }
    @media (min-width: 36.0625rem) {
      .form-dropzone {
        min-height: 11.75rem; } }
    .form-dropzone:last-child {
      margin-bottom: 0; }
    .form-dropzone:focus .form-dropzone__content {
      border-color: #a6ddff;
      border-width: 2px; }
    .form-dropzone__content {
      text-align: center;
      height: 100%;
      border-width: 2px;
      border-style: dashed;
      border-radius: 3px; }
    .form-dropzone__icon {
      margin: 0 0.75rem auto 0; }
      @media (min-width: 36.0625rem) {
        .form-dropzone__icon {
          margin: 0 0 1rem 0; } }
      .form-dropzone__icon--with-close {
        left: 44px; }
    .form-dropzone__title {
      line-height: 1.6875rem;
      font-size: 1.125rem;
      text-align: inherit; }
      @media (max-width: 36rem) {
        .form-dropzone__title {
          margin: auto 0 auto 0;
          text-align: left; } }
    .form-dropzone__error-list-item {
      margin-bottom: 0.3125rem; }
    .form-dropzone__close {
      position: relative;
      float: right;
      padding: 10px 23px 0px 0px;
      font-size: 16px;
      line-height: 24px;
      color: #666;
      font-weight: 600; }
    .form-dropzone--with-uploader .form-dropzone__title {
      clear: right; }
    .form-dropzone--with-uploader .form-dropzone__subtitle {
      padding-bottom: 0; }
    @media (min-width: 36.0625rem) {
      .form-dropzone--with-uploader .form-dropzone-body {
        padding: 2rem 1rem 2rem 1rem; } }
    .form-dropzone__subtitle {
      color: #666;
      line-height: 1.6875rem;
      font-size: 1.125rem;
      padding-top: 0.375rem; }
      @media (min-width: 36.0625rem) {
        .form-dropzone__subtitle {
          padding-bottom: 0.625rem; } }
    .form-dropzone__controls {
      display: flex;
      flex-flow: row nowrap;
      justify-content: center;
      line-height: 1.6875rem;
      font-size: 1.125rem;
      padding-top: 1rem; }
      @media (max-width: 36rem) {
        .form-dropzone__controls {
          flex-flow: column wrap;
          padding-top: 1rem; } }
      .form-dropzone__controls-button:first-child {
        margin-bottom: 0.75rem; }
        @media (min-width: 36.0625rem) {
          .form-dropzone__controls-button:first-child {
            margin-bottom: 0;
            margin-right: 2rem; } }
    .form-dropzone-qrcode__info {
      padding-top: 0.25rem;
      margin-bottom: 0.375rem;
      color: #666; }
    .form-dropzone-qrcode__code {
      margin: 0px;
      padding: 0px;
      image-rendering: pixelated; }
    .form-dropzone-qrcode .icon--loader {
      margin-top: 2.75rem;
      margin-bottom: 2.75rem; }
    .form-dropzone-body {
      height: 100%;
      display: flex;
      justify-content: left;
      align-items: center;
      padding: 0.75rem; }
      @media (min-width: 36.0625rem) {
        .form-dropzone-body--block {
          padding: 1.5rem;
          flex-direction: column;
          justify-content: center; } }
      .form-dropzone-body--list {
        flex-direction: row; }
    @media (min-width: 36.0625rem) {
      .form-dropzone--with-uploader {
        min-height: 16.6875rem; } }
    .form-dropzone--default .form-dropzone__content {
      background: #fff;
      border-color: #ddd; }
    .form-dropzone--loading .form-dropzone__content {
      color: #666;
      background-color: #E6EFF2;
      border-color: #6F96B1; }
      @media (max-width: 36rem) {
        .form-dropzone--loading .form-dropzone__content {
          border: 0.0625rem solid #b9b9b9;
          background-color: transparent; } }
    @media (min-width: 36.0625rem) {
      .form-dropzone--loading .form-dropzone__title {
        padding-bottom: 2.6875rem; } }
    .form-dropzone--has-error {
      display: flex;
      flex-direction: column; }
    .form-dropzone--has-error .form-dropzone__content {
      background-color: #FFEEEB;
      border-color: #E5D2CE; }
      @media (max-width: 36rem) {
        .form-dropzone--has-error .form-dropzone__content {
          border: 0.0625rem solid #E5D2CE;
          color: #BF1600;
          background-color: #FFEEEB; } }
      .form-dropzone--has-error .form-dropzone__content--list {
        margin-top: 1.25rem; }
        .form-dropzone--has-error .form-dropzone__content--list .form-dropzone__icon {
          margin-right: 0.625rem; }
        .form-dropzone--has-error .form-dropzone__content--list .form-dropzone__title {
          text-align: left;
          align-self: baseline;
          color: #D22D0F;
          width: 100%; }
          .form-dropzone--has-error .form-dropzone__content--list .form-dropzone__title ul {
            list-style: disc;
            margin-left: 1.25rem; }
        .form-dropzone--has-error .form-dropzone__content--list .form-dropzone__subtitle {
          margin-right: 0.625rem;
          margin-left: 0.625rem; }
          .form-dropzone--has-error .form-dropzone__content--list .form-dropzone__subtitle a {
            z-index: 3; }
    .form-dropzone--done .form-dropzone__content {
      background-color: #EAF6E4;
      border-color: #C8DCC8; }
      @media (max-width: 36rem) {
        .form-dropzone--done .form-dropzone__content {
          border: 0.0625rem solid #ddd; } }
    .form-dropzone--template-custom {
      border: none;
      height: auto; }
      .form-dropzone--template-custom > .btn {
        font-family: "Source Sans Pro", Arial, sans-serif;
        padding-left: 0; }
    .form-dropzone__error-template-button-wrapper {
      padding-top: 1em; }
    .form-dropzone--hover .form-dropzone__content {
      opacity: 0.5;
      background: #E6EFF2;
      border: 2px solid #6F96B1; }
    .form-dropzone--show-cursor {
      cursor: pointer; }
  .form-dropdown__container {
    height: 3.125rem; }
    .form-dropdown__container--multiple {
      height: initial;
      min-height: 3.125rem; }
    .form-dropdown__container--open .form-dropdown__arrow::after {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%23000%27%3E%3Cpath d=%27M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z%27 /%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat; }
  .form-dropdown__suggestion {
    cursor: pointer;
    padding: 0.875rem 0; }
    .form-dropdown__suggestion:hover, .form-dropdown__suggestion--highlighted {
      background-color: #f4f4f4;
      color: #000; }
    .form-dropdown__suggestion--empty {
      color: #bf1600;
      margin-left: 0.625rem; }
      .form-dropdown__suggestion--empty:hover {
        background-color: #fff;
        color: #bf1600; }
    .form-dropdown__suggestion--disabled {
      background-color: #ddd;
      color: #aaa;
      cursor: not-allowed; }
      .form-dropdown__suggestion--disabled:hover {
        background-color: #ddd;
        color: #aaa; }
    .form-dropdown__suggestion--section {
      background-color: #f4f4f4;
      color: #000; }
  .form-dropdown__multi-container {
    display: flex;
    margin: 0.125rem;
    min-width: 0;
    box-sizing: border-box;
    gap: 0.3125rem;
    flex-wrap: wrap;
    padding-right: 4.6875rem;
    padding-bottom: 3.125rem; }
  .form-dropdown__multi-label {
    border-radius: 0.125rem;
    color: #333333;
    font-size: 85%;
    overflow: hidden;
    padding-left: 0.375rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center; }
  .form-dropdown__multi-remove {
    align-items: center;
    border-radius: 0.125rem;
    display: flex;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    box-sizing: border-box; }
  .form-dropdown__multi-remove-button {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%23666%27%3E%3Cpath d=%27M 1261.960938 1098.042969 C 1261.960938 1079.003906 1255 1062.539062 1241.082031 1048.628906 L 1042.292969 849.882812 L 1241.082031 651.136719 C 1255 637.230469 1261.960938 620.757812 1261.960938 601.726562 C 1261.960938 581.960938 1255 565.125 1241.082031 551.214844 L 1142.234375 452.390625 C 1128.328125 438.484375 1111.492188 431.53125 1091.722656 431.53125 C 1072.679688 431.53125 1056.210938 438.484375 1042.292969 452.390625 L 843.5 651.136719 L 644.707031 452.390625 C 630.792969 438.484375 614.320312 431.53125 595.28125 431.53125 C 575.511719 431.53125 558.671875 438.484375 544.761719 452.390625 L 445.914062 551.214844 C 432 565.125 425.046875 581.960938 425.046875 601.726562 C 425.046875 620.757812 432 637.230469 445.914062 651.136719 L 644.707031 849.882812 L 445.914062 1048.628906 C 432 1062.539062 425.046875 1079.003906 425.046875 1098.042969 C 425.046875 1117.808594 432 1134.640625 445.914062 1148.546875 L 544.761719 1247.367188 C 558.671875 1261.285156 575.511719 1268.230469 595.28125 1268.230469 C 614.320312 1268.230469 630.792969 1261.285156 644.707031 1247.367188 L 843.5 1048.628906 L 1042.292969 1247.367188 C 1056.210938 1261.285156 1072.679688 1268.230469 1091.722656 1268.230469 C 1111.492188 1268.230469 1128.328125 1261.285156 1142.234375 1247.367188 L 1241.082031 1148.546875 C 1255 1134.640625 1261.960938 1117.808594 1261.960938 1098.042969 Z M 1687 849.882812 C 1687 1002.875 1649.296875 1143.96875 1573.875 1273.175781 C 1498.457031 1402.378906 1396.128906 1504.679688 1266.894531 1580.082031 C 1137.660156 1655.480469 996.53125 1693.175781 843.5 1693.175781 C 690.46875 1693.175781 549.335938 1655.480469 420.101562 1580.082031 C 290.867188 1504.679688 188.542969 1402.378906 113.125 1273.175781 C 37.707031 1143.96875 0 1002.875 0 849.882812 C 0 696.890625 37.707031 555.789062 113.125 426.589844 C 188.542969 297.386719 290.867188 195.085938 420.101562 119.6875 C 549.335938 44.289062 690.46875 6.589844 843.5 6.589844 C 996.53125 6.589844 1137.660156 44.289062 1266.894531 119.6875 C 1396.128906 195.085938 1498.457031 297.386719 1573.875 426.589844 C 1649.296875 555.789062 1687 696.890625 1687 849.882812 Z M 1687 849.882812%27 /%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: none;
    background-color: transparent;
    z-index: 2;
    cursor: pointer; }
  .form-dropdown__text-label {
    overflow-x: hidden;
    text-overflow: ellipsis;
    height: 100%; }
    .form-dropdown__text-label--menu {
      padding-right: 0.625rem;
      padding-left: 0.625rem; }
    .form-dropdown__text-label--selected {
      padding-right: 2.5rem;
      padding-top: 0.75rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
      @media screen and (-webkit-min-device-pixel-ratio: 0) {
        .form-dropdown__text-label--selected {
          max-width: -webkit-fill-available; } }
      @media screen and (min--moz-device-pixel-ratio: 0) {
        .form-dropdown__text-label--selected {
          max-width: -moz-available; } }
    .form-dropdown__text-label--focused {
      color: #ddd; }
    .form-dropdown__text-label--delete-indicator {
      padding-right: 3.9375rem; }
  .form-dropdown__remove-button {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%23666%27%3E%3Cpath d=%27M 1261.960938 1098.042969 C 1261.960938 1079.003906 1255 1062.539062 1241.082031 1048.628906 L 1042.292969 849.882812 L 1241.082031 651.136719 C 1255 637.230469 1261.960938 620.757812 1261.960938 601.726562 C 1261.960938 581.960938 1255 565.125 1241.082031 551.214844 L 1142.234375 452.390625 C 1128.328125 438.484375 1111.492188 431.53125 1091.722656 431.53125 C 1072.679688 431.53125 1056.210938 438.484375 1042.292969 452.390625 L 843.5 651.136719 L 644.707031 452.390625 C 630.792969 438.484375 614.320312 431.53125 595.28125 431.53125 C 575.511719 431.53125 558.671875 438.484375 544.761719 452.390625 L 445.914062 551.214844 C 432 565.125 425.046875 581.960938 425.046875 601.726562 C 425.046875 620.757812 432 637.230469 445.914062 651.136719 L 644.707031 849.882812 L 445.914062 1048.628906 C 432 1062.539062 425.046875 1079.003906 425.046875 1098.042969 C 425.046875 1117.808594 432 1134.640625 445.914062 1148.546875 L 544.761719 1247.367188 C 558.671875 1261.285156 575.511719 1268.230469 595.28125 1268.230469 C 614.320312 1268.230469 630.792969 1261.285156 644.707031 1247.367188 L 843.5 1048.628906 L 1042.292969 1247.367188 C 1056.210938 1261.285156 1072.679688 1268.230469 1091.722656 1268.230469 C 1111.492188 1268.230469 1128.328125 1261.285156 1142.234375 1247.367188 L 1241.082031 1148.546875 C 1255 1134.640625 1261.960938 1117.808594 1261.960938 1098.042969 Z M 1687 849.882812 C 1687 1002.875 1649.296875 1143.96875 1573.875 1273.175781 C 1498.457031 1402.378906 1396.128906 1504.679688 1266.894531 1580.082031 C 1137.660156 1655.480469 996.53125 1693.175781 843.5 1693.175781 C 690.46875 1693.175781 549.335938 1655.480469 420.101562 1580.082031 C 290.867188 1504.679688 188.542969 1402.378906 113.125 1273.175781 C 37.707031 1143.96875 0 1002.875 0 849.882812 C 0 696.890625 37.707031 555.789062 113.125 426.589844 C 188.542969 297.386719 290.867188 195.085938 420.101562 119.6875 C 549.335938 44.289062 690.46875 6.589844 843.5 6.589844 C 996.53125 6.589844 1137.660156 44.289062 1266.894531 119.6875 C 1396.128906 195.085938 1498.457031 297.386719 1573.875 426.589844 C 1649.296875 555.789062 1687 696.890625 1687 849.882812 Z M 1687 849.882812%27 /%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: calc(100% - 3.5rem);
    border: none;
    background-color: transparent;
    z-index: 2;
    cursor: pointer; }
  .form-dropdown__suggestions-container {
    position: relative;
    z-index: 3;
    top: -0.0625rem;
    left: 0.0625rem;
    width: calc(100% - 0.125rem); }
  .form-dropdown__suggestions-list {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 14.375rem;
    background-color: #fff;
    border: solid 0.0625rem #ddd;
    margin: -0.0625rem;
    display: none; }
    .form-dropdown__suggestions-list--shown {
      display: block; }
  .form-dropdown__input {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    text-indent: 0.625rem;
    padding-right: 3rem;
    border: none;
    outline: none; }
    .form-dropdown__input--focused, .form-dropdown__input--placeholder {
      opacity: 1;
      background-color: transparent; }
    .form-dropdown__input--multiple {
      top: calc(100% - 3.125rem);
      height: 50px; }
    .form-dropdown__input--readonly.form-dropdown__input--focused {
      color: #ddd; }
  .form-dropdown__arrow {
    position: relative;
    padding-left: 0.625rem;
    height: 3.125rem; }
    .form-dropdown__arrow::after {
      content: "";
      display: inline-block;
      width: 1rem;
      height: 1rem;
      position: absolute;
      top: calc(50% - 0.5rem);
      left: calc(100% - 2rem);
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%23666%27%3E%3Cpath d=%27M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z%27 /%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat; }
    .form-dropdown__arrow:focus::after, .form-dropdown__arrow:hover::after {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%23000%27%3E%3Cpath d=%27M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z%27 /%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat; }
    .form-dropdown__arrow--hidden::after {
      display: none; }
    .form-dropdown__arrow--multiple {
      height: initial;
      min-height: 3.125rem; }
  .form-dropdown__control {
    border-radius: 0.1875rem;
    border: 0.0625rem solid #b9b9b9;
    background-color: #fff; }
    .form-dropdown__control--multiple-value {
      display: flex;
      flex-direction: column; }
    .form-dropdown__control--is-focused {
      box-shadow: 0 0 0 2px #a6ddff; }
    .form-dropdown__control--has-error {
      border-color: #BF1600; }
    .form-dropdown__control--disabled .form-dropdown__input {
      cursor: not-allowed; }
    .form-dropdown__control--disabled .form-dropdown__arrow:focus::after, .form-dropdown__control--disabled .form-dropdown__arrow:hover::after {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%23666%27%3E%3Cpath d=%27M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z%27 /%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat; }
  .form-control__signature .form__label {
    margin-bottom: 0.25rem; }
  .form-control__signature-controls {
    background-color: #f4f4f4;
    padding: 0.75rem 0.5rem 0.75rem 0.5rem; }
    @media (min-width: 36.0625rem) {
      .form-control__signature-controls {
        padding: 0.75rem; } }
    .form-control__signature-controls .form-feedback {
      padding-top: 0;
      padding-bottom: 0.75rem; }
    .form-control__signature-controls .btn--secondary:not(:disabled) {
      color: #000;
      background-color: #fff; }
    .form-control__signature-controls .btn--secondary:hover:not(:disabled) {
      color: #000;
      background-color: #fff; }
      .form-control__signature-controls .btn--secondary:hover:not(:disabled) .icon--reload-arrow::before {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271792%27 height=%271792%27 viewBox=%270 0 1792 1792%27 version=%271.1%27%3E%3Cg fill=%27%238d8d8d%27%3E%3Cpath d=%27M1664 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 14 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z%27 /%3E%3C/g%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat; }
    @media (max-width: 36rem) {
      .form-control__signature-controls .btn--secondary {
        padding: 0.75rem 1rem 0.75rem 1rem; } }
  @media (max-width: 36rem) {
    .form-control__signature-clear-label {
      font-size: 1.0625rem;
      display: block;
      width: 100%; } }
  .form-control__signature-explanation {
    margin-left: 2.3125rem;
    margin-bottom: 0.5rem; }
  .form-control__signature-expander {
    margin-bottom: 1rem !important; }
    @media (min-width: 36.0625rem) {
      .form-control__signature-expander {
        margin-bottom: 0.75rem !important; } }
  .form-control__signature-overlay {
    position: relative; }
  .form-control__signature-saved {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    background-size: cover; }
    .form-control__signature-saved-label {
      margin-top: 0.25rem;
      margin-left: 0.75rem;
      color: #8d8d8d; }
  .form-control__signature-wrapper {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-style: dashed;
    border-width: 0.125rem;
    margin-bottom: 0.75rem; }
    .form-control__signature-wrapper.form-control--has-error {
      margin-bottom: 0.5rem; }
  .form-control__signature--disabled {
    pointer-events: none;
    opacity: .4; }
    .form-control__signature--disabled * {
      /* Safari */
      -webkit-user-select: none;
      /* IE 10+ and Edge */
      -ms-user-select: none;
      /* Standard syntax */
      user-select: none; }
  .form-control__signature .form__description {
    padding-bottom: 0; }
  .form-group {
    position: relative; }
  .form-item {
    display: block;
    margin-bottom: 2.5rem; }
    @media (min-width: 48.0625rem) {
      .form-item {
        display: flex; }
        .form-item__flex-1 {
          min-width: 10%;
          max-width: 10%; }
        .form-item__flex-2 {
          min-width: 20%;
          max-width: 20%; }
        .form-item__flex-3 {
          min-width: 30%;
          max-width: 30%; }
        .form-item__flex-4 {
          min-width: 40%;
          max-width: 40%; }
        .form-item__flex-5 {
          min-width: 50%;
          max-width: 50%; }
        .form-item__flex-6 {
          min-width: 60%;
          max-width: 60%; }
        .form-item__flex-7 {
          min-width: 70%;
          max-width: 70%; }
        .form-item__flex-8 {
          min-width: 80%;
          max-width: 80%; }
        .form-item__flex-9 {
          min-width: 90%;
          max-width: 90%; }
        .form-item__flex-10 {
          min-width: 100%;
          max-width: 100%; } }
    .form-item:last-child {
      margin-bottom: 0; }
    .form-item__flex-1 {
      flex: 0.1; }
    .form-item__flex-2 {
      flex: 0.2; }
    .form-item__flex-3 {
      flex: 0.3; }
    .form-item__flex-4 {
      flex: 0.4; }
    .form-item__flex-5 {
      flex: 0.5; }
    .form-item__flex-6 {
      flex: 0.6; }
    .form-item__flex-7 {
      flex: 0.7; }
    .form-item__flex-8 {
      flex: 0.8; }
    .form-item__flex-9 {
      flex: 0.9; }
    .form-item__flex-10 {
      flex: 1; }
  .form-paragraph {
    margin: 0; }
    .form-paragraph + .form-paragraph {
      margin-top: 1rem; }
      @media (min-width: 36.0625rem) {
        .form-paragraph + .form-paragraph {
          margin-top: 1.5rem; } }
    .form-paragraph + :not(.form-paragraph) {
      margin-top: 2rem; }
      @media (min-width: 36.0625rem) {
        .form-paragraph + :not(.form-paragraph) {
          margin-top: 3rem; } }
    .form-paragraph > p + p {
      margin: 1rem 0 0 0; }
      @media (min-width: 36.0625rem) {
        .form-paragraph > p + p {
          margin: 1.5rem 0 0 0; } }
  .form-section + .form-section {
    margin-top: 3.5rem; }
  .form-section + :not(.form-section) {
    margin-top: 3.5rem; }
  .form-section__headline {
    display: flex;
    font-weight: 600;
    line-height: 1.6875rem;
    text-transform: uppercase; }
    .form-section__headline + :not(.form-section__comment) {
      margin-top: 1.5rem; }
    .form-section__headline--light {
      color: #666; }
    .form-section__headline-number {
      content: "";
      min-width: 1.75rem;
      min-height: 1.75rem;
      width: 1.75rem;
      height: 1.75rem;
      font-size: 1rem;
      line-height: 1.5rem;
      font-weight: 400;
      margin: 0 0.75rem 0 0;
      text-align: center;
      color: white;
      background-color: #2B79A8;
      border: 1px solid #2B79A8;
      border-radius: 50%; }
  .form-section__comment {
    line-height: 1.6875rem;
    margin-top: 0.75rem;
    margin-bottom: 2rem; }
  .form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000;
    line-height: 1.6875rem; }
    .form__label--light {
      color: #666;
      font-weight: 400; }
    .form__label--is-optional {
      color: #666;
      font-weight: 400; }
      .form__label--is-optional::before {
        content: " "; }
    .form__label label {
      cursor: pointer; }
  .form__label > .form__description {
    margin-bottom: 0px; }
  .form__description {
    line-height: 1.6875rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 0.5rem; }
  .form-feedback {
    display: block;
    color: #BF1600;
    font-size: 1rem;
    font-weight: 400;
    padding-top: 0.5rem; }

@charset "UTF-8";
/* Baseline styles
   -------------------------------------------------------------------------------- */
/* Calculate px to rem
   -------------------------------------------------------------------------------- */
/* Fonts
   -------------------------------------------------------------------------------- */
/* Colors
   -------------------------------------------------------------------------------- */
/* Breakpoints - use px unit only
   -------------------------------------------------------------------------------- */
/* Typography
   -------------------------------------------------------------------------------- */
/* Forms
   -------------------------------------------------------------------------------- */
/* Media query
   -------------------------------------------------------------------------------- */
/* No printing
   -------------------------------------------------------------------------------- */
/* Specific styles
   -------------------------------------------------------------------------------- */
/*
    Styles for all used form elements
*/
.form {
  /*
    Styles bank account input

    Index:
        __container
        __box
        -separator
        -error
*/
  /*
    Styles generic form warning

    Index:
        __warning
            --withLabelOrDescription
*/
  /*
    Styles radio group

    Index:
    control
        __checkbox-group
*/
  /*
    The form container eg. form-container

    Index:
    -container
        __submit-error

*/
  /*
    Styles for the document input

    Index:
    -document
        __label
        __description
        __error
*/
  /*
    The component for the ehic reissue form
    
    Index:
    -address
        -code
        -city
*/ }
  .form-control--bank-account > .form__label {
    margin-bottom: 1rem; }
  .form-control-bank-account {
    display: block;
    width: 100%;
    white-space: nowrap;
    /**
        * error components
        */ }
    @media (min-width: 48.0625rem) {
      .form-control-bank-account {
        display: flex; } }
    .form-control-bank-account__container {
      flex: 5; }
    .form-control-bank-account__box {
      display: flex;
      flex: 5; }
      .form-control-bank-account__box--prefix {
        flex: 3; }
      .form-control-bank-account__box--number {
        flex: 7; }
      .form-control-bank-account__box--code {
        flex: 10;
        padding-top: 1rem;
        width: 100%; }
        @media (min-width: 48.0625rem) {
          .form-control-bank-account__box--code {
            padding-top: 0; } }
    .form-control-bank-account-separator {
      padding: 0 0.5625rem;
      height: 1.875rem;
      margin-top: 2.6875rem;
      color: #8d8d8d;
      line-height: 1.6875rem; }
      @media (max-width: 48rem) {
        .form-control-bank-account-separator--number {
          display: none; }
          .form-control-bank-account-separator--number::before {
            content: ""; } }
      .form-control-bank-account-separator--number::before {
        content: "/"; }
      .form-control-bank-account-separator--prefix::before {
        content: "–"; }
    .form-control-bank-account-error {
      display: flex; }
      @media (max-width: 48rem) {
        .form-control-bank-account-error {
          display: block; } }
      .form-control-bank-account-error--spacer {
        flex: 3; }
      .form-control-bank-account-error--prefix {
        flex: 3; }
      .form-control-bank-account-error--number {
        flex: 7;
        margin-left: 1.6875rem; }
        @media (max-width: 48rem) {
          .form-control-bank-account-error--number {
            margin-left: 0; } }
  .form-control__warning {
    position: relative;
    margin-bottom: 1rem;
    color: #ad5f11; }
    .form-control__warning--withLabelOrDescription {
      margin-top: 1rem; }
  .form-control--checkbox-group > .form__label {
    margin-bottom: 1rem; }
  .form-control--checkbox-group > .form-feedback {
    padding-top: 0;
    padding-bottom: 1rem; }
  .form-control__checkbox-group > .form-group {
    margin-top: 1.5rem; }
  .form-control__checkbox-group > .form-group:first-child {
    margin-top: 0; }
  .form-container__submit-error {
    margin: 0 0 2rem 0; }
  .form-document__label {
    display: block;
    margin: 0 0 1rem;
    font-weight: 600;
    color: #000;
    line-height: 1.5rem; }
  .form-document__description {
    font-weight: 400;
    color: #666;
    margin-bottom: 0.5rem; }
  .form-document__checker {
    margin-top: 1rem; }
    .form-document__checker + .form-group,
    .form-document__checker + .form__description {
      margin-top: 1.5rem; }
  .form-document__error {
    display: flex;
    flex-direction: column-reverse; }
    @media (min-width: 36.0625rem) {
      .form-document__error {
        flex-direction: column; } }
    @media (min-width: 36.0625rem) {
      .form-document__error .form-dropzone {
        margin-bottom: 0 !important; } }
    @media (min-width: 36.0625rem) {
      .form-document__error .form-dropzone__content {
        border-color: #d92e0e !important; } }
    .form-document__error .form-feedback {
      padding-top: 0;
      padding-bottom: 1rem; }
      @media (min-width: 36.0625rem) {
        .form-document__error .form-feedback {
          padding-top: 0.5rem;
          padding-bottom: 0; } }
  .form-document__add-mode {
    font-size: 18px;
    line-height: 27px;
    text-decoration: underline;
    color: #2b79a8;
    cursor: pointer; }
  .form-document__add-mode:hover {
    text-decoration: none; }
  .form-control-address {
    display: flex;
    flex-flow: column;
    flex-direction: column; }
    .form-control-address .form-dropdown__text-label {
      word-break: break-all; }
    @media (min-width: 36.0625rem) {
      .form-control-address {
        flex-flow: row;
        flex-direction: row; } }
    .form-control-address-code {
      width: 120px;
      padding-top: 2rem; }
      @media (min-width: 25.9375rem) {
        .form-control-address-code {
          flex: 3;
          width: auto; } }
    .form-control-address-city {
      flex: 7;
      margin-left: 0;
      padding-top: 2rem; }
      @media (min-width: 36.0625rem) {
        .form-control-address-city {
          margin-left: 0.75rem; } }
    .form-control-address-street-only {
      flex: 6;
      margin-left: 0;
      padding-top: 2rem; }
      @media (min-width: 36.0625rem) {
        .form-control-address-street-only {
          padding-top: 0;
          margin-right: 0.75rem;
          min-width: 60%;
          max-width: 60%; } }
    .form-control-address-street-number {
      min-width: 167px;
      width: 167px;
      padding-top: 2rem; }
      @media (min-width: 36.0625rem) {
        .form-control-address-street-number {
          padding-top: 0; } }
      @media (min-width: 25.9375rem) {
        .form-control-address-street-number {
          flex: 4;
          width: auto; } }
  .form-control--address .form-dropdown__suggestions-list--shown::after {
    content: "";
    position: absolute;
    width: 3.125rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("https://api.mapy.cz/img/api/logo-small.svg");
    display: block;
    bottom: 0;
    right: 1.1875rem; }
  .form-typed-currency .form-dropdown__suggestion--section {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }
  .form-typed-currency .form-dropdown__suggestions--frequent {
    border-bottom: 0.0625rem solid #666; }
  .form-recaptcha .form-feedback {
    display: flex;
    flex-direction: row; }
  .form-recaptcha__required {
    display: inline-flex;
    flex-direction: column; }
  .form-control__password .form-control__input {
    padding-right: 43px; }
  .form-control__password__suffix {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    padding: 0;
    background-repeat: no-repeat;
    background-size: contain; }
    .form-control__password__suffix--invisible {
      background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z%27/%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%273%27/%3E%3C/svg%3E"); }
    .form-control__password__suffix--visible {
      background-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 fill=%27none%27 stroke=%27%23000%27 stroke-width=%272%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z%27/%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%273%27/%3E%3Cline x1=%272%27 y1=%272%27 x2=%2722%27 y2=%2722%27/%3E%3C/svg%3E"); }
    .form-control__password__suffix[disabled] {
      cursor: not-allowed;
      opacity: 50%; }

.CollapsibleBox {
  transition: height 0.3s;
  overflow: hidden;
  display: none; }
  .CollapsibleBox--visible {
    display: block; }
  .CollapsibleBox--not-moving {
    overflow: visible; }
  .CollapsibleBox--fast {
    transition: height 0.15s; }
  .CollapsibleBox__content {
    overflow: hidden; }
    .CollapsibleBox__content--visible {
      overflow: visible; }

.password-strength-validator__label {
  margin: 0 0 .2rem 0; }

.password-strength-validator__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.password-strength-validator__condition {
  position: relative;
  margin: 0 0 .2rem 0;
  padding: 0 0 0 1.25rem; }
  .password-strength-validator__condition::before {
    position: absolute;
    display: block;
    content: " ";
    top: .125rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%221792%22%20height%3D%221792%22%3E%3Cpath%20fill%3D%22rgb%28203, 43, 13%29%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20d%3D%22M1490 1322q0 40-28 68l-136 136q-28 28-68 28t-68-28l-294-294-294 294q-28 28-68 28t-68-28l-136-136q-28-28-28-68t28-68l294-294-294-294q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 294 294-294q28-28 68-28t68 28l136 136q28 28 28 68t-28 68l-294 294 294 294q28 28 28 68z%22%20%2F%3E%3C%2Fsvg%3E");
    background-size: contain;
    background-repeat: no-repeat; }
  .password-strength-validator__condition--valid {
    color: #999999; }
    .password-strength-validator__condition--valid::before {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%221792%22%20height%3D%221792%22%3E%3Cpath%20fill%3D%22rgb%2852, 192, 52%29%22%20stroke%3D%22transparent%22%20stroke-width%3D%220%22%20d%3D%22M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z%22%20%2F%3E%3C%2Fsvg%3E");
      background-size: contain;
      background-repeat: no-repeat; }

.tooltipper {
  position: relative; }
  .tooltipper--inline {
    display: inline-block; }

.lightweight-tooltip__overlayer {
  position: absolute;
  padding: 10px; }
  .lightweight-tooltip__overlayer div {
    position: absolute;
    padding: 10px;
    top: 0;
    left: 0;
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    margin: -5px; }

.lightweight-tooltip__bubble {
  min-width: 200px;
  position: fixed;
  z-index: 999;
  max-width: 200px;
  text-transform: none;
  text-align: left;
  background: rgba(0, 0, 0, 0.9);
  padding: 5px;
  border-radius: 3px;
  visibility: hidden; }
  @media (min-width: 768px) {
    .lightweight-tooltip__bubble {
      min-width: 400px; } }

.lightweight-tooltip__content {
  color: #fff;
  line-height: 1.4;
  font-size: .8em;
  padding: 5px 1em; }

.lightweight-tooltip__arrow {
  position: absolute;
  width: 0;
  height: 0; }

.lightweight-tooltip__gap {
  position: absolute;
  width: 100%;
  height: 100%; }

.lightweight-tooltip--left .lightweight-tooltip__overlayer {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px; }

.lightweight-tooltip--left .lightweight-tooltip__bubble {
  transform: translateY(-50%) translateX(-100%);
  margin-left: -10px; }

.lightweight-tooltip--left .lightweight-tooltip__arrow {
  bottom: 50%;
  right: -5px;
  margin-bottom: -5px;
  border-top: solid transparent 5px;
  border-bottom: solid transparent 5px;
  border-left: solid rgba(0, 0, 0, 0.9) 5px; }

.lightweight-tooltip--left .lightweight-tooltip__gap {
  width: 20px;
  left: 100%;
  top: 0; }

.lightweight-tooltip--right .lightweight-tooltip__overlayer {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 10px; }

.lightweight-tooltip--right .lightweight-tooltip__bubble {
  transform: translateY(-50%);
  margin-left: 10px; }

.lightweight-tooltip--right .lightweight-tooltip__arrow {
  bottom: 50%;
  left: -5px;
  margin-bottom: -5px;
  border-top: solid transparent 5px;
  border-bottom: solid transparent 5px;
  border-right: solid rgba(0, 0, 0, 0.9) 5px; }

.lightweight-tooltip--right .lightweight-tooltip__gap {
  width: 20px;
  right: 100%;
  top: 0; }

.lightweight-tooltip--top .lightweight-tooltip__overlayer {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px; }

.lightweight-tooltip--top .lightweight-tooltip__bubble {
  transform: translateX(-50%) translateY(-100%);
  margin-top: -10px; }

.lightweight-tooltip--top .lightweight-tooltip__arrow {
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
  border-left: solid transparent 5px;
  border-right: solid transparent 5px;
  border-top: solid rgba(0, 0, 0, 0.9) 5px; }

.lightweight-tooltip--top .lightweight-tooltip__gap {
  height: 20px;
  top: 100%;
  left: 0; }

.lightweight-tooltip--bottom .lightweight-tooltip__overlayer {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px; }

.lightweight-tooltip--bottom .lightweight-tooltip__bubble {
  transform: translateX(-50%);
  margin-top: 10px; }

.lightweight-tooltip--bottom .lightweight-tooltip__arrow {
  top: -5px;
  left: 50%;
  margin-left: -5px;
  border-left: solid transparent 5px;
  border-right: solid transparent 5px;
  border-bottom: solid rgba(0, 0, 0, 0.9) 5px; }

.lightweight-tooltip--bottom .lightweight-tooltip__gap {
  height: 20px;
  bottom: 100%;
  left: 0; }

