.editor {
  --headerBackground: #fff;
  --headerColor: #505050;
  --headerButtonBackground: #999;
  --headerButtonBackgroundHover: #b0b4bf;
  --headerButtonColor: #fff;
  --headerButtonColorHover: var(--headerButtonColor);
  --headerButtonBorderColor: #838282;
  --headerButtonBorderColorHover: #a1a1a1;
  --headerButtonBorderRadius: 4px;
  --headerButtonIconColor: #fff;
  --headerButtonIconColorHover: var(--headerButtonIconColor);
  --footerBackground: #fff;
  --footerColor: #505050;
  --footerButtonBackground: #999;
  --footerButtonBackgroundHover: #b0b4bf;
  --footerButtonColor: #fff;
  --footerButtonColorHover: var(--footerButtonColor);
  --footerButtonBorderColor: #838282;
  --footerButtonBorderColorHover: #a1a1a1;
  --footerButtonBorderRadius: 4px;
  --footerButtonIconColor: #fff;
  --footerButtonIconColorHover: var(--footerButtonIconColor);
  --saveButtonBackground: #1d70a6;
  --saveButtonBackgroundHover: #aacadf;
  --saveButtonColor: #fff;
  --saveButtonColorHover: #000;
  --saveButtonBorderColor: #a8aaad;
  --saveButtonBorderColorHover: #9fadc3;
  --saveButtonBorderRadius: 4px;
  --saveButtonIconColor: #fff;
  --saveButtonIconColorHover: inherit;
  --sidebarBackground: #eceff1;
  --sidebarColor: #666666;
  --sidebarBlockBackground: #fff;
  --sidebarBlockColor: var(--sidebarColor);
  --sidebarBlockBorderColor: #d6d8da;
  --sidebarButtonBackground: #e4e4e4;
  --sidebarButtonBackgroundHover: #aacadf;
  --sidebarButtonColor: #586a76;
  --sidebarButtonColorHover: #000;
  --sidebarButtonBorderColor: #d6d8da;
  --sidebarButtonBorderColorHover: var(--sidebarButtonBorderColor);
  --sidebarButtonBorderRadius: 4px;
  --sidebarButtonIconColor: #1d70a6;
  --sidebarButtonIconColorHover: var(--sidebarButtonIconColor);
  --workspaceBoxShadow: none;
  --workspaceBackground: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  border-radius: inherit;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
  font-size: 12px; }
  .editor--hasError {
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .editor .editor__error {
    font-weight: bold;
    color: red;
    background: #ffdbdb;
    border-left: 4px solid red;
    padding: 10px 20px; }
    .editor .editor__error li {
      margin-left: 20px; }
  .editor .editor__notification {
    z-index: 10;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .editor .editor__notification.withBackdrop {
      pointer-events: all;
      background-color: rgba(255, 255, 255, 0.4); }
    .editor .editor__notification.error .editor__notificationContent {
      border-color: red;
      color: red;
      background: #ffdbdb; }
    .editor .editor__notification.error .editor__notificationText:before {
      content: '';
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/error.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/error.svg); }
    .editor .editor__notification.success .editor__notificationContent {
      border-color: green;
      color: green;
      background: #cbffce; }
    .editor .editor__notification.success .editor__notificationText:before {
      content: '';
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/check.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/check.svg); }
    .editor .editor__notification.fade-enter-active, .editor .editor__notification.fade-leave-active {
      transition: opacity .5s; }
    .editor .editor__notification.fade-enter, .editor .editor__notification.fade-leave-to {
      opacity: 0; }
    .editor .editor__notificationContent {
      pointer-events: all;
      padding: 10px 20px;
      border: 2px solid #d3d3d3;
      background: #ffffff;
      color: #000000;
      font-size: 16px;
      font-weight: bold;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 250px;
      max-width: calc(100% - 20px);
      box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2); }
    .editor .editor__notificationText {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .editor .editor__notificationText:before {
        content: none;
        display: inline-block;
        background: currentColor;
        height: 40px;
        width: 40px;
        -webkit-mask-repeat: no-repeat;
                mask-repeat: no-repeat;
        -webkit-mask-position: center;
                mask-position: center;
        margin-right: 10px; }
    .editor .editor__notificationClose {
      cursor: pointer;
      position: relative;
      margin-left: 20px;
      display: inline-block;
      height: 20px;
      width: 20px; }
      .editor .editor__notificationClose:before, .editor .editor__notificationClose:after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        height: 100%;
        border-right: 2px solid currentColor;
        transition: -webkit-transform .5s ease;
        transition: transform .5s ease;
        transition: transform .5s ease, -webkit-transform .5s ease; }
      .editor .editor__notificationClose:before {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .editor .editor__notificationClose:after {
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
      .editor .editor__notificationClose:hover:before {
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
      .editor .editor__notificationClose:hover:after {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
  .editor .editor__workspace {
    position: relative;
    border: none !important;
    overflow: hidden !important;
    background-color: var(--workspaceBackground);
    box-shadow: var(--workspaceBoxShadow); }
    .editor .editor__workspace .editor__funcGroup {
      position: absolute;
      margin: 0;
      padding: 0 2px 2px;
      background-color: #fff;
      box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3); }
      .editor .editor__workspace .editor__funcGroup--dragMode {
        z-index: 100;
        top: 0;
        right: 0;
        border-bottom-left-radius: 4px; }
      .editor .editor__workspace .editor__funcGroup .editor__button {
        margin: 1px;
        background-color: #e4e4e4;
        color: #1d70a6;
        border: 1px solid #d6d8da;
        border-radius: 4px; }
        .editor .editor__workspace .editor__funcGroup .editor__button--iconOnly {
          padding: 2px; }
          .editor .editor__workspace .editor__funcGroup .editor__button--iconOnly .editor__icon {
            height: 20px;
            width: 20px; }
        .editor .editor__workspace .editor__funcGroup .editor__button:hover, .editor .editor__workspace .editor__funcGroup .editor__button--active {
          background-color: #aacadf; }
  .editor .editor__header,
  .editor .editor__footer {
    padding: 5px 300px 5px 15px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media (max-width: 1200px) {
      .editor .editor__header,
      .editor .editor__footer {
        padding-right: 15px; } }
    .editor .editor__header .editor__button,
    .editor .editor__footer .editor__button {
      font-size: 15px; }
  .editor .editor__header {
    background: var(--headerBackground);
    color: var(--headerColor); }
    .editor .editor__header .editor__button {
      color: var(--headerButtonColor);
      background: var(--headerButtonBackground);
      border: 1px solid var(--headerButtonBorderColor);
      border-radius: var(--headerButtonBorderRadius); }
      .editor .editor__header .editor__button .editor__icon {
        color: var(--headerButtonIconColor); }
      .editor .editor__header .editor__button:hover, .editor .editor__header .editor__button--active {
        color: var(--headerButtonColorHover);
        background: var(--headerButtonBackgroundHover);
        border-color: var(--headerButtonBorderColorHover); }
        .editor .editor__header .editor__button:hover .editor__icon, .editor .editor__header .editor__button--active .editor__icon {
          color: var(--headerButtonIconColorHover); }
  .editor .editor__main {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 300px;
        grid-template-columns: 1fr 300px;
    overflow: hidden !important; }
    @media (max-width: 800px) {
      .editor .editor__main {
        -ms-grid-columns: 1fr 200px;
            grid-template-columns: 1fr 200px; } }
  .editor .editor__footer {
    background: var(--footerBackground);
    color: var(--footerColor); }
    .editor .editor__footer .editor__button {
      color: var(--footerButtonColor);
      background: var(--footerButtonBackground);
      border: 1px solid var(--footerButtonBorderColor);
      border-radius: var(--footerButtonBorderRadius); }
      .editor .editor__footer .editor__button .editor__icon {
        color: var(--footerButtonIconColor); }
      .editor .editor__footer .editor__button:hover, .editor .editor__footer .editor__button--active {
        color: var(--footerButtonColorHover);
        background: var(--footerButtonBackgroundHover);
        border-color: var(--footerButtonBorderColorHover); }
        .editor .editor__footer .editor__button:hover .editor__icon, .editor .editor__footer .editor__button--active .editor__icon {
          color: var(--footerButtonIconColorHover); }
  .editor .editor__sidebar {
    position: relative;
    overflow-y: auto !important;
    overflow-x: clip !important;
    background: var(--sidebarBackground);
    color: var(--sidebarColor); }
    .editor .editor__sidebar, .editor .editor__sidebarExtra {
      padding: 10px 15px; }
      .editor .editor__sidebar .editor__funcGroup, .editor .editor__sidebarExtra .editor__funcGroup {
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        min-height: 28px; }
      .editor .editor__sidebar .editor__button, .editor .editor__sidebarExtra .editor__button {
        color: var(--sidebarButtonColor);
        background: var(--sidebarButtonBackground);
        border: 1px solid var(--sidebarButtonBorderColor);
        border-radius: var(--sidebarButtonBorderRadius); }
        .editor .editor__sidebar .editor__button .editor__icon, .editor .editor__sidebarExtra .editor__button .editor__icon {
          color: var(--sidebarButtonIconColor); }
        .editor .editor__sidebar .editor__button:hover, .editor .editor__sidebarExtra .editor__button:hover {
          color: var(--sidebarButtonColorHover);
          background: var(--sidebarButtonBackgroundHover);
          border-color: var(--sidebarButtonBorderColorHover); }
          .editor .editor__sidebar .editor__button:hover .editor__icon, .editor .editor__sidebarExtra .editor__button:hover .editor__icon {
            color: var(--sidebarButtonIconColorHover); }
    .editor .editor__sidebarExtra {
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 100%;
      -webkit-transform: translateX(100%);
          -ms-transform: translateX(100%);
              transform: translateX(100%);
      transition: -webkit-transform .8s ease;
      transition: transform .8s ease;
      transition: transform .8s ease, -webkit-transform .8s ease;
      overflow-y: auto;
      overflow-x: clip;
      box-sizing: border-box;
      background: var(--sidebarBackground);
      color: var(--sidebarColor); }
      @media (max-width: 800px) {
        .editor .editor__sidebarExtra {
          width: 200px; } }
      .editor .editor__sidebarExtra--open {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; }
  .editor .editor__bloc {
    padding: 5px;
    margin: 10px 0;
    border: 1px solid var(--sidebarBlockBorderColor);
    background: var(--sidebarBlockBackground);
    color: var(--sidebarBlockColor); }
    .editor .editor__bloc:first-child {
      margin-top: 0; }
    .editor .editor__bloc:last-child {
      margin-bottom: 0; }
    .editor .editor__bloc .editor__blocTitle {
      color: var(--sidebarButtonColor);
      background: var(--sidebarButtonBackground);
      border: 1px solid var(--sidebarButtonBorderColor);
      margin: -5px -5px 2px;
      padding: 7px;
      min-height: 20px;
      text-transform: uppercase;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-weight: bold; }
      .editor .editor__bloc .editor__blocTitle--buttonOnly {
        padding: 0;
        border: none; }
        .editor .editor__bloc .editor__blocTitle--buttonOnly .editor__button {
          text-transform: inherit;
          -webkit-flex: 1 !important;
              -ms-flex: 1 !important;
                  flex: 1 !important;
          padding: 7px !important;
          border-radius: 0 !important;
          font-size: inherit;
          font-weight: inherit; }
          .editor .editor__bloc .editor__blocTitle--buttonOnly .editor__button--withIconRight {
            -webkit-justify-content: space-between;
                -ms-flex-pack: justify;
                    justify-content: space-between; }
            .editor .editor__bloc .editor__blocTitle--buttonOnly .editor__button--withIconRight .editor__icon {
              background: #ffffff;
              border: .2rem solid transparent;
              border-radius: 50%; }
          .editor .editor__bloc .editor__blocTitle--buttonOnly .editor__button--active {
            color: var(--sidebarButtonColorHover);
            background: var(--sidebarButtonBackgroundHover);
            border-color: var(--sidebarButtonBorderColorHover); }
    .editor .editor__bloc .editor__blocSubtitle {
      padding: 2px;
      font-weight: bold; }
    .editor .editor__bloc .editor__blocSeparator {
      border-top: 1px solid var(--sidebarBlockBorderColor);
      margin: 5px 2px; }
  .editor .editor__funcGroup {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 2px; }
    .editor .editor__funcGroup input:disabled,
    .editor .editor__funcGroup select:disabled {
      cursor: not-allowed !important;
      pointer-events: none; }
    .editor .editor__funcGroup--save, .editor .editor__funcGroup--sizeInfo {
      margin-left: auto; }
    .editor .editor__funcGroup--sizeInfo {
      -webkit-align-self: center;
          -ms-flex-item-align: center;
                  -ms-grid-row-align: center;
              align-self: center;
      padding: 5px 10px;
      background-color: #eceff1;
      border-radius: 4px;
      margin-top: 5px;
      margin-bottom: 5px; }
    .editor .editor__funcGroup--size label, .editor .editor__funcGroup--imageSize label, .editor .editor__funcGroup--imageAngle label, .editor .editor__funcGroup--clipPathRadius label, .editor .editor__funcGroup--clipPathSize label {
      margin: 2px 5px 2px;
      line-height: 2; }
      .editor .editor__funcGroup--size label:first-child, .editor .editor__funcGroup--imageSize label:first-child, .editor .editor__funcGroup--imageAngle label:first-child, .editor .editor__funcGroup--clipPathRadius label:first-child, .editor .editor__funcGroup--clipPathSize label:first-child {
        margin-left: 0; }
      .editor .editor__funcGroup--size label:last-child, .editor .editor__funcGroup--imageSize label:last-child, .editor .editor__funcGroup--imageAngle label:last-child, .editor .editor__funcGroup--clipPathRadius label:last-child, .editor .editor__funcGroup--clipPathSize label:last-child {
        margin-right: 0; }
    .editor .editor__funcGroup--size input[type='number'], .editor .editor__funcGroup--imageSize input[type='number'], .editor .editor__funcGroup--imageAngle input[type='number'], .editor .editor__funcGroup--clipPathRadius input[type='number'], .editor .editor__funcGroup--clipPathSize input[type='number'] {
      width: 65px;
      font-size: 12px;
      padding: 0 0 0 5px;
      line-height: inherit;
      margin-left: 3px; }
    .editor .editor__funcGroup--size span, .editor .editor__funcGroup--imageSize span, .editor .editor__funcGroup--imageAngle span, .editor .editor__funcGroup--clipPathRadius span, .editor .editor__funcGroup--clipPathSize span {
      margin: 2px 0;
      line-height: 2; }
    .editor .editor__funcGroup--bgColor label {
      margin: 2px 5px 2px;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .editor .editor__funcGroup--bgColor label:first-child {
        margin-left: 0; }
      .editor .editor__funcGroup--bgColor label:last-child {
        margin-right: 0; }
    .editor .editor__funcGroup--bgColor input[type='color'] {
      width: 25px;
      height: 24px;
      margin-left: 5px;
      cursor: pointer; }
      .editor .editor__funcGroup--bgColor input[type='color']:disabled {
        display: none; }
      .editor .editor__funcGroup--bgColor input[type='color']::-webkit-color-swatch-wrapper {
        padding: 3px;
        background-color: #ffffff; }
      .editor .editor__funcGroup--bgColor input[type='color']::-webkit-color-swatch {
        border: none;
        border-radius: 2px; }
    .editor .editor__funcGroup--clipPath {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .editor .editor__funcGroup--clipPath label {
        margin: 2px 5px 2px; }
        .editor .editor__funcGroup--clipPath label:first-child {
          margin-left: 0; }
        .editor .editor__funcGroup--clipPath label:last-child {
          margin-right: 0; }
      .editor .editor__funcGroup--clipPath .editor__button {
        -webkit-flex-grow: 0;
            -ms-flex-positive: 0;
                flex-grow: 0; }
  .editor .editor__button {
    cursor: pointer;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 5px 10px;
    outline: none;
    box-shadow: none;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease; }
    .editor .editor__button:disabled {
      opacity: .5;
      cursor: not-allowed;
      pointer-events: none; }
    .editor .editor__button--withIcon .editor__icon {
      margin-right: 10px; }
    .editor .editor__button--withIconRight .editor__icon {
      margin-left: 10px; }
    .editor .editor__button--withIcon .editor__icon, .editor .editor__button--withIconRight .editor__icon {
      height: 15px;
      width: 15px; }
    .editor .editor__button--iconOnly {
      font-size: 0 !important;
      line-height: 0 !important;
      padding: 5px; }
      .editor .editor__button--iconOnly .editor__icon {
        height: 25px;
        width: 25px;
        margin-right: 0;
        margin-left: 0; }
    .editor .editor__button--save {
      font-weight: bold;
      box-shadow: inset 0 0 1px 1px #fff;
      background: var(--saveButtonBackground) !important;
      color: var(--saveButtonColor) !important;
      border: 1px solid var(--saveButtonBorderColor) !important;
      border-radius: var(--saveButtonBorderRadius) !important; }
      .editor .editor__button--save .editor__icon {
        height: 20px;
        width: 20px;
        color: var(--saveButtonIconColor) !important; }
      .editor .editor__button--save:hover {
        background: var(--saveButtonBackgroundHover) !important;
        color: var(--saveButtonColorHover) !important;
        border-color: var(--saveButtonBorderColorHover) !important; }
        .editor .editor__button--save:hover .editor__icon {
          color: var(--saveButtonIconColorHover) !important; }
  .editor .editor__icon {
    position: relative;
    display: inline-block;
    height: 25px;
    width: 25px;
    transition: color .3s ease; }
    .editor .editor__icon:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: currentColor;
      -webkit-mask-repeat: no-repeat;
              mask-repeat: no-repeat;
      -webkit-mask-size: contain;
              mask-size: contain;
      -webkit-mask-position: center;
              mask-position: center; }
    .editor .editor__icon--next:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/next.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/next.svg); }
    .editor .editor__icon--controls:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/controls.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/controls.svg); }
    .editor .editor__icon--mirror-h:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/mirror-h.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/mirror-h.svg); }
    .editor .editor__icon--mirror-v:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/mirror-v.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/mirror-v.svg); }
    .editor .editor__icon--rotate90:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/rotate90.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/rotate90.svg); }
    .editor .editor__icon--zoom-in:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/zoom-in.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/zoom-in.svg); }
    .editor .editor__icon--zoom-out:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/zoom-out.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/zoom-out.svg); }
    .editor .editor__icon--center-view:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/center-view.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/center-view.svg); }
    .editor .editor__icon--undo:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/undo.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/undo.svg); }
    .editor .editor__icon--redo:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/redo.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/redo.svg); }
    .editor .editor__icon--error:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/error.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/error.svg); }
    .editor .editor__icon--check:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/check.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/check.svg); }
    .editor .editor__icon--grab:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/grab.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/grab.svg); }
    .editor .editor__icon--drag:before {
      -webkit-mask-image: url(../../../../images/plugins/fileupload/editor/drag.svg);
              mask-image: url(../../../../images/plugins/fileupload/editor/drag.svg); }
  .editor label.disabled {
    pointer-events: none; }
  .editor label input[type='checkbox'] {
    margin-right: 5px; }
  .editor select {
    width: auto; }
