﻿/*Rendre BlazoredModal dragable*/
/* https://github.com/Blazored/Modal/issues/243 */
.blazored-modal {
  background-color: transparent !important;
  border-width: 0px !important;
  box-shadow: none !important;
  padding: 0px !important;
}

.blazored-modal-draggable {
  position: absolute;
  display: flex;
  z-index: 102;
  flex-direction: column;
}

.blazored-modal-focus-trap {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.bm-container {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.blazored-modal {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #fff;
  padding: 1.5rem;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  margin: 1.75rem;
}

.size-small {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.size-medium {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.size-large {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.size-extra-large {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.size-automatic {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.bm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 2rem 0;
}

.bm-title {
  margin-bottom: 0;
}

.bm-close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
}

.position-topleft .blazored-modal {
  margin-left: 1.75rem;
}

.position-topright .blazored-modal {
  margin-right: 1.75rem;
}

.position-bottomleft .blazored-modal {
  position: absolute;
  bottom: 0;
  left: 1.75rem;
}

.position-bottomright .blazored-modal {
  position: absolute;
  bottom: 0;
  right: 1.75rem;
}

.position-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fade-in {
  animation: 300ms ease-out 0s ModalFadeIn;
}

.fade-out {
  animation: 300ms ease-out 0s ModalFadeOut;
  opacity: 0;
}

@keyframes ModalFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ModalFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Pour aligner le spin dans le bouton */
.ant-spin-nested-loading > div > .ant-spin {
  top: 10px !important;
}

.ant-divider-horizontal {
  margin: 0px 0px;
}

.dxbl-fl-item .ant-divider-horizontal.ant-divider-with-text {
  margin-bottom: 0px;
  margin-top: 0px;
}

/*Modification du badge du compteur des notifications*/
.ant-badge-multiple-words {
  padding: 0px 4px;
}

.ant-badge-count {
  right: 2px;
}

.ant-drawer-mask {
  display: none;
}

.ant-divider-inner-text {
  font-weight: bold;
}

.ant-result-content {
  text-align: center;
}

.ant-popover-inner {
  border-radius: 6px;
}

.ant-popover-title {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 10px 15px;
  font-size: 1rem;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/*Pour enlever la coche verte lorsqu'un champ est valide*/
.dxbl-text-edit.valid.modified .dxbl-edit-validation-status {
  display: none !important;
}

.dx-menu-title {
  padding-left: 0px !important;
}

.dxbl-menu {
  border-radius: unset;
}

.dxbl-tabs-content-panel {
  padding-top: 10px;
}
.dxbl-tabs-content-panel .remove-margintop {
  margin-top: -10px;
}

.dxbl-ribbon .dxbl-tabs-content-panel {
  padding-top: 0px;
}

.dxbl-btn-secondary .dxbl-btn-text-secondary {
  --dxbl-btn-bg: #212529;
  --dxbl-btn-color: white;
  --dxbl-btn-border-color: #212529;
  --dxbl-btn-active-bg: #212529;
  --dxbl-btn-active-color: white;
  --dxbl-btn-active-border-color: #4e555b;
  --dxbl-btn-hover-bg: #5a6268;
  --dxbl-btn-hover-color: white;
  --dxbl-btn-hover-border-color: #5a6268;
  --dxbl-btn-disabled-bg: #212529;
  --dxbl-btn-disabled-color: white;
  --dxbl-btn-disabled-border-color: #212529;
  --dxbl-btn-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  --dxbl-btn-disabled-opacity: 0.65;
  --dxbl-btn-focus-shadow-color: rgba(108, 117, 125, 0.5);
  --dxbl-btn-focus-shadow-spread: 0.125rem;
  --dxbl-btn-focus-shadow-blur: 0rem;
}

.dxbl-btn-secondary {
  --dxbl-btn-bg: #212529;
  --dxbl-btn-color: white;
  --dxbl-btn-border-color: #212529;
  --dxbl-btn-active-bg: #212529;
  --dxbl-btn-active-color: white;
  --dxbl-btn-active-border-color: #4e555b;
  --dxbl-btn-hover-bg: #5a6268;
  --dxbl-btn-hover-color: white;
  --dxbl-btn-hover-border-color: #5a6268;
  --dxbl-btn-disabled-bg: #212529;
  --dxbl-btn-disabled-color: white;
  --dxbl-btn-disabled-border-color: #212529;
  --dxbl-btn-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2);
  --dxbl-btn-disabled-opacity: 0.65;
  --dxbl-btn-focus-shadow-color: rgba(108, 117, 125, 0.5);
  --dxbl-btn-focus-shadow-spread: 0.125rem;
  --dxbl-btn-focus-shadow-blur: 0rem;
}

.dxbl-btn-text-warning {
  --dxbl-btn-color: #212529 !important;
}

.dxbl-btn-text-danger {
  --dxbl-btn-color: #212529 !important;
}

.dxbl-btn-text-success {
  --dxbl-btn-color: #212529!important;
}

.dxbl-btn-text-primary {
  --dxbl-btn-color: #212529 !important;
}

.dxbl-toolbar > .dxbl-btn-toolbar .dxbl-toolbar-btn.dxbl-btn.dxbl-btn-text-secondary { /*, .dxbl-toolbar-btn*/
  --dxbl-btn-hover-bg: #5a6268;
  --dxbl-btn-hover-color: white;
}

.dxbl-btn:disabled {
  --dxbl-btn-disabled-color: #5a6268;
}

/*.dxbl-btn-toolbar > .dxbl-btn-group > .dxbl-btn.dxbl-btn-text-secondary {
    color: #212529;
}*/
/* TimeEdit sans bouton de modification*/
.fw-dx-timeedit-no-button div.dxbs-btn-group.dxbs-input-group-append > button.btn.btn-secondary.dxbs-editor-dropdown-button {
  display: none;
}

.fw-fli-radio-horizontal .dxbl-fl-ctrl {
  display: inline-flex !important;
}
.fw-fli-radio-horizontal .dxbl-checkbox {
  padding-right: 10px;
}

.dxbl-fl .dxbl-fl-gd {
  margin-bottom: 0px !important;
}

.dxbl-grid {
  --dxbl-grid-editor-cell-padding-y: 1px;
  --dxbl-grid-text-cell-padding-y:1px;
}

.dxbl-grid-command-cell {
  display: table-cell;
}
.dxbl-grid-command-cell .dxbl-toolbar {
  padding: 2px;
}

.dxbl-grid-filter-row .dxbl-grid-command-cell {
  display: block !important;
}

.fw-fileinput-upload .dxbl-upload {
  padding-top: 5px !important;
}
.fw-fileinput-upload .dxbl-upload-file-list-view {
  padding-top: 0px !important;
}
.fw-fileinput-upload .dxbl-upload-panel {
  display: none !important;
}

.fw-dxlyi-emptycaption .dxbl-fl-ctrl-nc {
  margin-top: 0px !important;
}

.dxbl-tabs-top > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item {
  border: 1px solid transparent !important;
  position: relative;
}
.dxbl-tabs-top > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item:hover::before {
  background-color: transparent !important;
}
.dxbl-tabs-top > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item:hover:not(.dxbl-active)::after {
  --dxbl-tabs-tab-bg: var(--bs-primary);
}
.dxbl-tabs-top > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item:not(.dxbl-tabs-tmpl)::after {
  content: "";
  position: absolute;
  background-color: var(--dxbl-tabs-tab-bg);
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0;
  height: 0.2rem;
  border-radius: 0.2rem;
  -webkit-transition: background-color 0.1s, top 0.2s, left 0.2s, bottom 0.2s, right 0.2s;
  -o-transition: background-color 0.1s, top 0.2s, left 0.2s, bottom 0.2s, right 0.2s;
  transition: background-color 0.1s, top 0.2s, left 0.2s, bottom 0.2s, right 0.2s;
}
.dxbl-tabs-top > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item.dxbl-active {
  color: unset !important;
  --dxbl-tabs-tab-bg: var(--bs-secondary);
}
.dxbl-tabs-top > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item.dxbl-active:hover::after {
  left: 0;
  right: 0;
}

.dxbl-tabs-left > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item {
  border: 1px solid transparent !important;
  position: relative;
}
.dxbl-tabs-left > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item:hover::before {
  background-color: transparent !important;
}
.dxbl-tabs-left > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item:hover:not(.dxbl-active)::after {
  --dxbl-tabs-tab-bg: var(--bs-primary);
}
.dxbl-tabs-left > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item:not(.dxbl-tabs-tmpl)::after {
  content: "";
  position: absolute;
  background-color: var(--dxbl-tabs-tab-bg);
  left: 0;
  bottom: 0.5rem;
  top: 0.5rem;
  width: 0.2rem;
  border-radius: 0.2rem;
  -webkit-transition: background-color 0.1s, top 0.2s, left 0.2s, bottom 0.2s, right 0.2s;
  -o-transition: background-color 0.1s, top 0.2s, left 0.2s, bottom 0.2s, right 0.2s;
  transition: background-color 0.1s, top 0.2s, left 0.2s, bottom 0.2s, right 0.2s;
}
.dxbl-tabs-left > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item.dxbl-active {
  color: unset !important;
  --dxbl-tabs-tab-bg: var(--bs-secondary);
}
.dxbl-tabs-left > .dxbl-tabs-tablist > .dxbl-scroll-viewer > .dxbl-scroll-viewer-content > ul > li > .dxbl-tabs-item.dxbl-active:hover::after {
  top: 0;
  bottom: 0;
}

.fwmp-overlay {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.fwmp-overlay-partial {
  background-color: rgba(0, 0, 0, 0.2) !important;
  left: auto !important;
  right: 0px !important;
  width: calc(100% - 67px) !important;
  z-index: 900;
}

.fwmp {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25) !important;
  background-color: white;
  border-radius: 6px !important;
  margin: 0px !important;
  padding: 0px !important;
  border-width: 0px !important;
}
.fwmp .fwmp-header {
  line-height: 1;
  padding: 15px;
  font-size: 1rem !important;
  font-weight: 500;
  width: 100% !important;
  border-bottom: solid 1px #ced4da;
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
  display: inline-flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}
.fwmp .fwmp-footer {
  border-top: solid 1px #ced4da;
  color: var(--bs-body-color);
  overflow: hidden;
  display: inline-flex;
  width: 100%;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  /*        &:not(.fwmp-footer-btn) {
              display: inline-flex;
              width: 100%;
          }
  */
  /*        &.fwmp-footer-btn {
      display: flex;
      justify-content: flex-end;
      width: 100%;
  }*/
}
.fwmp .fwmp-footer .fwmp-footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  padding: 10px;
  width: 100%;
}
.fwmp .fwmp-footer .fwmp-footer-container .antblazor-overlay-trigger-wrapper {
  display: inline-flex;
  overflow-x: hidden;
  flex-shrink: 0;
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-btn {
  flex-shrink: 5;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  z-index: 4;
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-update {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: -50px;
  left: 0;
  padding: 9px 10px 10px 10px;
  z-index: 3;
  border-top: solid 1px #ced4da;
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-update.info {
  background-color: rgb(138.4482758621, 204.0086206897, 241.5517241379);
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-update.hide {
  animation-name: fadeHide;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  opacity: 0;
  top: -50px;
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-update.show {
  animation-name: fadeShow;
  animation-duration: 0.2s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  opacity: 1;
  top: 0px;
}
@keyframes fadeHide {
  0% {
    opacity: 1;
    top: 0px;
  }
  50% {
    opacity: 0.5;
  }
  99% {
    top: 0px;
  }
  100% {
    opacity: 0;
    top: -50px;
  }
}
@keyframes fadeShow {
  0% {
    opacity: 0;
    top: 0px;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-update .fwmp-footer-container-update {
  display: inline-flex;
  width: 200px;
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-update .fwmp-footer-container-update .message-info {
  align-self: center;
  margin-right: 5px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  color: inherit;
}
.fwmp .fwmp-footer .fwmp-footer-container .fwmp-footer-container-common {
  width: 100%;
  display: flex;
}
.fwmp .fwmp-footer.default {
  background-color: var(--bs-body-bg);
}
.fwmp .fwmp-footer.success {
  background-color: rgb(104.0343347639, 230.9656652361, 193.4120171674);
}
.fwmp .fwmp-footer.warning {
  background-color: rgb(253.8607594937, 181.5189873418, 121.1392405063);
}
.fwmp .fwmp-footer.error {
  background-color: #ff9999;
}
.fwmp .fwmp-footer .icon-info {
  align-self: center;
  margin-right: 5px;
}
.fwmp .fwmp-footer-btn > * {
  margin: 0 0 0 0.5rem;
  white-space: nowrap;
}
.fwmp .fwmp-footer-btn > .btn {
  font-size: 1rem !important;
  min-width: 80px;
  z-index: 999;
}
.fwmp .fwmp-alert-message {
  margin: 0px;
  display: block;
}

.fwmp-content {
  padding: 10px;
}
.fwmp-content .fwmp-editcontent-flex {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
}
.fwmp-content .fwmp-editcontent-flex .dxbl-tabs {
  flex: 1;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.fwmp-content .fwmp-editcontent-flex .dxbl-tabs .dxbl-tabs-content-panel {
  flex: 1;
  overflow-y: hidden;
  overflow-x: clip;
}
.fwmp-content .fwmp-editcontent-flex .dxbl-tabs .dxbl-tabs-content-panel .dxbl-tabs-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

/*Pour le DxFormLayout prenne tout le hauteur*/
.fwmp .fwmp.fwmp-content .dxbs-fl {
  height: 100%;
}

.fwmp-alert .fwmp-content {
  min-width: 350px;
  min-height: 30px;
  max-width: 800px;
  max-height: 500px;
  padding: 10px;
}

/*
    Footer, sert ?
*/
.modal-footer {
  padding: 0.5rem !important;
}

.modal-footer > .btn {
  min-width: 80px;
  height: 35px;
  font-size: 1.1rem;
}

.fwmp > * {
  font-size: 0.87rem !important;
}

/*TAB*/
.fw-tabed-layoutitem, .fw-tabed-layoutgroup {
  padding: 0px !important;
}

.fw-tabed-layoutitem-left {
  padding-left: 0px !important;
}

.fw-tabed-layoutitem-right {
  padding-right: 0px !important;
}

.dxbs-fl .for-combo-with-overflow {
  /*position: unset !important;*/
}
.dxbs-fl .dxbs-fl-gt {
  /*position: unset !important;*/
}
.dxbs-fl .for-datepicker-with-overflow .dxbs-dm {
  /*position:fixed;*/
}

.fw-mp-button {
  min-width: 100px;
}

.fw-lyg-checkbox {
  margin-left: 5px;
}

.fw-mp-locker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.fwmp-layout-h100 {
  flex: 1 1 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.fwmp-layout-h100 .dxbl-row {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.fwmp-layoutitem-forlist {
  height: 100%;
  flex: 1 1 100%;
}
.fwmp-layoutitem-forlist .dxbl-fl-ctrl {
  margin-top: 0 !important;
  height: 100%;
}
.fwmp-layoutitem-forlist .dxbl-gridlayout {
  flex: 1 1 100%;
}

.dxbl-menu-bar .ant-avatar {
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.3);
}

.fwml-exception .dxbl-modal-content {
  border-radius: 3px !important;
}

.fwml-exception-body {
  overflow-y: auto;
  max-height: 400px;
}

.fwml-grid {
  height: 100vh;
}

.fwml-header {
  padding-right: 3px;
  width: 100%;
}

/*Pour mettre l'arrondi en haut a gauche*/
.fwml-content {
  padding-right: 3px;
  width: 100%;
  background-color: var(--fwml-menu-bgcolor);
}

#fw-content {
  background-color: white;
  border-top-left-radius: 10px;
}

.fwml-loader .dxbl-loading-panel-container {
  z-index: 1100 !important;
}

.fwnt-drawer.ant-drawer {
  z-index: 900 !important;
}
.fwnt-drawer .ant-drawer-content {
  overflow: unset;
}
.fwnt-drawer .ant-drawer-content-wrapper {
  -webkit-box-shadow: -7px 0px 6px -2px rgba(0, 0, 0, 0.14);
  box-shadow: -7px 0px 6px -2px rgba(0, 0, 0, 0.14);
}
.fwnt-drawer .ant-drawer-header {
  background-color: var(--fwml-header-bgcolor);
  padding: 11px 12px;
  min-height: 51px;
}
.fwnt-drawer .ant-drawer-header .ant-drawer-title {
  font-size: 20px;
  color: var(--fwml-header-color);
  background-color: var(--fwml-header-bgcolor);
  font-weight: 400;
}
.fwnt-drawer .ant-drawer-header .ant-drawer-close {
  /*padding: 15px;*/
  margin-right: 0px;
  color: var(--fwml-header-color);
}
.fwnt-drawer .ant-drawer-header .ant-notification-notice-message {
  background-color: #1890ff;
  border-radius: 10px;
}
.fwnt-drawer .ant-drawer-header .ant-notification-notice-icon {
  color: white;
}
.fwnt-drawer .ant-drawer-body {
  padding: 0px;
  overflow: unset;
  display: flex;
  flex-direction: column;
}

.ant-drawer-mask {
  background-color: unset;
}

.ant-drawer.ant-drawer-open .ant-drawer-mask {
  animation: unset;
  opacity: unset;
}

.fwnt-items {
  top: unset !important;
  position: relative !important;
  overflow-y: auto;
  flex: 1 1 auto;
}
.fwnt-items::-webkit-scrollbar {
  width: 5px;
  background-color: var(--dxbl-dropdown-bg);
}
.fwnt-items::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--bs-primary);
}

.fwnt-item {
  margin: unset;
  margin-bottom: var(--dxbl-toast-margin-top);
  border: 1px solid var(--dxbl-toast-accent-line-color);
}
.fwnt-item .dxbl-btn {
  --dxbl-btn-toolbar-spacing: 0 !important;
}
.fwnt-item .fwnt-traitement {
  padding-top: 10px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
}

.dxbl-toast-portal {
  padding-right: 0px;
}
.dxbl-toast-portal .dxbl-toast {
  --dxbl-toast-box-shadow: 0 10px 6px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  margin: 15px 15px;
}

.dxbl-toast-template {
  display: block !important;
}

.fwnt-item-template .fwnt-body {
  font-size: 15px;
  margin-bottom: 5px;
}
.fwnt-item-template .fwnt-footer {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.fwnt-datecreate {
  font-size: 0.8rem;
  color: var(--bs-gray-500);
  align-self: center;
}

.fwnt-tlb {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.fwml-title {
  width: 50px;
}

/*.fwlogin-content .error {
    padding: 5px;
    color: black;
    background-color: lightcoral;
    border: solid 1px lightcoral;
    width: 100%;
    font-weight: bold;
    display: flex;
}*/
.fwlogin-content {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.fwlogin-content a {
  text-decoration-line: underline !important;
  cursor: pointer !important;
}

.fwlogin-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  width: 500px;
}

.fwlogin-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.fwlogin-title {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: 0;
  font-weight: 400;
  border-bottom: 1px solid lightgrey;
}

.fwlogin-align-end .dxbl-fl-ctrl-nc {
  display: inline-flex;
  justify-content: flex-end;
}

.fwlogin-align-center {
  align-self: center;
}

.fwlogin-cnx-button {
  min-width: 150px;
}

.fwlogin-button {
  min-width: 100px;
}

.fwlogin-password-info {
  padding-left: 0px;
}
.fwlogin-password-info .antblazor-overlay-trigger-wrapper {
  display: block !important;
}

.fwlogin-message {
  border-top: 1px solid lightgray;
  margin-top: 10px;
  padding-top: 10px;
}

/**/
.icon-14 {
  width: 14px;
  height: 14px;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-48 {
  width: 48px;
  height: 48px;
}

.fw-icon-3dot {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Emore_horiz icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M341.33,512c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33zM853.33,512c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33zM597.33,512c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Emore_horiz icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M341.33,512c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33zM853.33,512c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33zM597.33,512c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-add {
  -webkit-mask-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,1024,1024"><!-- Color names: color-1, color-2, color-3, color-4 --><desc>plus icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH</desc><g fill="none" fill-rule="nonzero" style="mix-blend-mode: normal"><g color="%23546e7a" class="color-1"><path d="M96,384h288v-288c0,-17.63 14.38,-32 32,-32h192c17.63,0 32,14.37 32,32v288h288c17.62,0 32,14.37 32,32v192c0,17.62 -14.38,32 -32,32h-288v288c0,17.62 -14.37,32 -32,32h-192c-17.63,0 -32,-14.38 -32,-32v-288h-288c-17.62,0 -32,-14.38 -32,-32v-192c0,-17.63 14.38,-32 32,-32z" fill="currentColor"/></g></g></svg>');
  mask-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,1024,1024"><!-- Color names: color-1, color-2, color-3, color-4 --><desc>plus icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH</desc><g fill="none" fill-rule="nonzero" style="mix-blend-mode: normal"><g color="%23546e7a" class="color-1"><path d="M96,384h288v-288c0,-17.63 14.38,-32 32,-32h192c17.63,0 32,14.37 32,32v288h288c17.62,0 32,14.37 32,32v192c0,17.62 -14.38,32 -32,32h-288v288c0,17.62 -14.37,32 -32,32h-192c-17.63,0 -32,-14.38 -32,-32v-288h-288c-17.62,0 -32,-14.38 -32,-32v-192c0,-17.63 14.38,-32 32,-32z" fill="currentColor"/></g></g></svg>');
  background-color: currentColor;
}

.fw-icon-arrow-curve-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(-1,-0,0,-1,1024,1024)'%3E%3Cpath d='M293.5,191.31L377.36,192C383.97,192.05 389.62,195.77 392.14,201.88C394.67,207.98 393.34,214.64 388.68,219.31L320,288L384,288C489.79,288 585.8,331.11 655.34,400.66C724.89,470.2 768,566.21 768,672L768,896L640,896L640,672C640,601.54 611.24,537.55 564.84,491.16C518.45,444.76 454.46,416 384,416L320,416L388.68,484.69C393.34,489.35 394.67,496.02 392.15,502.12C389.62,508.23 383.94,512.05 377.36,512L293.5,511.31C275.9,511.16 260.68,505 248.24,492.56L129.62,373.93C117.19,361.51 117.18,341.12 129.62,328.68L248.24,210.05C260.7,197.6 275.87,191.16 293.5,191.31Z' style='fill:rgb(3,169,244);fill-rule:nonzero;'/%3E%3C/g%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(-1,-0,0,-1,1024,1024)'%3E%3Cpath d='M293.5,191.31L377.36,192C383.97,192.05 389.62,195.77 392.14,201.88C394.67,207.98 393.34,214.64 388.68,219.31L320,288L384,288C489.79,288 585.8,331.11 655.34,400.66C724.89,470.2 768,566.21 768,672L768,896L640,896L640,672C640,601.54 611.24,537.55 564.84,491.16C518.45,444.76 454.46,416 384,416L320,416L388.68,484.69C393.34,489.35 394.67,496.02 392.15,502.12C389.62,508.23 383.94,512.05 377.36,512L293.5,511.31C275.9,511.16 260.68,505 248.24,492.56L129.62,373.93C117.19,361.51 117.18,341.12 129.62,328.68L248.24,210.05C260.7,197.6 275.87,191.16 293.5,191.31Z' style='fill:rgb(3,169,244);fill-rule:nonzero;'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-color: currentColor;
}

.fw-icon-arrow-down {
  -webkit-mask-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,1024,1024"><!-- Color names: color-1, color-2, color-3, color-4 --><desc>navigate_down icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH</desc><g fill="none" fill-rule="nonzero" style="mix-blend-mode: normal"><g color="%23546e7a" class="color-1"><path d="M127.33,353.61l90.51,-90.51c12.46,-12.46 32.8,-12.46 45.26,0l248.9,248.9l248.9,-248.9c12.46,-12.46 32.79,-12.46 45.25,0l90.52,90.51c12.46,12.46 12.45,32.8 0,45.25l-362.04,362.04c-12.46,12.46 -32.8,12.47 -45.26,0l-362.04,-362.04c-12.46,-12.46 -12.46,-32.79 0,-45.25z" fill="currentColor"/></g></g></svg>');
  mask-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,1024,1024"><!-- Color names: color-1, color-2, color-3, color-4 --><desc>navigate_down icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH</desc><g fill="none" fill-rule="nonzero" style="mix-blend-mode: normal"><g color="%23546e7a" class="color-1"><path d="M127.33,353.61l90.51,-90.51c12.46,-12.46 32.8,-12.46 45.26,0l248.9,248.9l248.9,-248.9c12.46,-12.46 32.79,-12.46 45.25,0l90.52,90.51c12.46,12.46 12.45,32.8 0,45.25l-362.04,362.04c-12.46,12.46 -32.8,12.47 -45.26,0l-362.04,-362.04c-12.46,-12.46 -12.46,-32.79 0,-45.25z" fill="currentColor"/></g></g></svg>');
  background-color: currentColor;
}

.fw-icon-arrow-left {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Earrow_left icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='%2303a9f4' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M581.8,250.2l-164.69,164.69h512c17.63,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-512l164.69,164.68c4.67,4.68 6,11.33 3.47,17.44c-2.53,6.11 -8.18,9.88 -14.78,9.88h-206.37c-17.62,0 -32.8,-6.29 -45.26,-18.75l-246.62,-246.63c-12.46,-12.46 -12.47,-32.79 0,-45.25l246.62,-246.63c12.47,-12.46 27.63,-18.74 45.26,-18.74h206.37c6.61,0 12.25,3.77 14.78,9.87c2.53,6.11 1.2,12.76 -3.47,17.44z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Earrow_left icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='%2303a9f4' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M581.8,250.2l-164.69,164.69h512c17.63,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-512l164.69,164.68c4.67,4.68 6,11.33 3.47,17.44c-2.53,6.11 -8.18,9.88 -14.78,9.88h-206.37c-17.62,0 -32.8,-6.29 -45.26,-18.75l-246.62,-246.63c-12.46,-12.46 -12.47,-32.79 0,-45.25l246.62,-246.63c12.47,-12.46 27.63,-18.74 45.26,-18.74h206.37c6.61,0 12.25,3.77 14.78,9.87c2.53,6.11 1.2,12.76 -3.47,17.44z'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-arrow-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Earrow_right icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='%2303a9f4' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M442.2,771.58l164.69,-164.69h-512c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.38,-32 32,-32h512l-164.69,-164.69c-4.67,-4.67 -5.99,-11.33 -3.47,-17.44c2.53,-6.1 8.18,-9.87 14.79,-9.87h206.36c17.63,0 32.8,6.28 45.26,18.74l246.62,246.63c12.47,12.46 12.47,32.79 0,45.25l-246.62,246.63c-12.47,12.46 -27.63,18.75 -45.26,18.75h-206.36c-6.61,0 -12.26,-3.77 -14.79,-9.88c-2.52,-6.1 -1.2,-12.76 3.47,-17.43z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Earrow_right icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='%2303a9f4' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M442.2,771.58l164.69,-164.69h-512c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.38,-32 32,-32h512l-164.69,-164.69c-4.67,-4.67 -5.99,-11.33 -3.47,-17.44c2.53,-6.1 8.18,-9.87 14.79,-9.87h206.36c17.63,0 32.8,6.28 45.26,18.74l246.62,246.63c12.47,12.46 12.47,32.79 0,45.25l-246.62,246.63c-12.47,12.46 -27.63,18.75 -45.26,18.75h-206.36c-6.61,0 -12.26,-3.77 -14.79,-9.88c-2.52,-6.1 -1.2,-12.76 3.47,-17.43z'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-arrow-up {
  -webkit-mask-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,1024,1024"><!-- Color names: color-1, color-2, color-3, color-4 --><desc>navigate_up icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH</desc><g fill="none" fill-rule="nonzero" style="mix-blend-mode: normal"><g color="%23546e7a" class="color-1"><path d="M127.33,625.14l362.04,-362.04c12.46,-12.47 32.8,-12.46 45.26,0l362.04,362.04c12.45,12.45 12.46,32.79 0,45.25l-90.52,90.51c-12.46,12.46 -32.79,12.46 -45.25,0l-248.9,-248.9l-248.9,248.9c-12.46,12.46 -32.8,12.46 -45.26,0l-90.51,-90.51c-12.46,-12.46 -12.46,-32.79 0,-45.25z" fill="currentColor"/></g></g></svg>');
  mask-image: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0,1024,1024"><!-- Color names: color-1, color-2, color-3, color-4 --><desc>navigate_up icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH</desc><g fill="none" fill-rule="nonzero" style="mix-blend-mode: normal"><g color="%23546e7a" class="color-1"><path d="M127.33,625.14l362.04,-362.04c12.46,-12.47 32.8,-12.46 45.26,0l362.04,362.04c12.45,12.45 12.46,32.79 0,45.25l-90.52,90.51c-12.46,12.46 -32.79,12.46 -45.25,0l-248.9,-248.9l-248.9,248.9c-12.46,12.46 -32.8,12.46 -45.26,0l-90.51,-90.51c-12.46,-12.46 -12.46,-32.79 0,-45.25z" fill="currentColor"/></g></g></svg>');
  background-color: currentColor;
}

.fw-icon-calendar {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Ecalendar icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M833,480v416.41l-0.59,0.59h-640.82l-0.59,-0.59v-416.41zM513,591h62.03c0.52,-8.9 7.94,-16 16.97,-16h96c9.36,0 17,7.64 17,17v32c0,9.36 -7.64,17 -17,17h-80c-52.36,0 -95,42.64 -95,95v95h254v-62h-191.41l-0.59,-0.59v-32.41c0,-18.13 14.87,-33 33,-33h96c34.74,0 63,-28.26 63,-63v-64c0,-34.7 -28.3,-63 -63,-63c-42.67,0 -85.33,0 -128,0c-34.7,0 -63,28.3 -63,63zM257,575h63.41l0.59,0.59v192.82l-0.59,0.59h-63.41v62h190v-62h-63.41l-0.59,-0.59v-0.41c0,-85 0,-170 0,-255h-111c-8.26,0 -15,6.74 -15,15z' fill='%23ffffff' visibility='hidden'/%3E%3Cpath d='M576,768h192v64h-256v-96c0,-52.91 43.09,-96 96,-96h80c8.81,-0.03 16,-7.19 16,-16v-32c0,-8.81 -7.19,-16 -16,-16h-96c-8.81,0 -16,7.19 -16,16h-64v-16c0,-35.25 28.75,-64 64,-64c42.67,0 85.33,0 128,0c35.25,0 64,28.75 64,64v64c0,35.29 -28.71,64 -64,64h-96c-17.58,0 -32,14.42 -32,32zM272,512h112c0,85.33 0,170.67 0,256h64v64h-192v-64h64v-192h-64v-48c0,-8.81 7.19,-16 16,-16z' fill='%23607d8b'/%3E%3Cpath d='M896,480v416c0,35.25 -28.75,64 -64,64h-640c-35.25,0 -64,-28.75 -64,-64v-416h64v416h640v-416z' fill='%23607d8b'/%3E%3Cpath d='M896,224v224h-768v-224c0,-35.25 28.75,-64 64,-64v64c0,35.29 28.71,64 64,64h32c35.28,0 64,-28.71 64,-64c0,35.29 28.71,64 64,64h32c35.29,0 64,-28.71 64,-64c0,35.29 28.71,64 64,64h32c35.28,0 64,-28.71 64,-64c0,35.29 28.72,64 64,64h32c35.29,0 64,-28.71 64,-64v-64c35.25,0 64,28.75 64,64z' fill='%2303a9f4'/%3E%3Cpath d='M736,64h32c17.63,0 32,14.37 32,32v128c0,17.62 -14.37,32 -32,32h-32c-17.62,0 -32,-14.38 -32,-32v-128c0,-17.63 14.38,-32 32,-32zM256,64h32c17.62,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-32c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.37,-32 32,-32zM416,64h32c17.62,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-32c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.37,-32 32,-32zM576,64h32c17.62,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-32c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.37,-32 32,-32z' fill='%23607d8b'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Ecalendar icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M833,480v416.41l-0.59,0.59h-640.82l-0.59,-0.59v-416.41zM513,591h62.03c0.52,-8.9 7.94,-16 16.97,-16h96c9.36,0 17,7.64 17,17v32c0,9.36 -7.64,17 -17,17h-80c-52.36,0 -95,42.64 -95,95v95h254v-62h-191.41l-0.59,-0.59v-32.41c0,-18.13 14.87,-33 33,-33h96c34.74,0 63,-28.26 63,-63v-64c0,-34.7 -28.3,-63 -63,-63c-42.67,0 -85.33,0 -128,0c-34.7,0 -63,28.3 -63,63zM257,575h63.41l0.59,0.59v192.82l-0.59,0.59h-63.41v62h190v-62h-63.41l-0.59,-0.59v-0.41c0,-85 0,-170 0,-255h-111c-8.26,0 -15,6.74 -15,15z' fill='%23ffffff' visibility='hidden'/%3E%3Cpath d='M576,768h192v64h-256v-96c0,-52.91 43.09,-96 96,-96h80c8.81,-0.03 16,-7.19 16,-16v-32c0,-8.81 -7.19,-16 -16,-16h-96c-8.81,0 -16,7.19 -16,16h-64v-16c0,-35.25 28.75,-64 64,-64c42.67,0 85.33,0 128,0c35.25,0 64,28.75 64,64v64c0,35.29 -28.71,64 -64,64h-96c-17.58,0 -32,14.42 -32,32zM272,512h112c0,85.33 0,170.67 0,256h64v64h-192v-64h64v-192h-64v-48c0,-8.81 7.19,-16 16,-16z' fill='%23607d8b'/%3E%3Cpath d='M896,480v416c0,35.25 -28.75,64 -64,64h-640c-35.25,0 -64,-28.75 -64,-64v-416h64v416h640v-416z' fill='%23607d8b'/%3E%3Cpath d='M896,224v224h-768v-224c0,-35.25 28.75,-64 64,-64v64c0,35.29 28.71,64 64,64h32c35.28,0 64,-28.71 64,-64c0,35.29 28.71,64 64,64h32c35.29,0 64,-28.71 64,-64c0,35.29 28.71,64 64,64h32c35.28,0 64,-28.71 64,-64c0,35.29 28.72,64 64,64h32c35.29,0 64,-28.71 64,-64v-64c35.25,0 64,28.75 64,64z' fill='%2303a9f4'/%3E%3Cpath d='M736,64h32c17.63,0 32,14.37 32,32v128c0,17.62 -14.37,32 -32,32h-32c-17.62,0 -32,-14.38 -32,-32v-128c0,-17.63 14.38,-32 32,-32zM256,64h32c17.62,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-32c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.37,-32 32,-32zM416,64h32c17.62,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-32c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.37,-32 32,-32zM576,64h32c17.62,0 32,14.37 32,32v128c0,17.62 -14.38,32 -32,32h-32c-17.63,0 -32,-14.38 -32,-32v-128c0,-17.63 14.37,-32 32,-32z' fill='%23607d8b'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-chevron-left {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Echevron_left icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M462.08,512l195.41,195.84l-60.16,60.16l-256,-256l256,-256l60.16,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Echevron_left icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M462.08,512l195.41,195.84l-60.16,60.16l-256,-256l256,-256l60.16,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-chevron-right {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Echevron_right icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M682.67,512l-256,256l-60.16,-60.16l195.41,-195.84l-195.41,-195.84l60.16,-60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Echevron_right icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M682.67,512l-256,256l-60.16,-60.16l195.41,-195.84l-195.41,-195.84l60.16,-60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-check {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Enavigate_check icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M249.8,403.46l166.2,166.2l390.2,-390.2c12.47,-12.46 32.8,-12.46 45.26,0l89.08,89.08c12.46,12.46 12.46,32.79 0,45.26l-501.91,501.91c-12.47,12.46 -32.79,12.46 -45.26,0l-277.91,-277.91c-12.46,-12.47 -12.46,-32.8 0,-45.26l89.08,-89.08c12.46,-12.46 32.79,-12.46 45.26,0z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Enavigate_check icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M249.8,403.46l166.2,166.2l390.2,-390.2c12.47,-12.46 32.8,-12.46 45.26,0l89.08,89.08c12.46,12.46 12.46,32.79 0,45.26l-501.91,501.91c-12.47,12.46 -32.79,12.46 -45.26,0l-277.91,-277.91c-12.46,-12.47 -12.46,-32.8 0,-45.26l89.08,-89.08c12.46,-12.46 32.79,-12.46 45.26,0z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-close {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eclear icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M572.16,512l238.51,238.51l-60.16,60.16l-238.51,-238.51l-238.51,238.51l-60.16,-60.16l238.51,-238.51l-238.51,-238.51l60.16,-60.16l238.51,238.51l238.51,-238.51l60.16,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eclear icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M572.16,512l238.51,238.51l-60.16,60.16l-238.51,-238.51l-238.51,238.51l-60.16,-60.16l238.51,-238.51l-238.51,-238.51l60.16,-60.16l238.51,238.51l238.51,-238.51l60.16,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-collapse {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eunfold_less icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M512,426.67l-195.84,-195.84l60.59,-60.16l135.25,135.25l135.25,-135.25l60.59,60.16zM512,597.33l195.41,195.84l-60.16,60.16l-135.25,-135.25l-135.25,135.25l-60.59,-60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eunfold_less icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M512,426.67l-195.84,-195.84l60.59,-60.16l135.25,135.25l135.25,-135.25l60.59,60.16zM512,597.33l195.41,195.84l-60.16,60.16l-135.25,-135.25l-135.25,135.25l-60.59,-60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-column {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eview_column icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M426.67,213.33h213.33v554.67h-213.33zM896,213.33v554.67h-213.33v-554.67zM170.67,213.33h213.33v554.67h-213.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eview_column icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M426.67,213.33h213.33v554.67h-213.33zM896,213.33v554.67h-213.33v-554.67zM170.67,213.33h213.33v554.67h-213.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-copy {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Econtent_copy icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M896,298.67v597.33c0,46.93 -38.4,85.33 -85.33,85.33h-469.34c-46.93,0 -85.33,-38.4 -85.33,-85.33v-597.33c0,-46.93 38.4,-85.34 85.33,-85.34h469.34c46.93,0 85.33,38.41 85.33,85.34zM682.67,128h-512v597.33h-85.34v-597.33c0,-46.93 38.41,-85.33 85.34,-85.33h512zM810.67,298.67h-469.34v597.33h469.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Econtent_copy icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M896,298.67v597.33c0,46.93 -38.4,85.33 -85.33,85.33h-469.34c-46.93,0 -85.33,-38.4 -85.33,-85.33v-597.33c0,-46.93 38.4,-85.34 85.33,-85.34h469.34c46.93,0 85.33,38.41 85.33,85.34zM682.67,128h-512v597.33h-85.34v-597.33c0,-46.93 38.41,-85.33 85.34,-85.33h512zM810.67,298.67h-469.34v597.33h469.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-delete {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Edelete icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M256,298.67h512v512c0,46.93 -38.4,85.33 -85.33,85.33h-341.34c-46.93,0 -85.33,-38.4 -85.33,-85.33zM810.67,256h-597.34v-85.33h149.34l42.66,-42.67h213.34l42.66,42.67h149.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Edelete icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M256,298.67h512v512c0,46.93 -38.4,85.33 -85.33,85.33h-341.34c-46.93,0 -85.33,-38.4 -85.33,-85.33zM810.67,256h-597.34v-85.33h149.34l42.66,-42.67h213.34l42.66,42.67h149.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-drag {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='dx-column-chooser-drag' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 15v-2h2v2H9Zm0-6h2v2H9V9Zm0-4h2v2H9V5Zm0-4h2v2H9V1ZM5 13h2v2H5v-2Zm0-4h2v2H5V9Zm0-4h2v2H5V5Zm0-4h2v2H5V1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='dx-column-chooser-drag' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 15v-2h2v2H9Zm0-6h2v2H9V9Zm0-4h2v2H9V5Zm0-4h2v2H9V1ZM5 13h2v2H5v-2Zm0-4h2v2H5V9Zm0-4h2v2H5V5Zm0-4h2v2H5V1Z'/%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-edit {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eedit icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M599.89,264.11l160,160l-471.89,471.89h-160v-160zM805.55,378.45l-160,-160l78.08,-78.08c16.64,-16.64 43.52,-16.64 60.16,0l99.84,99.84c16.64,16.64 16.64,43.52 0,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eedit icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M599.89,264.11l160,160l-471.89,471.89h-160v-160zM805.55,378.45l-160,-160l78.08,-78.08c16.64,-16.64 43.52,-16.64 60.16,0l99.84,99.84c16.64,16.64 16.64,43.52 0,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-error {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:cc='http://creativecommons.org/ns%23' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' inkscape:version='1.0 (4035a4fb49, 2020-05-01)' sodipodi:docname='error.svg' id='svg10' viewBox='0,0,1024,1024' version='1.1'%3E%3Cmetadata id='metadata16'%3E%3Crdf:RDF%3E%3Ccc:Work rdf:about=''%3E%3Cdc:format%3Eimage/svg+xml%3C/dc:format%3E%3Cdc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage' /%3E%3C/cc:Work%3E%3C/rdf:RDF%3E%3C/metadata%3E%3Cdefs id='defs14' /%3E%3Csodipodi:namedview inkscape:current-layer='svg10' inkscape:window-maximized='0' inkscape:window-y='0' inkscape:window-x='0' inkscape:cy='537.06675' inkscape:cx='110.82373' inkscape:zoom='0.41503906' showgrid='false' id='namedview12' inkscape:window-height='974' inkscape:window-width='1385' inkscape:pageshadow='2' inkscape:pageopacity='0' guidetolerance='10' gridtolerance='10' objecttolerance='10' borderopacity='1' bordercolor='%23666666' pagecolor='%23ffffff' /%3E%3C!-- Color names: color-1 --%3E%3Cdesc id='desc2'%3Eerror icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg transform='matrix(1.006193,0,0,1,-0.52845177,0)' id='g8' style='mix-blend-mode:normal' fill-rule='nonzero' fill='none'%3E%3Cg id='g6' class='color-1' color='currentColor'%3E%3Cpath id='path4' fill='currentColor' d='M 938.67,512 C 938.67,747.52 747.52,938.67 512,938.67 276.48,938.67 85.33,747.52 85.33,512 85.33,276.48 276.48,85.33 512,85.33 747.52,85.33 938.67,276.48 938.67,512 Z m -384,-213.33 h -85.34 v 256 h 85.34 z m 0,341.33 h -85.34 v 85.33 h 85.34 z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:cc='http://creativecommons.org/ns%23' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' inkscape:version='1.0 (4035a4fb49, 2020-05-01)' sodipodi:docname='error.svg' id='svg10' viewBox='0,0,1024,1024' version='1.1'%3E%3Cmetadata id='metadata16'%3E%3Crdf:RDF%3E%3Ccc:Work rdf:about=''%3E%3Cdc:format%3Eimage/svg+xml%3C/dc:format%3E%3Cdc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage' /%3E%3C/cc:Work%3E%3C/rdf:RDF%3E%3C/metadata%3E%3Cdefs id='defs14' /%3E%3Csodipodi:namedview inkscape:current-layer='svg10' inkscape:window-maximized='0' inkscape:window-y='0' inkscape:window-x='0' inkscape:cy='537.06675' inkscape:cx='110.82373' inkscape:zoom='0.41503906' showgrid='false' id='namedview12' inkscape:window-height='974' inkscape:window-width='1385' inkscape:pageshadow='2' inkscape:pageopacity='0' guidetolerance='10' gridtolerance='10' objecttolerance='10' borderopacity='1' bordercolor='%23666666' pagecolor='%23ffffff' /%3E%3C!-- Color names: color-1 --%3E%3Cdesc id='desc2'%3Eerror icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg transform='matrix(1.006193,0,0,1,-0.52845177,0)' id='g8' style='mix-blend-mode:normal' fill-rule='nonzero' fill='none'%3E%3Cg id='g6' class='color-1' color='currentColor'%3E%3Cpath id='path4' fill='currentColor' d='M 938.67,512 C 938.67,747.52 747.52,938.67 512,938.67 276.48,938.67 85.33,747.52 85.33,512 85.33,276.48 276.48,85.33 512,85.33 747.52,85.33 938.67,276.48 938.67,512 Z m -384,-213.33 h -85.34 v 256 h 85.34 z m 0,341.33 h -85.34 v 85.33 h 85.34 z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-color: currentColor;
}

.fw-icon-expand {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eunfold_more icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M647.25,640l60.59,60.16l-195.84,195.84l-195.41,-195.84l60.16,-60.16l135.25,135.25zM376.75,384l-60.59,-60.16l195.84,-195.84l195.41,195.84l-60.16,60.16l-135.25,-135.25z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eunfold_more icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M647.25,640l60.59,60.16l-195.84,195.84l-195.41,-195.84l60.16,-60.16l135.25,135.25zM376.75,384l-60.59,-60.16l195.84,-195.84l195.41,195.84l-60.16,60.16l-135.25,-135.25z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-export {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg fill='%23000000' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 92 92' enable-background='new 0 0 92 92' xml:space='preserve'%3E%3Cpath id='XMLID_1022_' d='M73,76.5v5c0,2.2-1.9,3.5-4.1,3.5H3.6C1.4,85,0,83.8,0,81.5V32.1c0-2.2,1.4-4.2,3.6-4.2h11.7 c2.2,0,4,1.8,4,4s-1.8,4-4,4H8V77h57v-0.5c0-2.2,1.8-4,4-4S73,74.3,73,76.5z M90.8,39.2L66,64.5c-1.2,1.2-2.9,1.5-4.4,0.9 C60,64.7,59,63.3,59,61.6V50.7c-8-0.2-27.2,0.6-34.2,12.9c-0.7,1.3-2.1,2.1-3.5,2.1c-0.3,0-0.7,0-1-0.1c-1.8-0.5-3-2.1-3-3.9 c0-0.6,0-16.1,11.6-27.6C36.2,26.6,46,22.6,59,21.9V11c0-1.6,1-3.1,2.5-3.7C63.1,6.7,64.8,7,66,8.2l24.9,25.3 C92.4,35.1,92.4,37.6,90.8,39.2z M82.2,36.3L67,20.9v4.9c0,2.2-1.7,4-4,4c-12.4,0-21.9,3.3-28.4,9.9c-3,3-5,6.3-6.3,9.5 c9.4-5.6,21.3-6.6,28.6-6.6c3.8,0,6.3,0.3,6.6,0.3c2,0.2,3.5,2,3.5,4v4.9L82.2,36.3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg fill='%23000000' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 92 92' enable-background='new 0 0 92 92' xml:space='preserve'%3E%3Cpath id='XMLID_1022_' d='M73,76.5v5c0,2.2-1.9,3.5-4.1,3.5H3.6C1.4,85,0,83.8,0,81.5V32.1c0-2.2,1.4-4.2,3.6-4.2h11.7 c2.2,0,4,1.8,4,4s-1.8,4-4,4H8V77h57v-0.5c0-2.2,1.8-4,4-4S73,74.3,73,76.5z M90.8,39.2L66,64.5c-1.2,1.2-2.9,1.5-4.4,0.9 C60,64.7,59,63.3,59,61.6V50.7c-8-0.2-27.2,0.6-34.2,12.9c-0.7,1.3-2.1,2.1-3.5,2.1c-0.3,0-0.7,0-1-0.1c-1.8-0.5-3-2.1-3-3.9 c0-0.6,0-16.1,11.6-27.6C36.2,26.6,46,22.6,59,21.9V11c0-1.6,1-3.1,2.5-3.7C63.1,6.7,64.8,7,66,8.2l24.9,25.3 C92.4,35.1,92.4,37.6,90.8,39.2z M82.2,36.3L67,20.9v4.9c0,2.2-1.7,4-4,4c-12.4,0-21.9,3.3-28.4,9.9c-3,3-5,6.3-6.3,9.5 c9.4-5.6,21.3-6.6,28.6-6.6c3.8,0,6.3,0.3,6.6,0.3c2,0.2,3.5,2,3.5,4v4.9L82.2,36.3z'/%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-export-xlsx {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='4.494' y1='-2092.086' x2='13.832' y2='-2075.914' gradientTransform='translate(0 2100)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2318884f'/%3E%3Cstop offset='0.5' stop-color='%23117e43'/%3E%3Cstop offset='1' stop-color='%230b6631'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ctitle%3Efile_type_excel%3C/title%3E%3Cpath d='M19.581,15.35,8.512,13.4V27.809A1.192,1.192,0,0,0,9.705,29h19.1A1.192,1.192,0,0,0,30,27.809h0V22.5Z' style='fill:%23185c37'/%3E%3Cpath d='M19.581,3H9.705A1.192,1.192,0,0,0,8.512,4.191h0V9.5L19.581,16l5.861,1.95L30,16V9.5Z' style='fill:%2321a366'/%3E%3Cpath d='M8.512,9.5H19.581V16H8.512Z' style='fill:%23107c41'/%3E%3Cpath d='M16.434,8.2H8.512V24.45h7.922a1.2,1.2,0,0,0,1.194-1.191V9.391A1.2,1.2,0,0,0,16.434,8.2Z' style='opacity:0.10000000149011612;isolation:isolate'/%3E%3Cpath d='M15.783,8.85H8.512V25.1h7.271a1.2,1.2,0,0,0,1.194-1.191V10.041A1.2,1.2,0,0,0,15.783,8.85Z' style='opacity:0.20000000298023224;isolation:isolate'/%3E%3Cpath d='M15.783,8.85H8.512V23.8h7.271a1.2,1.2,0,0,0,1.194-1.191V10.041A1.2,1.2,0,0,0,15.783,8.85Z' style='opacity:0.20000000298023224;isolation:isolate'/%3E%3Cpath d='M15.132,8.85H8.512V23.8h6.62a1.2,1.2,0,0,0,1.194-1.191V10.041A1.2,1.2,0,0,0,15.132,8.85Z' style='opacity:0.20000000298023224;isolation:isolate'/%3E%3Cpath d='M3.194,8.85H15.132a1.193,1.193,0,0,1,1.194,1.191V21.959a1.193,1.193,0,0,1-1.194,1.191H3.194A1.192,1.192,0,0,1,2,21.959V10.041A1.192,1.192,0,0,1,3.194,8.85Z' style='fill:url(%23a)'/%3E%3Cpath d='M5.7,19.873l2.511-3.884-2.3-3.862H7.758L9.013,14.6c.116.234.2.408.238.524h.017c.082-.188.169-.369.26-.546l1.342-2.447h1.7l-2.359,3.84,2.419,3.905H10.821l-1.45-2.711A2.355,2.355,0,0,1,9.2,16.8H9.176a1.688,1.688,0,0,1-.168.351L7.515,19.873Z' style='fill:%23fff'/%3E%3Cpath d='M28.806,3H19.581V9.5H30V4.191A1.192,1.192,0,0,0,28.806,3Z' style='fill:%2333c481'/%3E%3Cpath d='M19.581,16H30v6.5H19.581Z' style='fill:%23107c41'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='4.494' y1='-2092.086' x2='13.832' y2='-2075.914' gradientTransform='translate(0 2100)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2318884f'/%3E%3Cstop offset='0.5' stop-color='%23117e43'/%3E%3Cstop offset='1' stop-color='%230b6631'/%3E%3C/linearGradient%3E%3C/defs%3E%3Ctitle%3Efile_type_excel%3C/title%3E%3Cpath d='M19.581,15.35,8.512,13.4V27.809A1.192,1.192,0,0,0,9.705,29h19.1A1.192,1.192,0,0,0,30,27.809h0V22.5Z' style='fill:%23185c37'/%3E%3Cpath d='M19.581,3H9.705A1.192,1.192,0,0,0,8.512,4.191h0V9.5L19.581,16l5.861,1.95L30,16V9.5Z' style='fill:%2321a366'/%3E%3Cpath d='M8.512,9.5H19.581V16H8.512Z' style='fill:%23107c41'/%3E%3Cpath d='M16.434,8.2H8.512V24.45h7.922a1.2,1.2,0,0,0,1.194-1.191V9.391A1.2,1.2,0,0,0,16.434,8.2Z' style='opacity:0.10000000149011612;isolation:isolate'/%3E%3Cpath d='M15.783,8.85H8.512V25.1h7.271a1.2,1.2,0,0,0,1.194-1.191V10.041A1.2,1.2,0,0,0,15.783,8.85Z' style='opacity:0.20000000298023224;isolation:isolate'/%3E%3Cpath d='M15.783,8.85H8.512V23.8h7.271a1.2,1.2,0,0,0,1.194-1.191V10.041A1.2,1.2,0,0,0,15.783,8.85Z' style='opacity:0.20000000298023224;isolation:isolate'/%3E%3Cpath d='M15.132,8.85H8.512V23.8h6.62a1.2,1.2,0,0,0,1.194-1.191V10.041A1.2,1.2,0,0,0,15.132,8.85Z' style='opacity:0.20000000298023224;isolation:isolate'/%3E%3Cpath d='M3.194,8.85H15.132a1.193,1.193,0,0,1,1.194,1.191V21.959a1.193,1.193,0,0,1-1.194,1.191H3.194A1.192,1.192,0,0,1,2,21.959V10.041A1.192,1.192,0,0,1,3.194,8.85Z' style='fill:url(%23a)'/%3E%3Cpath d='M5.7,19.873l2.511-3.884-2.3-3.862H7.758L9.013,14.6c.116.234.2.408.238.524h.017c.082-.188.169-.369.26-.546l1.342-2.447h1.7l-2.359,3.84,2.419,3.905H10.821l-1.45-2.711A2.355,2.355,0,0,1,9.2,16.8H9.176a1.688,1.688,0,0,1-.168.351L7.515,19.873Z' style='fill:%23fff'/%3E%3Cpath d='M28.806,3H19.581V9.5H30V4.191A1.192,1.192,0,0,0,28.806,3Z' style='fill:%2333c481'/%3E%3Cpath d='M19.581,16H30v6.5H19.581Z' style='fill:%23107c41'/%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-flash {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Eflash_on icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M725.33,85.33l-170.66,341.34h170.66l-298.66,512v-384h-128v-469.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Eflash_on icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M725.33,85.33l-170.66,341.34h170.66l-298.66,512v-384h-128v-469.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-info {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Einfo icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M938.67,512c0,235.52 -191.15,426.67 -426.67,426.67c-235.52,0 -426.67,-191.15 -426.67,-426.67c0,-235.52 191.15,-426.67 426.67,-426.67c235.52,0 426.67,191.15 426.67,426.67zM554.67,469.33h-85.34v256h85.34zM554.67,298.67h-85.34v85.33h85.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Einfo icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M938.67,512c0,235.52 -191.15,426.67 -426.67,426.67c-235.52,0 -426.67,-191.15 -426.67,-426.67c0,-235.52 191.15,-426.67 426.67,-426.67c235.52,0 426.67,191.15 426.67,426.67zM554.67,469.33h-85.34v256h85.34zM554.67,298.67h-85.34v85.33h85.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-pause {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Epause icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M768,213.33v597.34h-170.67v-597.34zM256,213.33h170.67v597.34h-170.67z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Epause icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M768,213.33v597.34h-170.67v-597.34zM256,213.33h170.67v597.34h-170.67z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-play {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Eplay_arrow icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M810.67,512l-469.34,298.67v-597.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Eplay_arrow icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M810.67,512l-469.34,298.67v-597.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-print {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eprint icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M938.67,469.33v256h-170.67v170.67h-512v-170.67h-170.67v-256c0,-70.83 57.17,-128 128,-128h597.34c70.83,0 128,57.17 128,128zM768,298.67h-512v-170.67h512zM682.67,597.33h-341.34v213.34h341.34zM853.33,469.33c0,-23.47 -19.19,-42.66 -42.66,-42.66c-23.47,0 -42.67,19.19 -42.67,42.66c0,23.47 19.2,42.67 42.67,42.67c23.47,0 42.66,-19.2 42.66,-42.67z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eprint icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M938.67,469.33v256h-170.67v170.67h-512v-170.67h-170.67v-256c0,-70.83 57.17,-128 128,-128h597.34c70.83,0 128,57.17 128,128zM768,298.67h-512v-170.67h512zM682.67,597.33h-341.34v213.34h341.34zM853.33,469.33c0,-23.47 -19.19,-42.66 -42.66,-42.66c-23.47,0 -42.67,19.19 -42.67,42.66c0,23.47 19.2,42.67 42.67,42.67c23.47,0 42.66,-19.2 42.66,-42.67z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-question {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ehelp icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M938.67,512c0,235.52 -191.15,426.67 -426.67,426.67c-235.52,0 -426.67,-191.15 -426.67,-426.67c0,-235.52 191.15,-426.67 426.67,-426.67c235.52,0 426.67,191.15 426.67,426.67zM682.67,384c0,-94.29 -76.38,-170.67 -170.67,-170.67c-94.29,0 -170.67,76.38 -170.67,170.67h85.34c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33c0,23.47 -9.38,44.8 -25.17,60.16l-52.91,53.76c-30.72,31.15 -49.92,73.82 -49.92,120.75v21.33h85.34c0,-64 19.2,-89.6 49.92,-120.75l38.4,-39.25c24.32,-24.32 39.68,-58.45 39.68,-96zM554.67,725.33h-85.34v85.34h85.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ehelp icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M938.67,512c0,235.52 -191.15,426.67 -426.67,426.67c-235.52,0 -426.67,-191.15 -426.67,-426.67c0,-235.52 191.15,-426.67 426.67,-426.67c235.52,0 426.67,191.15 426.67,426.67zM682.67,384c0,-94.29 -76.38,-170.67 -170.67,-170.67c-94.29,0 -170.67,76.38 -170.67,170.67h85.34c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33c0,23.47 -9.38,44.8 -25.17,60.16l-52.91,53.76c-30.72,31.15 -49.92,73.82 -49.92,120.75v21.33h85.34c0,-64 19.2,-89.6 49.92,-120.75l38.4,-39.25c24.32,-24.32 39.68,-58.45 39.68,-96zM554.67,725.33h-85.34v85.34h85.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-rowstyle {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Estyle icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M893.44,791.47l-314.03,130.13c-10.67,4.27 -21.76,6.4 -32.85,6.4c-33.28,-0.43 -64.85,-20.05 -78.08,-52.48l-211.63,-510.72c-4.69,-11.09 -6.83,-22.61 -6.4,-34.13c0.85,-32.85 20.48,-63.57 52.48,-76.8l314.46,-130.14c11.09,-4.69 22.61,-6.4 33.7,-6.4c32.85,0.85 64,20.48 77.23,52.48l211.63,510.72c17.92,43.09 -2.99,93.02 -46.51,110.94zM250.88,572.16l147.2,355.84h-61.87c-46.93,0 -85.33,-38.4 -85.33,-85.33zM61.44,727.04l103.68,-250.03v385.28l-57.17,-23.89c-43.09,-17.92 -64,-67.84 -46.51,-111.36zM378.88,330.67c0,-23.47 -19.2,-42.67 -42.67,-42.67c-23.47,0 -42.66,19.2 -42.66,42.67c0,23.47 19.19,42.66 42.66,42.66c23.47,0 42.67,-19.19 42.67,-42.66z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Estyle icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M893.44,791.47l-314.03,130.13c-10.67,4.27 -21.76,6.4 -32.85,6.4c-33.28,-0.43 -64.85,-20.05 -78.08,-52.48l-211.63,-510.72c-4.69,-11.09 -6.83,-22.61 -6.4,-34.13c0.85,-32.85 20.48,-63.57 52.48,-76.8l314.46,-130.14c11.09,-4.69 22.61,-6.4 33.7,-6.4c32.85,0.85 64,20.48 77.23,52.48l211.63,510.72c17.92,43.09 -2.99,93.02 -46.51,110.94zM250.88,572.16l147.2,355.84h-61.87c-46.93,0 -85.33,-38.4 -85.33,-85.33zM61.44,727.04l103.68,-250.03v385.28l-57.17,-23.89c-43.09,-17.92 -64,-67.84 -46.51,-111.36zM378.88,330.67c0,-23.47 -19.2,-42.67 -42.67,-42.67c-23.47,0 -42.66,19.2 -42.66,42.67c0,23.47 19.19,42.66 42.66,42.66c23.47,0 42.67,-19.19 42.67,-42.66z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-screen-collapse {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.35 6.867C11.35 6.45279 11.0142 6.117 10.6 6.117C10.1858 6.117 9.85 6.45279 9.85 6.867H11.35ZM9.85 10.6C9.85 11.0142 10.1858 11.35 10.6 11.35C11.0142 11.35 11.35 11.0142 11.35 10.6H9.85ZM10.6 11.35C11.0142 11.35 11.35 11.0142 11.35 10.6C11.35 10.1858 11.0142 9.85 10.6 9.85V11.35ZM6.867 9.85C6.45279 9.85 6.117 10.1858 6.117 10.6C6.117 11.0142 6.45279 11.35 6.867 11.35V9.85ZM10.0697 11.1303C10.3626 11.4232 10.8374 11.4232 11.1303 11.1303C11.4232 10.8374 11.4232 10.3626 11.1303 10.0697L10.0697 11.1303ZM5.53033 4.46967C5.23744 4.17678 4.76256 4.17678 4.46967 4.46967C4.17678 4.76256 4.17678 5.23744 4.46967 5.53033L5.53033 4.46967ZM14.15 6.867C14.15 6.45279 13.8142 6.117 13.4 6.117C12.9858 6.117 12.65 6.45279 12.65 6.867H14.15ZM12.65 10.6C12.65 11.0142 12.9858 11.35 13.4 11.35C13.8142 11.35 14.15 11.0142 14.15 10.6H12.65ZM13.4 9.85C12.9858 9.85 12.65 10.1858 12.65 10.6C12.65 11.0142 12.9858 11.35 13.4 11.35V9.85ZM17.133 11.35C17.5472 11.35 17.883 11.0142 17.883 10.6C17.883 10.1858 17.5472 9.85 17.133 9.85V11.35ZM12.8697 10.0697C12.5768 10.3626 12.5768 10.8374 12.8697 11.1303C13.1626 11.4232 13.6374 11.4232 13.9303 11.1303L12.8697 10.0697ZM19.5303 5.53033C19.8232 5.23744 19.8232 4.76256 19.5303 4.46967C19.2374 4.17678 18.7626 4.17678 18.4697 4.46967L19.5303 5.53033ZM12.65 17.133C12.65 17.5472 12.9858 17.883 13.4 17.883C13.8142 17.883 14.15 17.5472 14.15 17.133H12.65ZM14.15 13.4C14.15 12.9858 13.8142 12.65 13.4 12.65C12.9858 12.65 12.65 12.9858 12.65 13.4H14.15ZM13.4 12.65C12.9858 12.65 12.65 12.9858 12.65 13.4C12.65 13.8142 12.9858 14.15 13.4 14.15V12.65ZM17.133 14.15C17.5472 14.15 17.883 13.8142 17.883 13.4C17.883 12.9858 17.5472 12.65 17.133 12.65V14.15ZM13.9303 12.8697C13.6374 12.5768 13.1626 12.5768 12.8697 12.8697C12.5768 13.1626 12.5768 13.6374 12.8697 13.9303L13.9303 12.8697ZM18.4697 19.5303C18.7626 19.8232 19.2374 19.8232 19.5303 19.5303C19.8232 19.2374 19.8232 18.7626 19.5303 18.4697L18.4697 19.5303ZM9.85 17.133C9.85 17.5472 10.1858 17.883 10.6 17.883C11.0142 17.883 11.35 17.5472 11.35 17.133H9.85ZM11.35 13.4C11.35 12.9858 11.0142 12.65 10.6 12.65C10.1858 12.65 9.85 12.9858 9.85 13.4H11.35ZM10.6 14.15C11.0142 14.15 11.35 13.8142 11.35 13.4C11.35 12.9858 11.0142 12.65 10.6 12.65V14.15ZM6.867 12.65C6.45279 12.65 6.117 12.9858 6.117 13.4C6.117 13.8142 6.45279 14.15 6.867 14.15V12.65ZM11.1303 13.9303C11.4232 13.6374 11.4232 13.1626 11.1303 12.8697C10.8374 12.5768 10.3626 12.5768 10.0697 12.8697L11.1303 13.9303ZM4.46967 18.4697C4.17678 18.7626 4.17678 19.2374 4.46967 19.5303C4.76256 19.8232 5.23744 19.8232 5.53033 19.5303L4.46967 18.4697ZM9.85 6.867V10.6H11.35V6.867H9.85ZM10.6 9.85H6.867V11.35H10.6V9.85ZM11.1303 10.0697L5.53033 4.46967L4.46967 5.53033L10.0697 11.1303L11.1303 10.0697ZM12.65 6.867V10.6H14.15V6.867H12.65ZM13.4 11.35H17.133V9.85H13.4V11.35ZM13.9303 11.1303L19.5303 5.53033L18.4697 4.46967L12.8697 10.0697L13.9303 11.1303ZM14.15 17.133V13.4H12.65V17.133H14.15ZM13.4 14.15H17.133V12.65H13.4V14.15ZM12.8697 13.9303L18.4697 19.5303L19.5303 18.4697L13.9303 12.8697L12.8697 13.9303ZM11.35 17.133V13.4H9.85V17.133H11.35ZM10.6 12.65H6.867V14.15H10.6V12.65ZM10.0697 12.8697L4.46967 18.4697L5.53033 19.5303L11.1303 13.9303L10.0697 12.8697Z' fill='%23000000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.35 6.867C11.35 6.45279 11.0142 6.117 10.6 6.117C10.1858 6.117 9.85 6.45279 9.85 6.867H11.35ZM9.85 10.6C9.85 11.0142 10.1858 11.35 10.6 11.35C11.0142 11.35 11.35 11.0142 11.35 10.6H9.85ZM10.6 11.35C11.0142 11.35 11.35 11.0142 11.35 10.6C11.35 10.1858 11.0142 9.85 10.6 9.85V11.35ZM6.867 9.85C6.45279 9.85 6.117 10.1858 6.117 10.6C6.117 11.0142 6.45279 11.35 6.867 11.35V9.85ZM10.0697 11.1303C10.3626 11.4232 10.8374 11.4232 11.1303 11.1303C11.4232 10.8374 11.4232 10.3626 11.1303 10.0697L10.0697 11.1303ZM5.53033 4.46967C5.23744 4.17678 4.76256 4.17678 4.46967 4.46967C4.17678 4.76256 4.17678 5.23744 4.46967 5.53033L5.53033 4.46967ZM14.15 6.867C14.15 6.45279 13.8142 6.117 13.4 6.117C12.9858 6.117 12.65 6.45279 12.65 6.867H14.15ZM12.65 10.6C12.65 11.0142 12.9858 11.35 13.4 11.35C13.8142 11.35 14.15 11.0142 14.15 10.6H12.65ZM13.4 9.85C12.9858 9.85 12.65 10.1858 12.65 10.6C12.65 11.0142 12.9858 11.35 13.4 11.35V9.85ZM17.133 11.35C17.5472 11.35 17.883 11.0142 17.883 10.6C17.883 10.1858 17.5472 9.85 17.133 9.85V11.35ZM12.8697 10.0697C12.5768 10.3626 12.5768 10.8374 12.8697 11.1303C13.1626 11.4232 13.6374 11.4232 13.9303 11.1303L12.8697 10.0697ZM19.5303 5.53033C19.8232 5.23744 19.8232 4.76256 19.5303 4.46967C19.2374 4.17678 18.7626 4.17678 18.4697 4.46967L19.5303 5.53033ZM12.65 17.133C12.65 17.5472 12.9858 17.883 13.4 17.883C13.8142 17.883 14.15 17.5472 14.15 17.133H12.65ZM14.15 13.4C14.15 12.9858 13.8142 12.65 13.4 12.65C12.9858 12.65 12.65 12.9858 12.65 13.4H14.15ZM13.4 12.65C12.9858 12.65 12.65 12.9858 12.65 13.4C12.65 13.8142 12.9858 14.15 13.4 14.15V12.65ZM17.133 14.15C17.5472 14.15 17.883 13.8142 17.883 13.4C17.883 12.9858 17.5472 12.65 17.133 12.65V14.15ZM13.9303 12.8697C13.6374 12.5768 13.1626 12.5768 12.8697 12.8697C12.5768 13.1626 12.5768 13.6374 12.8697 13.9303L13.9303 12.8697ZM18.4697 19.5303C18.7626 19.8232 19.2374 19.8232 19.5303 19.5303C19.8232 19.2374 19.8232 18.7626 19.5303 18.4697L18.4697 19.5303ZM9.85 17.133C9.85 17.5472 10.1858 17.883 10.6 17.883C11.0142 17.883 11.35 17.5472 11.35 17.133H9.85ZM11.35 13.4C11.35 12.9858 11.0142 12.65 10.6 12.65C10.1858 12.65 9.85 12.9858 9.85 13.4H11.35ZM10.6 14.15C11.0142 14.15 11.35 13.8142 11.35 13.4C11.35 12.9858 11.0142 12.65 10.6 12.65V14.15ZM6.867 12.65C6.45279 12.65 6.117 12.9858 6.117 13.4C6.117 13.8142 6.45279 14.15 6.867 14.15V12.65ZM11.1303 13.9303C11.4232 13.6374 11.4232 13.1626 11.1303 12.8697C10.8374 12.5768 10.3626 12.5768 10.0697 12.8697L11.1303 13.9303ZM4.46967 18.4697C4.17678 18.7626 4.17678 19.2374 4.46967 19.5303C4.76256 19.8232 5.23744 19.8232 5.53033 19.5303L4.46967 18.4697ZM9.85 6.867V10.6H11.35V6.867H9.85ZM10.6 9.85H6.867V11.35H10.6V9.85ZM11.1303 10.0697L5.53033 4.46967L4.46967 5.53033L10.0697 11.1303L11.1303 10.0697ZM12.65 6.867V10.6H14.15V6.867H12.65ZM13.4 11.35H17.133V9.85H13.4V11.35ZM13.9303 11.1303L19.5303 5.53033L18.4697 4.46967L12.8697 10.0697L13.9303 11.1303ZM14.15 17.133V13.4H12.65V17.133H14.15ZM13.4 14.15H17.133V12.65H13.4V14.15ZM12.8697 13.9303L18.4697 19.5303L19.5303 18.4697L13.9303 12.8697L12.8697 13.9303ZM11.35 17.133V13.4H9.85V17.133H11.35ZM10.6 12.65H6.867V14.15H10.6V12.65ZM10.0697 12.8697L4.46967 18.4697L5.53033 19.5303L11.1303 13.9303L10.0697 12.8697Z' fill='%23000000'/%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-screen-expand {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75 9.233C4.75 9.64721 5.08579 9.983 5.5 9.983C5.91421 9.983 6.25 9.64721 6.25 9.233H4.75ZM6.25 5.5C6.25 5.08579 5.91421 4.75 5.5 4.75C5.08579 4.75 4.75 5.08579 4.75 5.5H6.25ZM5.5 4.75C5.08579 4.75 4.75 5.08579 4.75 5.5C4.75 5.91421 5.08579 6.25 5.5 6.25V4.75ZM9.233 6.25C9.64721 6.25 9.983 5.91421 9.983 5.5C9.983 5.08579 9.64721 4.75 9.233 4.75V6.25ZM6.03033 4.96967C5.73744 4.67678 5.26256 4.67678 4.96967 4.96967C4.67678 5.26256 4.67678 5.73744 4.96967 6.03033L6.03033 4.96967ZM9.96967 11.0303C10.2626 11.3232 10.7374 11.3232 11.0303 11.0303C11.3232 10.7374 11.3232 10.2626 11.0303 9.96967L9.96967 11.0303ZM15.767 18.75C15.3528 18.75 15.017 19.0858 15.017 19.5C15.017 19.9142 15.3528 20.25 15.767 20.25V18.75ZM19.5 20.25C19.9142 20.25 20.25 19.9142 20.25 19.5C20.25 19.0858 19.9142 18.75 19.5 18.75V20.25ZM18.75 19.5C18.75 19.9142 19.0858 20.25 19.5 20.25C19.9142 20.25 20.25 19.9142 20.25 19.5H18.75ZM20.25 15.767C20.25 15.3528 19.9142 15.017 19.5 15.017C19.0858 15.017 18.75 15.3528 18.75 15.767H20.25ZM18.9697 20.0303C19.2626 20.3232 19.7374 20.3232 20.0303 20.0303C20.3232 19.7374 20.3232 19.2626 20.0303 18.9697L18.9697 20.0303ZM15.0303 13.9697C14.7374 13.6768 14.2626 13.6768 13.9697 13.9697C13.6768 14.2626 13.6768 14.7374 13.9697 15.0303L15.0303 13.9697ZM6.25 15.767C6.25 15.3528 5.91421 15.017 5.5 15.017C5.08579 15.017 4.75 15.3528 4.75 15.767H6.25ZM4.75 19.5C4.75 19.9142 5.08579 20.25 5.5 20.25C5.91421 20.25 6.25 19.9142 6.25 19.5H4.75ZM5.5 18.75C5.08579 18.75 4.75 19.0858 4.75 19.5C4.75 19.9142 5.08579 20.25 5.5 20.25V18.75ZM9.233 20.25C9.64721 20.25 9.983 19.9142 9.983 19.5C9.983 19.0858 9.64721 18.75 9.233 18.75V20.25ZM4.96967 18.9697C4.67678 19.2626 4.67678 19.7374 4.96967 20.0303C5.26256 20.3232 5.73744 20.3232 6.03033 20.0303L4.96967 18.9697ZM11.0303 15.0303C11.3232 14.7374 11.3232 14.2626 11.0303 13.9697C10.7374 13.6768 10.2626 13.6768 9.96967 13.9697L11.0303 15.0303ZM15.767 4.75C15.3528 4.75 15.017 5.08579 15.017 5.5C15.017 5.91421 15.3528 6.25 15.767 6.25V4.75ZM19.5 6.25C19.9142 6.25 20.25 5.91421 20.25 5.5C20.25 5.08579 19.9142 4.75 19.5 4.75V6.25ZM20.25 5.5C20.25 5.08579 19.9142 4.75 19.5 4.75C19.0858 4.75 18.75 5.08579 18.75 5.5H20.25ZM18.75 9.233C18.75 9.64721 19.0858 9.983 19.5 9.983C19.9142 9.983 20.25 9.64721 20.25 9.233H18.75ZM20.0303 6.03033C20.3232 5.73744 20.3232 5.26256 20.0303 4.96967C19.7374 4.67678 19.2626 4.67678 18.9697 4.96967L20.0303 6.03033ZM13.9697 9.96967C13.6768 10.2626 13.6768 10.7374 13.9697 11.0303C14.2626 11.3232 14.7374 11.3232 15.0303 11.0303L13.9697 9.96967ZM6.25 9.233V5.5H4.75V9.233H6.25ZM5.5 6.25H9.233V4.75H5.5V6.25ZM4.96967 6.03033L9.96967 11.0303L11.0303 9.96967L6.03033 4.96967L4.96967 6.03033ZM15.767 20.25H19.5V18.75H15.767V20.25ZM20.25 19.5V15.767H18.75V19.5H20.25ZM20.0303 18.9697L15.0303 13.9697L13.9697 15.0303L18.9697 20.0303L20.0303 18.9697ZM4.75 15.767V19.5H6.25V15.767H4.75ZM5.5 20.25H9.233V18.75H5.5V20.25ZM6.03033 20.0303L11.0303 15.0303L9.96967 13.9697L4.96967 18.9697L6.03033 20.0303ZM15.767 6.25H19.5V4.75H15.767V6.25ZM18.75 5.5V9.233H20.25V5.5H18.75ZM18.9697 4.96967L13.9697 9.96967L15.0303 11.0303L20.0303 6.03033L18.9697 4.96967Z' fill='%23000000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.75 9.233C4.75 9.64721 5.08579 9.983 5.5 9.983C5.91421 9.983 6.25 9.64721 6.25 9.233H4.75ZM6.25 5.5C6.25 5.08579 5.91421 4.75 5.5 4.75C5.08579 4.75 4.75 5.08579 4.75 5.5H6.25ZM5.5 4.75C5.08579 4.75 4.75 5.08579 4.75 5.5C4.75 5.91421 5.08579 6.25 5.5 6.25V4.75ZM9.233 6.25C9.64721 6.25 9.983 5.91421 9.983 5.5C9.983 5.08579 9.64721 4.75 9.233 4.75V6.25ZM6.03033 4.96967C5.73744 4.67678 5.26256 4.67678 4.96967 4.96967C4.67678 5.26256 4.67678 5.73744 4.96967 6.03033L6.03033 4.96967ZM9.96967 11.0303C10.2626 11.3232 10.7374 11.3232 11.0303 11.0303C11.3232 10.7374 11.3232 10.2626 11.0303 9.96967L9.96967 11.0303ZM15.767 18.75C15.3528 18.75 15.017 19.0858 15.017 19.5C15.017 19.9142 15.3528 20.25 15.767 20.25V18.75ZM19.5 20.25C19.9142 20.25 20.25 19.9142 20.25 19.5C20.25 19.0858 19.9142 18.75 19.5 18.75V20.25ZM18.75 19.5C18.75 19.9142 19.0858 20.25 19.5 20.25C19.9142 20.25 20.25 19.9142 20.25 19.5H18.75ZM20.25 15.767C20.25 15.3528 19.9142 15.017 19.5 15.017C19.0858 15.017 18.75 15.3528 18.75 15.767H20.25ZM18.9697 20.0303C19.2626 20.3232 19.7374 20.3232 20.0303 20.0303C20.3232 19.7374 20.3232 19.2626 20.0303 18.9697L18.9697 20.0303ZM15.0303 13.9697C14.7374 13.6768 14.2626 13.6768 13.9697 13.9697C13.6768 14.2626 13.6768 14.7374 13.9697 15.0303L15.0303 13.9697ZM6.25 15.767C6.25 15.3528 5.91421 15.017 5.5 15.017C5.08579 15.017 4.75 15.3528 4.75 15.767H6.25ZM4.75 19.5C4.75 19.9142 5.08579 20.25 5.5 20.25C5.91421 20.25 6.25 19.9142 6.25 19.5H4.75ZM5.5 18.75C5.08579 18.75 4.75 19.0858 4.75 19.5C4.75 19.9142 5.08579 20.25 5.5 20.25V18.75ZM9.233 20.25C9.64721 20.25 9.983 19.9142 9.983 19.5C9.983 19.0858 9.64721 18.75 9.233 18.75V20.25ZM4.96967 18.9697C4.67678 19.2626 4.67678 19.7374 4.96967 20.0303C5.26256 20.3232 5.73744 20.3232 6.03033 20.0303L4.96967 18.9697ZM11.0303 15.0303C11.3232 14.7374 11.3232 14.2626 11.0303 13.9697C10.7374 13.6768 10.2626 13.6768 9.96967 13.9697L11.0303 15.0303ZM15.767 4.75C15.3528 4.75 15.017 5.08579 15.017 5.5C15.017 5.91421 15.3528 6.25 15.767 6.25V4.75ZM19.5 6.25C19.9142 6.25 20.25 5.91421 20.25 5.5C20.25 5.08579 19.9142 4.75 19.5 4.75V6.25ZM20.25 5.5C20.25 5.08579 19.9142 4.75 19.5 4.75C19.0858 4.75 18.75 5.08579 18.75 5.5H20.25ZM18.75 9.233C18.75 9.64721 19.0858 9.983 19.5 9.983C19.9142 9.983 20.25 9.64721 20.25 9.233H18.75ZM20.0303 6.03033C20.3232 5.73744 20.3232 5.26256 20.0303 4.96967C19.7374 4.67678 19.2626 4.67678 18.9697 4.96967L20.0303 6.03033ZM13.9697 9.96967C13.6768 10.2626 13.6768 10.7374 13.9697 11.0303C14.2626 11.3232 14.7374 11.3232 15.0303 11.0303L13.9697 9.96967ZM6.25 9.233V5.5H4.75V9.233H6.25ZM5.5 6.25H9.233V4.75H5.5V6.25ZM4.96967 6.03033L9.96967 11.0303L11.0303 9.96967L6.03033 4.96967L4.96967 6.03033ZM15.767 20.25H19.5V18.75H15.767V20.25ZM20.25 19.5V15.767H18.75V19.5H20.25ZM20.0303 18.9697L15.0303 13.9697L13.9697 15.0303L18.9697 20.0303L20.0303 18.9697ZM4.75 15.767V19.5H6.25V15.767H4.75ZM5.5 20.25H9.233V18.75H5.5V20.25ZM6.03033 20.0303L11.0303 15.0303L9.96967 13.9697L4.96967 18.9697L6.03033 20.0303ZM15.767 6.25H19.5V4.75H15.767V6.25ZM18.75 5.5V9.233H20.25V5.5H18.75ZM18.9697 4.96967L13.9697 9.96967L15.0303 11.0303L20.0303 6.03033L18.9697 4.96967Z' fill='%23000000'/%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-send {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Esend icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M85.33,597.33l640,-85.33l-640,-85.33l0.43,-298.67l895.57,384l-895.57,384z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Esend icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M85.33,597.33l640,-85.33l-640,-85.33l0.43,-298.67l895.57,384l-895.57,384z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-settings {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Esettings icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M919.04,624.21c8.11,6.4 10.24,17.92 5.12,27.31l-85.33,147.63c-5.12,9.39 -16.22,13.22 -26.03,9.38l-106.24,-42.66c-22.19,16.64 -46.08,31.14 -72.11,41.81l-16.21,113.07c-1.28,10.24 -10.24,17.92 -20.91,17.92h-170.66c-10.67,0 -19.63,-7.68 -20.91,-17.92l-16.21,-113.07c-26.03,-10.67 -49.92,-24.74 -72.11,-41.81l-106.24,42.66c-9.39,3.41 -20.91,0.01 -26.03,-9.38l-85.33,-147.63c-5.12,-9.39 -2.99,-20.91 5.12,-27.31l90.03,-70.4c-1.71,-13.65 -2.99,-27.73 -2.99,-41.81c0,-14.08 1.28,-28.16 2.99,-41.81l-90.03,-70.4c-8.11,-6.4 -10.67,-17.92 -5.12,-27.31l85.33,-147.63c5.12,-9.39 16.22,-13.22 26.03,-9.38l106.24,42.66c22.19,-16.64 46.08,-31.14 72.11,-41.81l16.21,-113.07c1.28,-10.24 10.24,-17.92 20.91,-17.92h170.66c10.67,0 19.63,7.68 20.91,17.92l16.21,113.07c26.03,10.67 49.92,24.74 72.11,41.81l106.24,-42.66c9.39,-3.41 20.91,-0.01 26.03,9.38l85.33,147.63c5.12,9.39 2.99,20.91 -5.12,27.31l-90.03,70.4c1.71,13.65 2.99,27.3 2.99,41.81c0,14.51 -1.28,28.16 -2.99,41.81zM661.33,512c0,-82.35 -66.98,-149.33 -149.33,-149.33c-82.35,0 -149.33,66.98 -149.33,149.33c0,82.35 66.98,149.33 149.33,149.33c82.35,0 149.33,-66.98 149.33,-149.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Esettings icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M919.04,624.21c8.11,6.4 10.24,17.92 5.12,27.31l-85.33,147.63c-5.12,9.39 -16.22,13.22 -26.03,9.38l-106.24,-42.66c-22.19,16.64 -46.08,31.14 -72.11,41.81l-16.21,113.07c-1.28,10.24 -10.24,17.92 -20.91,17.92h-170.66c-10.67,0 -19.63,-7.68 -20.91,-17.92l-16.21,-113.07c-26.03,-10.67 -49.92,-24.74 -72.11,-41.81l-106.24,42.66c-9.39,3.41 -20.91,0.01 -26.03,-9.38l-85.33,-147.63c-5.12,-9.39 -2.99,-20.91 5.12,-27.31l90.03,-70.4c-1.71,-13.65 -2.99,-27.73 -2.99,-41.81c0,-14.08 1.28,-28.16 2.99,-41.81l-90.03,-70.4c-8.11,-6.4 -10.67,-17.92 -5.12,-27.31l85.33,-147.63c5.12,-9.39 16.22,-13.22 26.03,-9.38l106.24,42.66c22.19,-16.64 46.08,-31.14 72.11,-41.81l16.21,-113.07c1.28,-10.24 10.24,-17.92 20.91,-17.92h170.66c10.67,0 19.63,7.68 20.91,17.92l16.21,113.07c26.03,10.67 49.92,24.74 72.11,41.81l106.24,-42.66c9.39,-3.41 20.91,-0.01 26.03,9.38l85.33,147.63c5.12,9.39 2.99,20.91 -5.12,27.31l-90.03,70.4c1.71,13.65 2.99,27.3 2.99,41.81c0,14.51 -1.28,28.16 -2.99,41.81zM661.33,512c0,-82.35 -66.98,-149.33 -149.33,-149.33c-82.35,0 -149.33,66.98 -149.33,149.33c0,82.35 66.98,149.33 149.33,149.33c82.35,0 149.33,-66.98 149.33,-149.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-success {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ethumb_up icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M980.91,430.08l0.42,0.43v81.49c0,11.09 -2.13,21.34 -5.97,31.15l-128.85,300.8c-12.8,30.72 -43.1,52.05 -78.51,52.05h-384c-46.93,0 -85.33,-38.4 -85.33,-85.33v-426.67c0,-23.47 9.38,-44.8 25.17,-60.16l280.75,-281.17l45.22,44.8c11.52,11.52 18.78,27.73 18.78,45.22l-1.28,13.66l-40.54,194.98h269.23c46.93,0 85.33,38.41 85.33,85.34zM42.67,384h170.66v512h-170.66z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ethumb_up icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M980.91,430.08l0.42,0.43v81.49c0,11.09 -2.13,21.34 -5.97,31.15l-128.85,300.8c-12.8,30.72 -43.1,52.05 -78.51,52.05h-384c-46.93,0 -85.33,-38.4 -85.33,-85.33v-426.67c0,-23.47 9.38,-44.8 25.17,-60.16l280.75,-281.17l45.22,44.8c11.52,11.52 18.78,27.73 18.78,45.22l-1.28,13.66l-40.54,194.98h269.23c46.93,0 85.33,38.41 85.33,85.34zM42.67,384h170.66v512h-170.66z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-view {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eremove_red_eye icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M981.33,512c-73.81,187.31 -256,320 -469.33,320c-213.33,0 -395.52,-132.69 -469.33,-320c73.81,-187.31 256,-320 469.33,-320c213.33,0 395.52,132.69 469.33,320zM725.33,512c0,-117.76 -95.57,-213.33 -213.33,-213.33c-117.76,0 -213.33,95.57 -213.33,213.33c0,117.76 95.57,213.33 213.33,213.33c117.76,0 213.33,-95.57 213.33,-213.33zM640,512c0,70.83 -57.17,128 -128,128c-70.83,0 -128,-57.17 -128,-128c0,-70.83 57.17,-128 128,-128c70.83,0 128,57.17 128,128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eremove_red_eye icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M981.33,512c-73.81,187.31 -256,320 -469.33,320c-213.33,0 -395.52,-132.69 -469.33,-320c73.81,-187.31 256,-320 469.33,-320c213.33,0 395.52,132.69 469.33,320zM725.33,512c0,-117.76 -95.57,-213.33 -213.33,-213.33c-117.76,0 -213.33,95.57 -213.33,213.33c0,117.76 95.57,213.33 213.33,213.33c117.76,0 213.33,-95.57 213.33,-213.33zM640,512c0,70.83 -57.17,128 -128,128c-70.83,0 -128,-57.17 -128,-128c0,-70.83 57.17,-128 128,-128c70.83,0 128,57.17 128,128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-warning {
  -webkit-mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:cc='http://creativecommons.org/ns%23' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' inkscape:version='1.0 (4035a4fb49, 2020-05-01)' sodipodi:docname='warning.svg' id='svg10' viewBox='0,0,1024,1024' version='1.1'%3E%3Cmetadata id='metadata16'%3E%3Crdf:RDF%3E%3Ccc:Work rdf:about=''%3E%3Cdc:format%3Eimage/svg+xml%3C/dc:format%3E%3Cdc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage' /%3E%3C/cc:Work%3E%3C/rdf:RDF%3E%3C/metadata%3E%3Cdefs id='defs14' /%3E%3Csodipodi:namedview inkscape:current-layer='svg10' inkscape:window-maximized='0' inkscape:window-y='0' inkscape:window-x='0' inkscape:cy='512' inkscape:cx='512' inkscape:zoom='0.83007812' showgrid='false' id='namedview12' inkscape:window-height='969' inkscape:window-width='1217' inkscape:pageshadow='2' inkscape:pageopacity='0' guidetolerance='10' gridtolerance='10' objecttolerance='10' borderopacity='1' bordercolor='%23666666' pagecolor='%23ffffff' /%3E%3C!-- Color names: color-1 --%3E%3Cdesc id='desc2'%3Ewarning icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg id='g8' style='mix-blend-mode: normal' fill-rule='nonzero' fill='none'%3E%3Cg id='g6' class='color-1' color='currentColor'%3E%3Cpath sodipodi:nodetypes='cccccccccccccc' id='path4' fill='currentColor' d='M 512,85.33 981.33,896 H 42.67 Z m 42.67,305.19882 H 470.53471 L 469.33,597.33 h 85.34 z m 0,292.14118 H 469.33 V 768 h 85.34 z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:cc='http://creativecommons.org/ns%23' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23' xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' inkscape:version='1.0 (4035a4fb49, 2020-05-01)' sodipodi:docname='warning.svg' id='svg10' viewBox='0,0,1024,1024' version='1.1'%3E%3Cmetadata id='metadata16'%3E%3Crdf:RDF%3E%3Ccc:Work rdf:about=''%3E%3Cdc:format%3Eimage/svg+xml%3C/dc:format%3E%3Cdc:type rdf:resource='http://purl.org/dc/dcmitype/StillImage' /%3E%3C/cc:Work%3E%3C/rdf:RDF%3E%3C/metadata%3E%3Cdefs id='defs14' /%3E%3Csodipodi:namedview inkscape:current-layer='svg10' inkscape:window-maximized='0' inkscape:window-y='0' inkscape:window-x='0' inkscape:cy='512' inkscape:cx='512' inkscape:zoom='0.83007812' showgrid='false' id='namedview12' inkscape:window-height='969' inkscape:window-width='1217' inkscape:pageshadow='2' inkscape:pageopacity='0' guidetolerance='10' gridtolerance='10' objecttolerance='10' borderopacity='1' bordercolor='%23666666' pagecolor='%23ffffff' /%3E%3C!-- Color names: color-1 --%3E%3Cdesc id='desc2'%3Ewarning icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg id='g8' style='mix-blend-mode: normal' fill-rule='nonzero' fill='none'%3E%3Cg id='g6' class='color-1' color='currentColor'%3E%3Cpath sodipodi:nodetypes='cccccccccccccc' id='path4' fill='currentColor' d='M 512,85.33 981.33,896 H 42.67 Z m 42.67,305.19882 H 470.53471 L 469.33,597.33 h 85.34 z m 0,292.14118 H 469.33 V 768 h 85.34 z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-color: currentColor;
}

.fw-icon-login {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Elog_in icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M405.97,576h458.03c17.63,0 32,14.38 32,32v64c0,17.62 -14.37,32 -32,32h-32v128h-64v-32h-64v32h-64v-128h-234.03c-24.16,74.57 -89.34,128 -165.97,128c-97.2,0 -176,-85.96 -176,-192c0,-106.04 78.8,-192 176,-192c76.63,0 141.81,53.43 165.97,128zM240,544c-44.18,0 -80,42.98 -80,96c0,53.02 35.82,96 80,96c44.18,0 80,-42.98 80,-96c0,-53.02 -35.82,-96 -80,-96z' fill='currentColor'/%3E%3C/g%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M704,512h-115.87c-6.6,0 -12.25,-3.77 -14.78,-9.88c-2.53,-6.1 -1.2,-12.76 3.47,-17.43l100.68,-100.69h-213.5c-8.81,0 -16,-7.19 -16,-16v-96c0,-8.82 7.19,-16 16,-16h213.5l-100.68,-100.69c-4.67,-4.67 -6,-11.33 -3.47,-17.43c2.53,-6.11 8.18,-9.88 14.78,-9.88h115.87c17.62,0 32.8,6.28 45.26,18.74l150.62,150.63c12.43,12.44 12.44,32.81 0,45.26l-150.62,150.62c-12.47,12.47 -27.64,18.75 -45.26,18.75z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Elog_in icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M405.97,576h458.03c17.63,0 32,14.38 32,32v64c0,17.62 -14.37,32 -32,32h-32v128h-64v-32h-64v32h-64v-128h-234.03c-24.16,74.57 -89.34,128 -165.97,128c-97.2,0 -176,-85.96 -176,-192c0,-106.04 78.8,-192 176,-192c76.63,0 141.81,53.43 165.97,128zM240,544c-44.18,0 -80,42.98 -80,96c0,53.02 35.82,96 80,96c44.18,0 80,-42.98 80,-96c0,-53.02 -35.82,-96 -80,-96z' fill='currentColor'/%3E%3C/g%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M704,512h-115.87c-6.6,0 -12.25,-3.77 -14.78,-9.88c-2.53,-6.1 -1.2,-12.76 3.47,-17.43l100.68,-100.69h-213.5c-8.81,0 -16,-7.19 -16,-16v-96c0,-8.82 7.19,-16 16,-16h213.5l-100.68,-100.69c-4.67,-4.67 -6,-11.33 -3.47,-17.43c2.53,-6.11 8.18,-9.88 14.78,-9.88h115.87c17.62,0 32.8,6.28 45.26,18.74l150.62,150.63c12.43,12.44 12.44,32.81 0,45.26l-150.62,150.62c-12.47,12.47 -27.64,18.75 -45.26,18.75z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-hand {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ehand_spread icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M416,800h320c35.25,0 64,28.75 64,64v128h-448v-128c0,-35.25 28.75,-64 64,-64z' fill='currentColor'/%3E%3C/g%3E%3Cpath d='M271.47,489.57l25.47,8.31c24.29,10.77 51.52,5.64 70.24,-13.22c18.73,-18.86 23.64,-46.13 12.69,-70.34l-94.29,-208.48c-7.43,-16.42 0.07,-36.17 16.49,-43.57c16.44,-7.4 36.15,0.09 43.58,16.5l102.09,225.71c6.29,13.92 21.45,21.11 36.21,17.18c14.74,-3.92 24.34,-17.71 22.89,-32.89l-27.58,-289.68c-1.7,-17.74 11.91,-34.16 29.65,-35.84c17.74,-1.67 34.15,11.92 35.83,29.65l27.64,290.17c1.45,15.22 13.45,26.92 28.69,27.99c15.17,1.06 28.78,-8.92 32.32,-23.71l52.86,-220.65c4.15,-17.32 22.23,-28.49 39.57,-24.37c17.34,4.13 28.52,22.25 24.37,39.58l-54.17,226.13c-3.54,14.8 3.98,29.76 17.98,35.74c14.03,5.98 30,1.07 38.24,-11.75l89.57,-139.23c10.85,-9.79 27.45,-11.34 39.81,-3.46c15.01,9.57 19.64,30.37 10.05,45.38l-136.47,213.73c-30.65,47.99 -50.2,129.02 -50.2,185.77v33.78h-258c0,-20.46 -5.58,-37.85 -18.76,-53.65c-8.88,-10.65 -19.47,-18.91 -30.41,-27.28c-22.15,-16.94 -33.67,-27.4 -49.59,-50.63c-11.92,-17.4 -24.78,-34.11 -39.8,-48.97c-39.6,-39.19 -88.45,-61.18 -143,-70.32l-0.48,-0.76c13.18,-44.53 72.33,-37.11 106.51,-26.82z' visibility='hidden'/%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M808.29,582.35c-27.59,43.85 -40.29,117.94 -40.29,151.87v39.28c-10.02,-3.56 -20.78,-5.5 -32,-5.5h-32v-33.78c0,-56.78 19.66,-138.24 50.35,-186.31l136.48,-213.73c9.32,-14.59 4.84,-34.7 -9.75,-44c-12.01,-7.65 -28.06,-6.14 -38.6,3.36l-89.39,139.03c-8.52,13.24 -25,18.3 -39.48,12.12c-14.47,-6.17 -22.23,-21.58 -18.56,-36.88l54.17,-226.13c4.03,-16.84 -6.8,-34.37 -23.63,-38.37c-16.84,-4.01 -34.34,6.8 -38.37,23.62l-52.86,220.66c-3.67,15.34 -17.62,25.57 -33.36,24.46c-15.73,-1.1 -28.12,-13.18 -29.61,-28.88l-27.64,-290.17c-1.64,-17.24 -17.5,-30.38 -34.75,-28.75c-17.24,1.63 -30.39,17.5 -28.75,34.75l27.59,289.67c1.49,15.7 -8.39,29.91 -23.63,33.96c-15.25,4.06 -30.88,-3.36 -37.38,-17.74l-102.09,-225.71c-7.23,-15.98 -26.26,-23.21 -42.25,-16c-15.99,7.21 -23.23,26.27 -16,42.25l72.9,161.19l21.39,47.29c11.16,24.66 6.18,52.24 -12.89,71.46c-19.07,19.21 -46.61,24.39 -71.36,13.42l-25.37,-8.27c-33.22,-10 -92.28,-17.56 -105.11,25.72c54.65,9.26 103.42,31.25 143.09,70.52c15.1,14.94 27.94,31.61 39.93,49.12c17.21,25.13 25.14,31.87 49.37,50.4c11.11,8.49 21.5,16.56 30.57,27.43c13.38,16.04 18.99,33.65 18.99,54.29h-32c-11.21,0 -21.98,1.94 -32,5.5v-5.5c0,-5.66 -0.55,-8.99 -4.14,-13.3c-5.3,-6.35 -13.74,-12.57 -20.3,-17.58c-31.15,-23.82 -41.29,-32.97 -63.29,-65.07c-9.66,-14.1 -19.98,-27.76 -32.15,-39.81c-30.29,-29.97 -67.17,-45.85 -108.76,-52.9c-38.08,-6.45 -61.64,-44.25 -50.67,-81.28c23.98,-80.95 112.04,-90.75 184.91,-68.83l32.87,11.05l-94.3,-208.47c-21.81,-48.23 -0.23,-105.23 48.02,-126.98c48.19,-21.71 105.08,-0.18 126.86,47.98l22.85,50.51l-9.36,-98.25c-5,-52.49 33.95,-99.58 86.44,-104.54c52.46,-4.95 99.49,33.95 104.48,86.4l9.42,98.9l8.1,-33.81c12.26,-51.2 64.2,-83.16 115.42,-70.98c51.3,12.21 83.34,64.26 71.06,115.55l-11.84,49.43c31.22,-28.16 78.8,-33.42 115.85,-9.81c44.46,28.33 57.67,87.98 29.3,132.42z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ehand_spread icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M416,800h320c35.25,0 64,28.75 64,64v128h-448v-128c0,-35.25 28.75,-64 64,-64z' fill='currentColor'/%3E%3C/g%3E%3Cpath d='M271.47,489.57l25.47,8.31c24.29,10.77 51.52,5.64 70.24,-13.22c18.73,-18.86 23.64,-46.13 12.69,-70.34l-94.29,-208.48c-7.43,-16.42 0.07,-36.17 16.49,-43.57c16.44,-7.4 36.15,0.09 43.58,16.5l102.09,225.71c6.29,13.92 21.45,21.11 36.21,17.18c14.74,-3.92 24.34,-17.71 22.89,-32.89l-27.58,-289.68c-1.7,-17.74 11.91,-34.16 29.65,-35.84c17.74,-1.67 34.15,11.92 35.83,29.65l27.64,290.17c1.45,15.22 13.45,26.92 28.69,27.99c15.17,1.06 28.78,-8.92 32.32,-23.71l52.86,-220.65c4.15,-17.32 22.23,-28.49 39.57,-24.37c17.34,4.13 28.52,22.25 24.37,39.58l-54.17,226.13c-3.54,14.8 3.98,29.76 17.98,35.74c14.03,5.98 30,1.07 38.24,-11.75l89.57,-139.23c10.85,-9.79 27.45,-11.34 39.81,-3.46c15.01,9.57 19.64,30.37 10.05,45.38l-136.47,213.73c-30.65,47.99 -50.2,129.02 -50.2,185.77v33.78h-258c0,-20.46 -5.58,-37.85 -18.76,-53.65c-8.88,-10.65 -19.47,-18.91 -30.41,-27.28c-22.15,-16.94 -33.67,-27.4 -49.59,-50.63c-11.92,-17.4 -24.78,-34.11 -39.8,-48.97c-39.6,-39.19 -88.45,-61.18 -143,-70.32l-0.48,-0.76c13.18,-44.53 72.33,-37.11 106.51,-26.82z' visibility='hidden'/%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M808.29,582.35c-27.59,43.85 -40.29,117.94 -40.29,151.87v39.28c-10.02,-3.56 -20.78,-5.5 -32,-5.5h-32v-33.78c0,-56.78 19.66,-138.24 50.35,-186.31l136.48,-213.73c9.32,-14.59 4.84,-34.7 -9.75,-44c-12.01,-7.65 -28.06,-6.14 -38.6,3.36l-89.39,139.03c-8.52,13.24 -25,18.3 -39.48,12.12c-14.47,-6.17 -22.23,-21.58 -18.56,-36.88l54.17,-226.13c4.03,-16.84 -6.8,-34.37 -23.63,-38.37c-16.84,-4.01 -34.34,6.8 -38.37,23.62l-52.86,220.66c-3.67,15.34 -17.62,25.57 -33.36,24.46c-15.73,-1.1 -28.12,-13.18 -29.61,-28.88l-27.64,-290.17c-1.64,-17.24 -17.5,-30.38 -34.75,-28.75c-17.24,1.63 -30.39,17.5 -28.75,34.75l27.59,289.67c1.49,15.7 -8.39,29.91 -23.63,33.96c-15.25,4.06 -30.88,-3.36 -37.38,-17.74l-102.09,-225.71c-7.23,-15.98 -26.26,-23.21 -42.25,-16c-15.99,7.21 -23.23,26.27 -16,42.25l72.9,161.19l21.39,47.29c11.16,24.66 6.18,52.24 -12.89,71.46c-19.07,19.21 -46.61,24.39 -71.36,13.42l-25.37,-8.27c-33.22,-10 -92.28,-17.56 -105.11,25.72c54.65,9.26 103.42,31.25 143.09,70.52c15.1,14.94 27.94,31.61 39.93,49.12c17.21,25.13 25.14,31.87 49.37,50.4c11.11,8.49 21.5,16.56 30.57,27.43c13.38,16.04 18.99,33.65 18.99,54.29h-32c-11.21,0 -21.98,1.94 -32,5.5v-5.5c0,-5.66 -0.55,-8.99 -4.14,-13.3c-5.3,-6.35 -13.74,-12.57 -20.3,-17.58c-31.15,-23.82 -41.29,-32.97 -63.29,-65.07c-9.66,-14.1 -19.98,-27.76 -32.15,-39.81c-30.29,-29.97 -67.17,-45.85 -108.76,-52.9c-38.08,-6.45 -61.64,-44.25 -50.67,-81.28c23.98,-80.95 112.04,-90.75 184.91,-68.83l32.87,11.05l-94.3,-208.47c-21.81,-48.23 -0.23,-105.23 48.02,-126.98c48.19,-21.71 105.08,-0.18 126.86,47.98l22.85,50.51l-9.36,-98.25c-5,-52.49 33.95,-99.58 86.44,-104.54c52.46,-4.95 99.49,33.95 104.48,86.4l9.42,98.9l8.1,-33.81c12.26,-51.2 64.2,-83.16 115.42,-70.98c51.3,12.21 83.34,64.26 71.06,115.55l-11.84,49.43c31.22,-28.16 78.8,-33.42 115.85,-9.81c44.46,28.33 57.67,87.98 29.3,132.42z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-refresh {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eautorenew icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M256,512c0,43.09 10.67,84.06 29.87,119.47l-62.3,62.29c-33.28,-52.48 -52.9,-114.77 -52.9,-181.76c0,-188.59 152.74,-341.33 341.33,-341.33v-128l170.67,170.66l-170.67,170.67v-128c-141.23,0 -256,114.77 -256,256zM853.33,512c0,188.59 -152.74,341.33 -341.33,341.33v128l-170.67,-170.66l170.67,-170.67v128c141.23,0 256,-114.77 256,-256c0,-43.09 -11.1,-83.63 -29.87,-119.47l62.3,-62.29c33.28,52.48 52.9,114.77 52.9,181.76z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eautorenew icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M256,512c0,43.09 10.67,84.06 29.87,119.47l-62.3,62.29c-33.28,-52.48 -52.9,-114.77 -52.9,-181.76c0,-188.59 152.74,-341.33 341.33,-341.33v-128l170.67,170.66l-170.67,170.67v-128c-141.23,0 -256,114.77 -256,256zM853.33,512c0,188.59 -152.74,341.33 -341.33,341.33v128l-170.67,-170.66l170.67,-170.67v128c141.23,0 256,-114.77 256,-256c0,-43.09 -11.1,-83.63 -29.87,-119.47l62.3,-62.29c33.28,52.48 52.9,114.77 52.9,181.76z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-upload {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Efile_upload icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M384,426.67h-170.67l298.67,-298.67l298.67,298.67h-170.67v256h-256zM213.33,768h597.34v85.33h-597.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Efile_upload icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M384,426.67h-170.67l298.67,-298.67l298.67,298.67h-170.67v256h-256zM213.33,768h597.34v85.33h-597.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-download {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Efile_download icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M512,682.67l-298.67,-298.67h170.67v-256h256v256h170.67zM810.67,768v85.33h-597.34v-85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Efile_download icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M512,682.67l-298.67,-298.67h170.67v-256h256v256h170.67zM810.67,768v85.33h-597.34v-85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-lock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Elock icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M853.33,426.67v426.66c0,46.93 -38.4,85.34 -85.33,85.34h-512c-46.93,0 -85.33,-38.41 -85.33,-85.34v-426.66c0,-46.93 38.4,-85.34 85.33,-85.34h42.67v-85.33c0,-117.76 95.57,-213.33 213.33,-213.33c117.76,0 213.33,95.57 213.33,213.33v85.33h42.67c46.93,0 85.33,38.41 85.33,85.34zM644.27,256c0,-72.96 -59.31,-132.27 -132.27,-132.27c-72.96,0 -132.27,59.31 -132.27,132.27v85.33h264.54zM597.33,640c0,-46.93 -38.4,-85.33 -85.33,-85.33c-46.93,0 -85.33,38.4 -85.33,85.33c0,46.93 38.4,85.33 85.33,85.33c46.93,0 85.33,-38.4 85.33,-85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Elock icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M853.33,426.67v426.66c0,46.93 -38.4,85.34 -85.33,85.34h-512c-46.93,0 -85.33,-38.41 -85.33,-85.34v-426.66c0,-46.93 38.4,-85.34 85.33,-85.34h42.67v-85.33c0,-117.76 95.57,-213.33 213.33,-213.33c117.76,0 213.33,95.57 213.33,213.33v85.33h42.67c46.93,0 85.33,38.41 85.33,85.34zM644.27,256c0,-72.96 -59.31,-132.27 -132.27,-132.27c-72.96,0 -132.27,59.31 -132.27,132.27v85.33h264.54zM597.33,640c0,-46.93 -38.4,-85.33 -85.33,-85.33c-46.93,0 -85.33,38.4 -85.33,85.33c0,46.93 38.4,85.33 85.33,85.33c46.93,0 85.33,-38.4 85.33,-85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-microphone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Emic icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M810.67,469.33c0,145.92 -116.05,266.24 -256,286.72v139.95h-85.34v-139.95c-139.95,-20.91 -256,-141.23 -256,-286.72h72.54c0,128 108.37,217.6 226.13,217.6c117.76,0 226.13,-89.6 226.13,-217.6zM384,469.33v-256c0,-70.83 57.17,-128 128,-128c70.83,0 128,57.17 128,128l-0.43,256c0,70.83 -56.74,128 -127.57,128c-70.83,0 -128,-57.17 -128,-128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Emic icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M810.67,469.33c0,145.92 -116.05,266.24 -256,286.72v139.95h-85.34v-139.95c-139.95,-20.91 -256,-141.23 -256,-286.72h72.54c0,128 108.37,217.6 226.13,217.6c117.76,0 226.13,-89.6 226.13,-217.6zM384,469.33v-256c0,-70.83 57.17,-128 128,-128c70.83,0 128,57.17 128,128l-0.43,256c0,70.83 -56.74,128 -127.57,128c-70.83,0 -128,-57.17 -128,-128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-play {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Eplay_arrow icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M810.67,512l-469.34,298.67v-597.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Eplay_arrow icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M810.67,512l-469.34,298.67v-597.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-restore {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Erestore icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M938.67,512c0,212.05 -171.95,384 -384,384c-106.24,0 -201.81,-43.09 -271.36,-112.64l60.58,-60.59c53.76,54.19 128.43,87.9 210.78,87.9c165.12,0 298.66,-133.55 298.66,-298.67c0,-165.12 -133.54,-298.67 -298.66,-298.67c-165.12,0 -298.67,133.55 -298.67,298.67h128l-172.37,171.95l-2.99,-5.98l-165.97,-165.97h128c0,-212.05 171.95,-384 384,-384c212.05,0 384,171.95 384,384zM576,341.33v181.34l149.33,88.74l-30.72,51.63l-182.61,-108.37v-213.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Erestore icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M938.67,512c0,212.05 -171.95,384 -384,384c-106.24,0 -201.81,-43.09 -271.36,-112.64l60.58,-60.59c53.76,54.19 128.43,87.9 210.78,87.9c165.12,0 298.66,-133.55 298.66,-298.67c0,-165.12 -133.54,-298.67 -298.66,-298.67c-165.12,0 -298.67,133.55 -298.67,298.67h128l-172.37,171.95l-2.99,-5.98l-165.97,-165.97h128c0,-212.05 171.95,-384 384,-384c212.05,0 384,171.95 384,384zM576,341.33v181.34l149.33,88.74l-30.72,51.63l-182.61,-108.37v-213.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-stop {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Estop icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M256,256h512v512h-512z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Estop icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M256,256h512v512h-512z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-save {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Esave icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M896,298.67v512c0,46.93 -38.4,85.33 -85.33,85.33h-597.34c-47.36,0 -85.33,-38.4 -85.33,-85.33v-597.34c0,-46.93 37.97,-85.33 85.33,-85.33h512zM640,213.33h-426.67v170.67h426.67zM640,682.67c0,-70.83 -57.17,-128 -128,-128c-70.83,0 -128,57.17 -128,128c0,70.83 57.17,128 128,128c70.83,0 128,-57.17 128,-128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Esave icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M896,298.67v512c0,46.93 -38.4,85.33 -85.33,85.33h-597.34c-47.36,0 -85.33,-38.4 -85.33,-85.33v-597.34c0,-46.93 37.97,-85.33 85.33,-85.33h512zM640,213.33h-426.67v170.67h426.67zM640,682.67c0,-70.83 -57.17,-128 -128,-128c-70.83,0 -128,57.17 -128,128c0,70.83 57.17,128 128,128c70.83,0 128,-57.17 128,-128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-select {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Echeck_box icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M896,213.33v597.34c0,46.93 -37.97,85.33 -85.33,85.33h-597.34c-47.36,0 -85.33,-38.4 -85.33,-85.33v-597.34c0,-46.93 37.97,-85.33 85.33,-85.33h597.34c47.36,0 85.33,38.4 85.33,85.33zM810.67,341.33l-60.16,-60.58l-323.84,323.84l-153.18,-152.75l-60.16,60.16l213.34,213.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Echeck_box icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M896,213.33v597.34c0,46.93 -37.97,85.33 -85.33,85.33h-597.34c-47.36,0 -85.33,-38.4 -85.33,-85.33v-597.34c0,-46.93 37.97,-85.33 85.33,-85.33h597.34c47.36,0 85.33,38.4 85.33,85.33zM810.67,341.33l-60.16,-60.58l-323.84,323.84l-153.18,-152.75l-60.16,60.16l213.34,213.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-spell-chech {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Espell_check icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M214.63,681.37l50.74,-50.74c12.47,-12.47 32.79,-12.46 45.26,0l105.37,105.37l297.37,-297.37c12.47,-12.47 32.8,-12.46 45.26,0l50.74,50.74c12.47,12.46 12.46,32.8 0,45.26l-370.74,370.74c-12.46,12.46 -32.8,12.47 -45.26,0l-178.74,-178.74c-12.46,-12.47 -12.47,-32.79 0,-45.26z' fill='%238ac545'/%3E%3Cpath d='M768,256h128c35.25,0 64,28.75 64,64v16h-64c0,-8.81 -7.19,-16 -16,-16h-96c-8.81,0 -16,7.19 -16,16v69.83c-19.73,-11.38 -44.27,-11.38 -64,0v-85.83c0,-35.25 28.75,-64 64,-64zM850.71,512h29.29c8.81,0 16,-7.19 16,-16h64v16c0,35.25 -28.75,64 -64,64h-82.74l18.74,-18.74c12.48,-12.48 18.71,-28.87 18.71,-45.26z' fill='%23607d8b'/%3E%3Cpath d='M544,256c53.02,0 96,42.98 96,96c0,24.59 -9.25,47.01 -24.45,64c12.59,14.07 21.1,31.87 23.65,51.54l-108.45,108.46h-130.75c-8.81,0 -16,-7.19 -16,-16v-288c0,-8.81 7.19,-16 16,-16zM448,448v64h96c17.63,0 32,-14.38 32,-32c0,-17.63 -14.37,-32 -32,-32zM448,320v64h96c17.63,0 32,-14.38 32,-32c0,-17.63 -14.37,-32 -32,-32z' fill='%23607d8b'/%3E%3Cpath d='M256,512.13h-128v64h-64v-96c0,-72.62 19.16,-141.56 51.5,-206.25c5.58,-11.16 16.82,-17.61 28.5,-17.62h96c11.68,0.01 22.92,6.46 28.5,17.62c32.35,64.69 51.5,133.63 51.5,206.25v96h-64zM129.44,448.13h125.12c-4,-44.39 -16.38,-87.41 -34.63,-128h-55.86c-18.25,40.59 -30.63,83.61 -34.63,128z' fill='%23607d8b'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Espell_check icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M214.63,681.37l50.74,-50.74c12.47,-12.47 32.79,-12.46 45.26,0l105.37,105.37l297.37,-297.37c12.47,-12.47 32.8,-12.46 45.26,0l50.74,50.74c12.47,12.46 12.46,32.8 0,45.26l-370.74,370.74c-12.46,12.46 -32.8,12.47 -45.26,0l-178.74,-178.74c-12.46,-12.47 -12.47,-32.79 0,-45.26z' fill='%238ac545'/%3E%3Cpath d='M768,256h128c35.25,0 64,28.75 64,64v16h-64c0,-8.81 -7.19,-16 -16,-16h-96c-8.81,0 -16,7.19 -16,16v69.83c-19.73,-11.38 -44.27,-11.38 -64,0v-85.83c0,-35.25 28.75,-64 64,-64zM850.71,512h29.29c8.81,0 16,-7.19 16,-16h64v16c0,35.25 -28.75,64 -64,64h-82.74l18.74,-18.74c12.48,-12.48 18.71,-28.87 18.71,-45.26z' fill='%23607d8b'/%3E%3Cpath d='M544,256c53.02,0 96,42.98 96,96c0,24.59 -9.25,47.01 -24.45,64c12.59,14.07 21.1,31.87 23.65,51.54l-108.45,108.46h-130.75c-8.81,0 -16,-7.19 -16,-16v-288c0,-8.81 7.19,-16 16,-16zM448,448v64h96c17.63,0 32,-14.38 32,-32c0,-17.63 -14.37,-32 -32,-32zM448,320v64h96c17.63,0 32,-14.38 32,-32c0,-17.63 -14.37,-32 -32,-32z' fill='%23607d8b'/%3E%3Cpath d='M256,512.13h-128v64h-64v-96c0,-72.62 19.16,-141.56 51.5,-206.25c5.58,-11.16 16.82,-17.61 28.5,-17.62h96c11.68,0.01 22.92,6.46 28.5,17.62c32.35,64.69 51.5,133.63 51.5,206.25v96h-64zM129.44,448.13h125.12c-4,-44.39 -16.38,-87.41 -34.63,-128h-55.86c-18.25,40.59 -30.63,83.61 -34.63,128z' fill='%23607d8b'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-thumb-down {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Ethumb_down icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M725.33,213.33v426.67c0,23.47 -9.38,44.8 -24.74,60.16l-281.18,281.17l-45.22,-44.8c-11.52,-11.52 -18.78,-27.73 -18.78,-45.22l1.28,-13.66l40.54,-194.98h-269.23c-46.93,0 -85.33,-38.41 -85.33,-85.34l0.42,-3.41l-0.42,-0.43v-81.49c0,-11.09 2.13,-21.34 5.97,-31.15l128.85,-300.8c12.8,-30.72 43.1,-52.05 78.51,-52.05h384c46.93,0 85.33,38.4 85.33,85.33zM981.33,128v512h-170.66v-512z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Ethumb_down icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M725.33,213.33v426.67c0,23.47 -9.38,44.8 -24.74,60.16l-281.18,281.17l-45.22,-44.8c-11.52,-11.52 -18.78,-27.73 -18.78,-45.22l1.28,-13.66l40.54,-194.98h-269.23c-46.93,0 -85.33,-38.41 -85.33,-85.34l0.42,-3.41l-0.42,-0.43v-81.49c0,-11.09 2.13,-21.34 5.97,-31.15l128.85,-300.8c12.8,-30.72 43.1,-52.05 78.51,-52.05h384c46.93,0 85.33,38.4 85.33,85.33zM981.33,128v512h-170.66v-512z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-thumb-up {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Ethumb_up icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M980.91,430.08l0.42,0.43v81.49c0,11.09 -2.13,21.34 -5.97,31.15l-128.85,300.8c-12.8,30.72 -43.1,52.05 -78.51,52.05h-384c-46.93,0 -85.33,-38.4 -85.33,-85.33v-426.67c0,-23.47 9.38,-44.8 25.17,-60.16l280.75,-281.17l45.22,44.8c11.52,11.52 18.78,27.73 18.78,45.22l-1.28,13.66l-40.54,194.98h269.23c46.93,0 85.33,38.41 85.33,85.34zM42.67,384h170.66v512h-170.66z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Ethumb_up icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M980.91,430.08l0.42,0.43v81.49c0,11.09 -2.13,21.34 -5.97,31.15l-128.85,300.8c-12.8,30.72 -43.1,52.05 -78.51,52.05h-384c-46.93,0 -85.33,-38.4 -85.33,-85.33v-426.67c0,-23.47 9.38,-44.8 25.17,-60.16l280.75,-281.17l45.22,44.8c11.52,11.52 18.78,27.73 18.78,45.22l-1.28,13.66l-40.54,194.98h269.23c46.93,0 85.33,38.41 85.33,85.34zM42.67,384h170.66v512h-170.66z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-unlock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Elock_open icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M853.33,426.67v426.66c0,46.93 -38.4,85.34 -85.33,85.34h-512c-46.93,0 -85.33,-38.41 -85.33,-85.34v-426.66c0,-46.93 38.4,-85.34 85.33,-85.34h388.27v-85.33c0,-72.96 -59.31,-132.27 -132.27,-132.27c-72.96,0 -132.27,59.31 -132.27,132.27h-81.06c0,-117.76 95.57,-213.33 213.33,-213.33c117.76,0 213.33,95.57 213.33,213.33v85.33h42.67c46.93,0 85.33,38.41 85.33,85.34zM768,426.67h-512v426.66h512zM426.67,640c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Elock_open icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M853.33,426.67v426.66c0,46.93 -38.4,85.34 -85.33,85.34h-512c-46.93,0 -85.33,-38.41 -85.33,-85.34v-426.66c0,-46.93 38.4,-85.34 85.33,-85.34h388.27v-85.33c0,-72.96 -59.31,-132.27 -132.27,-132.27c-72.96,0 -132.27,59.31 -132.27,132.27h-81.06c0,-117.76 95.57,-213.33 213.33,-213.33c117.76,0 213.33,95.57 213.33,213.33v85.33h42.67c46.93,0 85.33,38.41 85.33,85.34zM768,426.67h-512v426.66h512zM426.67,640c0,-46.93 38.4,-85.33 85.33,-85.33c46.93,0 85.33,38.4 85.33,85.33c0,46.93 -38.4,85.33 -85.33,85.33c-46.93,0 -85.33,-38.4 -85.33,-85.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-undo {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eundo icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M958.72,649.39l-101.12,33.28c-44.8,-136.11 -173.23,-234.67 -324.27,-234.67c-83.63,0 -159.14,30.72 -218.45,80.21l154.45,154.46h-384v-384l153.6,153.6c78.93,-68.69 181.33,-110.94 294.4,-110.94c198.4,0 366.08,129.29 425.39,308.06z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eundo icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M958.72,649.39l-101.12,33.28c-44.8,-136.11 -173.23,-234.67 -324.27,-234.67c-83.63,0 -159.14,30.72 -218.45,80.21l154.45,154.46h-384v-384l153.6,153.6c78.93,-68.69 181.33,-110.94 294.4,-110.94c198.4,0 366.08,129.29 425.39,308.06z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-logic-and {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Elogic_and icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M575.32,750.8c81,-66.87 127.68,-165.64 127.68,-270.8c0,-105.17 -46.68,-203.93 -127.68,-270.81l-0.45,-0.37l0.21,-1.14l0.55,-0.2c30.97,-10.95 63.52,-16.48 96.37,-16.48c159.61,0 289,129.39 289,289c0,159.61 -129.39,289 -289,289c-32.85,0 -65.4,-5.53 -96.38,-16.48l-0.54,-0.2l-0.21,-1.15zM352,191c32.85,0 65.4,5.53 96.38,16.48l0.54,0.2l0.21,1.14l-0.45,0.37c-81,66.88 -127.68,165.64 -127.68,270.81c0,105.17 46.68,203.93 127.68,270.8l0.45,0.38l-0.21,1.14l-0.55,0.2c-30.97,10.95 -63.52,16.48 -96.37,16.48c-159.61,0 -289,-129.39 -289,-289c0,-159.61 129.39,-289 289,-289zM511.44,720.31c-80.36,-53.79 -128.44,-143.56 -128.44,-240.31c0,-96.75 48.08,-186.53 128.44,-240.32l0.26,-0.17h0.6l0.26,0.17c80.36,53.8 128.44,143.57 128.44,240.32c0,96.75 -48.08,186.52 -128.45,240.31l-0.25,0.17h-0.61zM512,281.43c-60.16,48.47 -95,121.23 -95,198.57c0,77.34 34.84,150.09 95,198.57c60.16,-48.48 95,-121.23 95,-198.57c0,-77.34 -34.84,-150.09 -95,-198.57z' visibility='hidden'/%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M672,128c194.41,0 352,157.59 352,352c0,194.41 -157.59,352 -352,352c-57.61,0 -112,-13.85 -160,-38.39c-48,24.54 -102.39,38.39 -160,38.39c-194.4,0 -352,-157.6 -352,-352c0,-194.41 157.6,-352 352,-352c57.62,0 112,13.85 160,38.39c48.01,-24.54 102.39,-38.39 160,-38.39zM352,192c-159.06,0 -288,128.94 -288,288c0,159.06 128.94,288 288,288c33.68,0 66,-5.8 96.04,-16.43c-78.2,-64.56 -128.04,-162.24 -128.04,-271.57c0,-109.33 49.84,-207.01 128.04,-271.58c-30.04,-10.62 -62.36,-16.42 -96.04,-16.42zM672,192c-33.68,0 -66,5.8 -96.04,16.42c78.2,64.57 128.04,162.25 128.04,271.58c0,109.33 -49.84,207.01 -128.04,271.57c30.04,10.63 62.36,16.43 96.04,16.43c159.06,0 288,-128.94 288,-288c0,-159.06 -128.94,-288 -288,-288zM512,719.48c77.18,-51.66 128,-139.63 128,-239.48c0,-99.85 -50.82,-187.82 -128,-239.49c-77.18,51.66 -128,139.64 -128,239.49c0,99.85 50.82,187.82 128,239.48z' fill='currentColor'/%3E%3C/g%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M416,480c0,-78.33 35.55,-151.45 96,-199.85c60.45,48.4 96,121.51 96,199.85c0,78.33 -35.55,151.45 -96,199.85c-60.45,-48.4 -96,-121.52 -96,-199.85z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Elogic_and icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M575.32,750.8c81,-66.87 127.68,-165.64 127.68,-270.8c0,-105.17 -46.68,-203.93 -127.68,-270.81l-0.45,-0.37l0.21,-1.14l0.55,-0.2c30.97,-10.95 63.52,-16.48 96.37,-16.48c159.61,0 289,129.39 289,289c0,159.61 -129.39,289 -289,289c-32.85,0 -65.4,-5.53 -96.38,-16.48l-0.54,-0.2l-0.21,-1.15zM352,191c32.85,0 65.4,5.53 96.38,16.48l0.54,0.2l0.21,1.14l-0.45,0.37c-81,66.88 -127.68,165.64 -127.68,270.81c0,105.17 46.68,203.93 127.68,270.8l0.45,0.38l-0.21,1.14l-0.55,0.2c-30.97,10.95 -63.52,16.48 -96.37,16.48c-159.61,0 -289,-129.39 -289,-289c0,-159.61 129.39,-289 289,-289zM511.44,720.31c-80.36,-53.79 -128.44,-143.56 -128.44,-240.31c0,-96.75 48.08,-186.53 128.44,-240.32l0.26,-0.17h0.6l0.26,0.17c80.36,53.8 128.44,143.57 128.44,240.32c0,96.75 -48.08,186.52 -128.45,240.31l-0.25,0.17h-0.61zM512,281.43c-60.16,48.47 -95,121.23 -95,198.57c0,77.34 34.84,150.09 95,198.57c60.16,-48.48 95,-121.23 95,-198.57c0,-77.34 -34.84,-150.09 -95,-198.57z' visibility='hidden'/%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M672,128c194.41,0 352,157.59 352,352c0,194.41 -157.59,352 -352,352c-57.61,0 -112,-13.85 -160,-38.39c-48,24.54 -102.39,38.39 -160,38.39c-194.4,0 -352,-157.6 -352,-352c0,-194.41 157.6,-352 352,-352c57.62,0 112,13.85 160,38.39c48.01,-24.54 102.39,-38.39 160,-38.39zM352,192c-159.06,0 -288,128.94 -288,288c0,159.06 128.94,288 288,288c33.68,0 66,-5.8 96.04,-16.43c-78.2,-64.56 -128.04,-162.24 -128.04,-271.57c0,-109.33 49.84,-207.01 128.04,-271.58c-30.04,-10.62 -62.36,-16.42 -96.04,-16.42zM672,192c-33.68,0 -66,5.8 -96.04,16.42c78.2,64.57 128.04,162.25 128.04,271.58c0,109.33 -49.84,207.01 -128.04,271.57c30.04,10.63 62.36,16.43 96.04,16.43c159.06,0 288,-128.94 288,-288c0,-159.06 -128.94,-288 -288,-288zM512,719.48c77.18,-51.66 128,-139.63 128,-239.48c0,-99.85 -50.82,-187.82 -128,-239.49c-77.18,51.66 -128,139.64 -128,239.49c0,99.85 50.82,187.82 128,239.48z' fill='currentColor'/%3E%3C/g%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M416,480c0,-78.33 35.55,-151.45 96,-199.85c60.45,48.4 96,121.51 96,199.85c0,78.33 -35.55,151.45 -96,199.85c-60.45,-48.4 -96,-121.52 -96,-199.85z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-visibility-on {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Evisibility icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M981.33,512c-73.81,187.31 -256,320 -469.33,320c-213.33,0 -395.52,-132.69 -469.33,-320c73.81,-187.31 256,-320 469.33,-320c213.33,0 395.52,132.69 469.33,320zM725.33,512c0,-117.76 -95.57,-213.33 -213.33,-213.33c-117.76,0 -213.33,95.57 -213.33,213.33c0,117.76 95.57,213.33 213.33,213.33c117.76,0 213.33,-95.57 213.33,-213.33zM640,512c0,70.83 -57.17,128 -128,128c-70.83,0 -128,-57.17 -128,-128c0,-70.83 57.17,-128 128,-128c70.83,0 128,57.17 128,128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Evisibility icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M981.33,512c-73.81,187.31 -256,320 -469.33,320c-213.33,0 -395.52,-132.69 -469.33,-320c73.81,-187.31 256,-320 469.33,-320c213.33,0 395.52,132.69 469.33,320zM725.33,512c0,-117.76 -95.57,-213.33 -213.33,-213.33c-117.76,0 -213.33,95.57 -213.33,213.33c0,117.76 95.57,213.33 213.33,213.33c117.76,0 213.33,-95.57 213.33,-213.33zM640,512c0,70.83 -57.17,128 -128,128c-70.83,0 -128,-57.17 -128,-128c0,-70.83 57.17,-128 128,-128c70.83,0 128,57.17 128,128z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-visibility-off {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Evisibility_off icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M139.52,128l756.48,756.48l-54.19,54.19l-125.01,-124.59l-17.92,-17.92c-57.6,23.04 -120.75,35.84 -186.88,35.84c-213.33,0 -395.52,-132.69 -469.33,-320c33.28,-84.48 88.74,-157.87 159.57,-212.91l-19.63,-19.62l-97.28,-97.28zM433.92,314.03l-92.16,-92.16c52.91,-19.2 110.08,-29.87 169.81,-29.87c213.33,0 395.53,132.69 469.34,320c-31.15,79.36 -81.92,148.91 -146.35,202.67l-124.59,-124.59c9.81,-24.32 15.36,-50.35 15.36,-78.08c0,-117.76 -95.57,-213.33 -213.33,-213.33c-27.73,0 -53.76,5.55 -78.08,15.36zM298.67,512c0,117.76 95.57,213.33 213.33,213.33c33.71,0 65.28,-8.53 93.87,-22.61l-66.14,-66.13c-8.96,2.13 -18.34,3.41 -27.73,3.41c-70.83,0 -128,-57.17 -128,-128c0,-9.39 1.28,-18.77 3.41,-27.73l-66.13,-66.14c-14.08,28.59 -22.61,60.16 -22.61,93.87zM512.43,384.43c70.83,0 128,57.17 128,128l-0.86,6.82l-134.4,-134.4z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: action-color-1 --%3E%3Cdesc%3Evisibility_off icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='action-color-1'%3E%3Cpath d='M139.52,128l756.48,756.48l-54.19,54.19l-125.01,-124.59l-17.92,-17.92c-57.6,23.04 -120.75,35.84 -186.88,35.84c-213.33,0 -395.52,-132.69 -469.33,-320c33.28,-84.48 88.74,-157.87 159.57,-212.91l-19.63,-19.62l-97.28,-97.28zM433.92,314.03l-92.16,-92.16c52.91,-19.2 110.08,-29.87 169.81,-29.87c213.33,0 395.53,132.69 469.34,320c-31.15,79.36 -81.92,148.91 -146.35,202.67l-124.59,-124.59c9.81,-24.32 15.36,-50.35 15.36,-78.08c0,-117.76 -95.57,-213.33 -213.33,-213.33c-27.73,0 -53.76,5.55 -78.08,15.36zM298.67,512c0,117.76 95.57,213.33 213.33,213.33c33.71,0 65.28,-8.53 93.87,-22.61l-66.14,-66.13c-8.96,2.13 -18.34,3.41 -27.73,3.41c-70.83,0 -128,-57.17 -128,-128c0,-9.39 1.28,-18.77 3.41,-27.73l-66.13,-66.14c-14.08,28.59 -22.61,60.16 -22.61,93.87zM512.43,384.43c70.83,0 128,57.17 128,128l-0.86,6.82l-134.4,-134.4z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

.fw-icon-weigh {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Eweight_ring icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='%23607d8b' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M512,128c70.69,0 128,57.31 128,128c0,23.31 -6.24,45.17 -17.13,64h99c28.03,0 51.85,17.17 60.72,43.76l149.33,448c13.88,41.64 -16.82,84.24 -60.71,84.24h-718.42c-43.89,0 -74.59,-42.6 -60.71,-84.24l149.33,-448c8.87,-26.59 32.69,-43.76 60.72,-43.76h99c-10.89,-18.83 -17.13,-40.69 -17.13,-64c0,-70.69 57.31,-128 128,-128zM512,192c-35.34,0 -64,28.65 -64,64c0,35.35 28.66,64 64,64c35.35,0 64,-28.65 64,-64c0,-35.35 -28.65,-64 -64,-64z'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3Cdesc%3Eweight_ring icon - Licensed under Iconfu Standard License v1.0 (https://www.iconfu.com/iconfu_standard_license) - Incors GmbH%3C/desc%3E%3Cg fill='%23607d8b' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cpath d='M512,128c70.69,0 128,57.31 128,128c0,23.31 -6.24,45.17 -17.13,64h99c28.03,0 51.85,17.17 60.72,43.76l149.33,448c13.88,41.64 -16.82,84.24 -60.71,84.24h-718.42c-43.89,0 -74.59,-42.6 -60.71,-84.24l149.33,-448c8.87,-26.59 32.69,-43.76 60.72,-43.76h99c-10.89,-18.83 -17.13,-40.69 -17.13,-64c0,-70.69 57.31,-128 128,-128zM512,192c-35.34,0 -64,28.65 -64,64c0,35.35 28.66,64 64,64c35.35,0 64,-28.65 64,-64c0,-35.35 -28.65,-64 -64,-64z'/%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

/*.fw-icon-question {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ehelp_outline icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M938.67,512c0,235.52 -191.15,426.67 -426.67,426.67c-235.52,0 -426.67,-191.15 -426.67,-426.67c0,-235.52 191.15,-426.67 426.67,-426.67c235.52,0 426.67,191.15 426.67,426.67zM853.33,512c0,-188.16 -153.17,-341.33 -341.33,-341.33c-188.16,0 -341.33,153.17 -341.33,341.33c0,188.16 153.17,341.33 341.33,341.33c188.16,0 341.33,-153.17 341.33,-341.33zM682.67,426.67c0,106.67 -128,117.33 -128,213.33h-85.34c0,-138.67 128,-128 128,-213.33c0,-46.93 -38.4,-85.34 -85.33,-85.34c-46.93,0 -85.33,38.41 -85.33,85.34h-85.34c0,-94.29 76.38,-170.67 170.67,-170.67c94.29,0 170.67,76.38 170.67,170.67zM469.33,682.67h85.34v85.33h-85.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Ehelp_outline icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='%2303b8e5' class='color-1'%3E%3Cpath d='M938.67,512c0,235.52 -191.15,426.67 -426.67,426.67c-235.52,0 -426.67,-191.15 -426.67,-426.67c0,-235.52 191.15,-426.67 426.67,-426.67c235.52,0 426.67,191.15 426.67,426.67zM853.33,512c0,-188.16 -153.17,-341.33 -341.33,-341.33c-188.16,0 -341.33,153.17 -341.33,341.33c0,188.16 153.17,341.33 341.33,341.33c188.16,0 341.33,-153.17 341.33,-341.33zM682.67,426.67c0,106.67 -128,117.33 -128,213.33h-85.34c0,-138.67 128,-128 128,-213.33c0,-46.93 -38.4,-85.34 -85.33,-85.34c-46.93,0 -85.33,38.41 -85.33,85.34h-85.34c0,-94.29 76.38,-170.67 170.67,-170.67c94.29,0 170.67,76.38 170.67,170.67zM469.33,682.67h85.34v85.33h-85.34z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: currentColor;
}*/
:root {
  --fwmenu-item-background-color: white;
  --fwmenu-item-background-color-hover: rgba(0,0,0,0.05);
  --fw-primary-bgcolor: blue;
}

.fwmenu {
  height: 100%;
  background-color: var(--fwml-menu-bgcolor);
  padding-bottom: 1px; /*pour eviter la scrollbar vertical de la page sur le menu principal tout en bas*/
}
.fwmenu .dxbl-menu-vertical {
  padding: 5px;
}

.fwmenu-submenu {
  border: unset !important;
  background-color: transparent !important;
  margin-left: 2px;
  border-radius: 8px !important;
}

.fwmenu-dropdown .dxbl-dropdown-body {
  border-left: var(--bs-primary) 5px solid;
  border-radius: 8px !important;
  background-color: transparent !important;
}
.fwmenu-dropdown .dxbl-dropdown-body .dxbl-menu-item-pos-start {
  margin-top: -1px; /*Pour eviter un trait blanc en haut du menu*/
}

.dxbl-menu-item-list::-webkit-scrollbar {
  width: 5px;
  background-color: var(--dxbl-dropdown-bg);
}
.dxbl-menu-item-list::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--bs-primary);
}

.fwmenu-main {
  cursor: pointer;
  padding: 4px 9px;
}
.fwmenu-main:hover {
  background-color: var(--fwmenu-item-background-color-hover) !important;
}
.fwmenu-main .dxbl-image {
  width: 48px;
  height: 48px;
}
.fwmenu-main .dxbl-menu-item-text-container {
  padding-left: 0 !important;
  margin-left: 0px !important;
}
.fwmenu-main .dxbl-menu-dropdown-toggle {
  display: none !important;
}
.fwmenu-main .dxbl-menu-dropdown-item {
  min-width: 200px;
}
.fwmenu-main svg {
  height: 48px;
  width: 48px;
}

.fwmenu-item {
  cursor: pointer;
  padding-top: 0px !important;
  flex-direction: row;
  align-items: center;
  min-height: 40px;
  height: 40px;
  padding-top: 4px;
  background-color: var(--fwmenu-item-background-color);
  border-radius: 0px;
}
.fwmenu-item:hover {
  background-color: var(--fwmenu-item-background-color-hover) !important;
  color: var(--fwmenu-item-color-hover) !important;
}
.fwmenu-item.group {
  background-color: var(--bs-primary) !important;
  color: var(--fwmenu-item-color-hover) !important;
  font-weight: bold;
  cursor: default;
}
.fwmenu-item .dxbl-image {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
}
.fwmenu-item .dropdown-item {
  padding: 0px !important;
}
.fwmenu-item span {
  padding-left: 0px;
  vertical-align: middle;
}
.fwmenu-item .dxbl-menu-item {
  width: 100%;
  align-items: center;
}
.fwmenu-item .dxbl-menu-item-tmpl {
  width: 100%;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fwmenu-item .dxbl-menu-item-tmpl .fwmenu-subtext-span {
  padding-left: 8px;
  width: 100%;
  padding-right: 5px;
  white-space: nowrap;
}
.fwmenu-item .dxbl-menu-item-tmpl .fwmenu-subtext {
  display: flex;
  justify-content: center;
  width: 100%;
}
.fwmenu-item .dxbl-menu-item-text-container {
  margin-left: var(--dxbl-btn-image-spacing) !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.fwmenu-item svg {
  width: 32px;
  height: 32px;
}

.fwmenu-submenutitle {
  background-color: lightgray;
}
.fwmenu-submenutitle svg {
  width: 32px;
  height: 32px;
}

.ant-popover-placement-bottomLeft {
  margin-left: -22px;
  margin-top: -5px;
}

.ant-popover-placement-topLeft {
  margin-left: -22px;
  margin-top: 5px;
}

.fwbadge-main {
  margin-left: -12px !important;
  margin-top: -30px !important;
}

:root {
  --fwheader-item-background-color: white;
  --fwheader-item-background-color-hover: lightgray;
}

.fwheader {
  /*    .anticon {
          vertical-align: 2.25px;
      }
  */
  background-color: var(--fwml-header-bgcolor);
  color: var(--fwml-header-color);
  height: 50px;
}
.fwheader .dxbl-btn {
  padding: 5px;
}
.fwheader .dxbl-btn:hover {
  background-color: var(--fwmenu-item-background-color-hover) !important;
}
.fwheader li:last-child {
  padding-right: 10px;
}
.fwheader .dxbl-menu-title {
  height: 50px;
  line-height: unset;
  display: flex;
}
.fwheader .dxbl-menu-title .fwheader-title {
  padding-right: 10px;
}
.fwheader .dxbl-menu-dropdown-toggle {
  display: none;
}
.fwheader .dxbl-btn:not(.dxbl-disabled):not(:disabled):hover {
  transform: unset !important;
}
.fwheader .ant-avatar {
  background-color: var(--fwheader-item-background-color);
  color: var(--bs-primary);
  font-weight: bold;
}
.fwheader .bg-red {
  background-color: red;
}

.fwheader-item .dxbl-menu-item-text-container {
  display: flex;
  align-items: center;
}
.fwheader-item .fwheader-domainlabel {
  color: var(--fwml-header-color);
  font-weight: bold;
  padding-right: 10px;
}

.fwheader-item.dx-menu-item > dxbl-menu-item > a:not(disabled):hover:before {
  background-color: transparent !important;
}

.fwheader-user-profile {
  padding: 8px;
  overflow: hidden;
}

.fwheader-menu {
  border: 0 !important;
  background-color: unset !important;
  cursor: pointer;
  padding: 5px 2px !important;
}
.fwheader-menu svg {
  height: 37px !important;
  width: 37px !important;
}

.fwheader-log-off-btn {
  padding-top: 12px;
}

.dxbl-grid {
  --dxbl-grid-header-bg: var(--fwcm-list-header-bgcolor);
  --dxbl-grid-header-color: var(--fwcm-list-header-color);
  --dxbl-grid-focus-bg: var(--fwcm-list-selection-bgcolor);
  --dxbl-grid-focus-color: var(--fwcm-list-selection-color);
  --dxbl-grid-selection-focus-bg: var(--fwcm-list-selection-bgcolor);
  --dxbl-grid-selection-focus-color: var(--fwcm-list-selection-color);
  --dxbl-grid-empty-data-container-padding-x: 1em;
  --dxbl-grid-empty-data-container-padding-y: 1em;
}
.dxbl-grid .dxbl-grid-table .dxbl-grid-selection-cell .dxbl-grid-column-resize-anchor {
  display: none;
}
.dxbl-grid .dxbl-grid-table .dxbl-grid-command-cell .dxbl-grid-column-resize-anchor {
  display: none;
}
.dxbl-grid .dxbl-grid-table > thead {
  /*-- Couleur de la ligne de filtre --*/
}
.dxbl-grid .dxbl-grid-table > thead .dxbl-grid-header {
  z-index: 1;
}
.dxbl-grid .dxbl-grid-table > thead > tr.dxbl-grid-filter-row > td::before {
  content: "";
  background-color: currentColor;
  opacity: 0.05;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 0;
}
.dxbl-grid .dxbl-grid-table > thead > tr.dxbl-grid-filter-row > td.dxbl-grid-command-cell {
  /*Bouton Clear de la barre de filtre*/
}
.dxbl-grid .dxbl-grid-table > thead > tr.dxbl-grid-filter-row > td.dxbl-grid-command-cell .dxbl-btn {
  color: var(--dxbl-grid-header-color);
  padding: 3px;
  border-radius: 3px;
  margin-top: 3px;
  /*                        &:hover {
      background-color: var(--dxbl-grid-header-bg);
      color: var(--dxbl-grid-header-color);
  }*/
}
.dxbl-grid .dxbl-grid-table > thead > tr.dxbl-grid-filter-row > td.dxbl-grid-command-cell .dxbl-btn span {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eclear icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M572.16,512l238.51,238.51l-60.16,60.16l-238.51,-238.51l-238.51,238.51l-60.16,-60.16l238.51,-238.51l-238.51,-238.51l60.16,-60.16l238.51,238.51l238.51,-238.51l60.16,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eclear icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M572.16,512l238.51,238.51l-60.16,60.16l-238.51,-238.51l-238.51,238.51l-60.16,-60.16l238.51,-238.51l-238.51,-238.51l60.16,-60.16l238.51,238.51l238.51,-238.51l60.16,60.16z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
  width: 16px;
  height: 16px;
}
.dxbl-grid .dxbl-grid-table > tbody > tr {
  position: relative;
  /*                &[data-visible-index]:not(.dxbl-grid-group-row):not(.dxbl-grid-empty-row):hover {
                      outline: 2px solid var(--dxbl-grid-focus-frame-color);
                      outline-offset: -2px;
                  }
  */
  /*Bordure de la ligne sur le hover*/
  /*                &[data-visible-index]:not(.dxbl-grid-group-row):not(.dxbl-grid-empty-row):hover::after {
      content: "";
      position: absolute;
      top: 2px;
      left: 0px;
      right: 0px;
      bottom: 2px;
      //border: 2px solid var(--dxbl-grid-focus-frame-color);
      box-shadow: 0 0 0 2px var(--dxbl-grid-focus-frame-color);
      pointer-events: none;
      z-index: 20;
  }*/
}
.dxbl-grid .dxbl-grid-table > tbody > tr > td.dxbl-grid-empty-data {
  vertical-align: top;
  opacity: 0.5;
}
.dxbl-grid .dxbl-grid-table > tbody > tr > td.dxbl-grid-empty-data > span {
  font-weight: 400;
}
.dxbl-grid .dxbl-grid-table > tbody > tr > td.dxbl-grid-fixed-cell {
  background-color: var(--dxbl-grid-bg);
  /*Pour ne pas que l'effet de mise a jour passe devant la case a cocher et la barre d'outil*/
}
.dxbl-grid .dxbl-grid-table > tbody > tr > td.dxbl-grid-fixed-cell .dxbl-toolbar, .dxbl-grid .dxbl-grid-table > tbody > tr > td.dxbl-grid-fixed-cell .dxbl-checkbox-check-element {
  z-index: 100;
}
.dxbl-grid .dxbl-grid-table > tbody > tr > td.dxbl-grid-fixed-cell .dxbl-grid-expand-button {
  z-index: 1;
}
.dxbl-grid .dxbl-grid-header {
  --dxbl-grid-text-cell-padding-y: 0.35rem;
}

.fwgrid {
  height: 100%;
}

.fwgrid-command-btn {
  padding: 3px 3px !important;
  border-width: 0px;
}
.fwgrid-command-btn .dxbl-image {
  margin: 1px;
}

.fwgrid-toolbar-btn {
  background-color: currentColor;
}

/*Met les icones de la CommandColumn avec la couleur de la police de la ligne Focused*/
.dxbl-grid-focused-row .fwgrid-command-btn .dxbl-image {
  background-color: var(--dxbl-grid-focus-color) !important;
}

/*-- Effet sur la ligne modifiee --*/
.fwgrid-status-none {
  background-color: transparent;
  transition-property: background;
  transition-duration: 1s;
  transition-timing-function: ease;
}
.fwgrid-status-none.fwgrid-status-updated {
  background-color: var(--fw-grid-status-updated);
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}

.fwgrid-status-none .dxbl-grid-fixed-cell::after {
  content: "";
  position: absolute;
  left: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  top: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  right: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  bottom: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  border-radius: inherit;
  background-color: transparent !important;
  transition-property: background;
  transition-duration: 1s;
  transition-timing-function: ease;
}

.fwgrid-status-none.fwgrid-status-updated .dxbl-grid-fixed-cell::after {
  content: "";
  position: absolute;
  left: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  top: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  right: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  bottom: calc(0px - var(--dxbl-border-width-with-scaling, 0px));
  border-radius: inherit;
  background-color: var(--fw-grid-status-updated) !important;
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}

/*--------------*/
/*.dxbl-grid-focused-row {
    outline: 4px solid var(--dxbl-grid-focus-frame-color);
    outline-offset: -2px;
}
.dxbl-grid .dxbl-grid-table .dxbl-grid-focused-row:not(.dxbl-grid-touch-selection):not(.dxbl-grid-touch-selection-edge) > td:not(.dxbl-grid-empty-cell):not(.dxbl-grid-indent-cell)::before {
    background-color: unset !important;
    color: unset !important;
}*/
/*Bouton de selectionneur colonnes*/
.fwgrid-column-chooser-btn-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eview_column icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M426.67,213.33h213.33v554.67h-213.33zM896,213.33v554.67h-213.33v-554.67zM170.67,213.33h213.33v554.67h-213.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0,0,1024,1024'%3E%3C!-- Color names: color-1 --%3E%3Cdesc%3Eview_column icon - Licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) - Created with Iconfu.com - Derivative work of Material icons (Copyright Google Inc.)%3C/desc%3E%3Cg fill='none' fill-rule='nonzero' style='mix-blend-mode: normal'%3E%3Cg color='currentColor' class='color-1'%3E%3Cpath d='M426.67,213.33h213.33v554.67h-213.33zM896,213.33v554.67h-213.33v-554.67zM170.67,213.33h213.33v554.67h-213.33z' fill='currentColor'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
}

/*Header template*/
/*#fw-content .fwgrid-header-template {
    padding: .375rem;
    border: 1px solid transparent; // var(--bs-border-color);
    border-bottom: none;
}
*/
/*.dxbl-fl-ctrl {
    .dxbl-gridlayout-item:not(:last-child) {
        border-top: 1px solid var(--bs-border-color);
        border-left: 1px solid var(--bs-border-color);
        border-right: 1px solid var(--bs-border-color);
    }
}
*/
.fwgrid-header-template:not(#fw-content) {
  padding: 0.375rem;
}

.fwgrid-rowstyle {
  border: 1px solid;
}

.fwgrid-settings-form.dxbl-fl {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  background: white;
  width: 350px;
  padding: 8px;
}
.fwgrid-settings-form.dxbl-fl .close-btn {
  display: flex;
  flex-direction: row-reverse;
}
.fwgrid-settings-form.dxbl-fl .dxbl-row .dxbl-fl-item .dxbl-fl-ctrl-nc {
  margin-top: 0;
}

.fwgrid-settings-form-columnwidth .dxbl-fl-ctrl {
  text-align: end;
}

.fwgrid-rowstyle-form.dxbl-fl {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  background: white;
  width: 300px;
  padding: 8px;
}
.fwgrid-rowstyle-form.dxbl-fl .close-btn {
  display: flex;
  flex-direction: row-reverse;
}
.fwgrid-rowstyle-form.dxbl-fl .dxbl-row .dxbl-fl-item .dxbl-fl-ctrl-nc {
  margin-top: 0;
}

.dxbl-window .fwgrid-rowstyle-left {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  outline-color: var(--dxbl-window-border-color);
  outline-width: 1px;
  outline-offset: 0;
  outline-style: solid;
  text-align: center;
}

.dxbl-window .fwgrid-rowstyle-right {
  align-self: center;
}

.fw-row-indicator {
  height: inherit;
  min-width: 6px;
  margin: 1px 1px;
}

.fwgrid-toolbar-subitem {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.fwgrid-hide-detail-button .dxbl-grid-expand-button-cell .dxbl-grid-expand-button {
  visibility: hidden;
}

.fwgrid-header-no-paddingtop .fwgrid-header-template {
  padding-top: 0px !important;
}

.fwgrid-action-confirm {
  white-space: nowrap;
  min-width: 110px;
}

.fwgrid-action-confirmbuttons {
  text-align: end;
  margin: 0 10px 10px 10px;
  white-space: nowrap;
}

.h-300 {
  height: 300px;
}

.fw-display-none {
  display: none !important;
}

.fw-display-inline-flex {
  display: inline-flex !important;
}

.fw-display-block {
  display: block;
}

.fw-layoutitem-display-inline-flex .dxbl-fl-ctrl {
  display: inline-flex !important;
}
.fw-layoutitem-display-inline-flex .dxbl-fl-ctrl label {
  padding-left: 5px;
  align-self: center;
}

.fw-layoutitem-display-flex-center .dxbl-fl-ctrl {
  display: flex;
  align-items: center;
}

.fw-line-through {
  text-decoration: line-through;
}

.fw-jc-center {
  justify-content: center !important;
}

.fw-jc-end {
  justify-content: flex-end !important;
}

.fwdg-command-btn {
  padding: 3px !important;
}

.fw-text-align-end {
  text-align: end;
}

.fw-text-align-center {
  text-align: center;
}

.fw-align-items-center {
  align-items: center;
}

.fw-input-text-align-center input {
  text-align: center;
}

.fw-input-text-align-right input {
  text-align: right;
}

.fw-margin-left-10 {
  margin-left: 10px;
}

.fw-margin-right-10 {
  margin-right: 10px;
}

.fw-margin-right-15 {
  margin-right: 15px;
}

.fw-margin-right-2 {
  margin-right: 2px;
}

.fw-padding-right-5 {
  padding-right: 5px;
}

.fw-padding-left-10 {
  padding-left: 10px;
}

.fw-padding-bottom-5 {
  padding-bottom: 5px;
}

.fw-padding-top-12 {
  padding-top: 12px;
}

.fw-no-padding {
  padding: 0px !important;
}

.fw-no-padding-top {
  padding-top: 0px !important;
}

.fw-no-padding-bottom {
  padding-bottom: 0px !important;
}

.fw-no-padding-left {
  padding-left: 0px !important;
}

.fw-no-padding-right {
  padding-right: 0px !important;
}

.fw-vertical-align-middle {
  vertical-align: middle;
}

.fw-margin-top-5 {
  margin-top: 5px;
}

.fw-margin-bottom-5 {
  margin-bottom: 5px;
}

.fw-margin-5 {
  margin: 5px;
}

.fw-no-margin-top {
  margin-top: 0px !important;
}

.fw-bold {
  font-weight: 600;
}

.fw-border-bottom {
  border-bottom: solid 1px #dee2e6;
}

.fw-indent-level1 {
  margin-left: 20px;
  width: unset;
}

.fw-indent-level2 {
  margin-left: 40px;
  width: unset;
}

.fw-indent-level3 {
  margin-left: 60px;
  width: unset;
}

.fw-layoutgroup-nobottomspace {
  margin-bottom: 0px !important;
}

.fw-alignself-center {
  align-self: center !important;
}

.fw-alignself-flexend {
  align-self: flex-end !important;
}

.fw-position-relative {
  position: relative !important;
}

.fw-editor-icon {
  width: 1rem;
  height: 1rem;
  background-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-position: center center;
  background-color: currentColor;
  opacity: 0.7;
}

.fw-dateedit-width {
  width: 145px;
}

.fw-dateedit-1btn-width {
  width: 174px;
}

.fw-dateedit-2btn-width {
  width: 243px;
}

.fw-flex-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fw-border-top {
  border-top: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
}

.fw-border-bottom {
  border-bottom: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
}

.fw-border-bottom-notlast:not(:last-child) {
  border-bottom: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
}

.fw-border-left {
  border-left: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
}

.fw-border-right {
  border-right: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
}

.fw-text-no-wrap {
  text-wrap: nowrap;
}

.fw-max-width-min-content {
  max-width: min-content;
}

.fw-toolbar-in-cell button {
  padding: 0 2px;
}

.fw-flex-alignitems-center {
  align-items: center;
}

.fw-zindex-2200 {
  z-index: 2200;
}

.fw-scrollx-little::-webkit-scrollbar {
  height: 5px;
  background-color: var(--dxbl-dropdown-bg);
}
.fw-scrollx-little::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: var(--bs-primary);
}

.fw-scrolly-little::-webkit-scrollbar {
  width: 5px;
  background-color: var(--dxbl-dropdown-bg);
}
.fw-scrolly-little::-webkit-scrollbar-thumb {
  width: 5px;
  background-color: var(--bs-primary);
}

.fw-label-column {
  display: flex;
  flex-direction: column;
}

.fwmultilang-lang {
  padding-right: 6px;
  font-weight: inherit !important;
}
.fwmultilang-lang .with-margin {
  margin-top: var(--dxbl-row-item-spacing-y) !important;
}

.fwmultilang-textarea .with-margin {
  margin-top: var(--dxbl-row-item-spacing-y) !important;
}
.fwmultilang-textarea .dxbs-memo {
  width: 100%;
}
.fwmultilang-textarea .dxbs-memo textarea {
  width: 100%;
}

.fwpage-menu-edit-combo {
  display: inline-flex;
}

.fwpage-menu-edit-icone-text {
  margin-left: 10px;
  align-self: center;
}

.fwpage-menu-edit-icon-ul {
  list-style-type: none;
}
.fwpage-menu-edit-icon-ul li {
  display: inline-block;
  height: 32px;
  width: 32px;
}

.fwpage-menu-edit-icon {
  height: 48px;
  width: 48px;
}

.fwpage-menu-icon {
  display: flex;
}
.fwpage-menu-icon button {
  margin-right: 5px;
}

.fwpage-filtercriteria-tabs {
  height: 300px !important;
}
.fwpage-filtercriteria-tabs .dxbl-tabs-tablist {
  margin-right: 15px;
}
.fwpage-useraccountentity .dxbl-toolbar-title {
  font-size: 14px;
}
.fwpage-useraccountentity .authorization-title {
  padding-top: 15px;
  font-size: 16px;
  font-weight: bold;
}

.fwpage-userprofil-target-treeview {
  height: 338px;
}

.fwpage-scheduler-dayofweek .dxbl-fl-ctrl {
  display: inline-flex;
}
.fwpage-scheduler-dayofweek .dxbl-checkbox {
  margin-right: 15px;
}

.fwpage-notificationsetting-properties {
  overflow-y: auto;
  height: 213px;
  max-height: 213px;
}
.fwpage-notificationsetting-properties ul {
  list-style: none;
  padding-left: 1rem;
}
.fwpage-notificationsetting-properties li {
  padding: 5px;
  border-bottom: 1px solid #ced4da;
  cursor: pointer;
}
.fwpage-notificationsetting-properties li span {
  vertical-align: middle;
}

.fwpage-criterion-tabs {
  height: 271px;
  margin-top: 10px;
}

.fwpage-rowstyle-color {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.fwft-content {
  width: 100%;
  max-height: 400px;
  border-bottom: 1px solid var(--bs-border-color);
  display: inline-flex;
}
.fwft-content.borderred {
  border: solid 1px #ced4da;
  border-bottom: solid 0px;
}
.fwft-content li {
  display: flex;
  flex-direction: column;
}

.fwft-editform {
  padding-bottom: 8px;
}

.fwft-button-parent {
  align-self: flex-end;
}

.fwft-description-container {
  display: inline-flex;
  padding: 0px 0px;
}
.fwft-description-container .fwft-description {
  padding-right: 10px;
  align-self: center;
}

.fwft-layout-item {
  /*    &.valid:not(.invalid) {
          border-color: var(--dxbl-text-edit-validation-valid-color) !important;
      }

      &.invalid {
          border-color: var(--dxbl-text-edit-validation-invalid-color) !important;
      }
  */
}

.fwft-ul {
  list-style: none;
  margin-left: 0px;
  margin-bottom: 0px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: flex-start;
}
.fwft-ul li {
  margin-right: 10px;
  max-width: 200px;
}
.fwft-ul li dxbl-date-edit {
  width: 150px;
}
.fwft-ul li .dxbl-text {
  font-size: 14px;
  padding: 0 var(--dxbl-text-padding-x);
}
.fwft-ul li dxbl-dropdown-box {
  width: 150px !important;
}
.fwft-ul.withpaddingbottom {
  padding-bottom: 10px;
}

.fwft-ul:last-child {
  padding-bottom: 10px;
}

.fwft-inline-grid {
  width: 100%;
  padding: 0.5rem;
}
.fwft-inline-grid .fwft-inline-caption {
  max-width: 100px;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  align-items: flex-start;
}
.fwft-inline-grid .fwft-inline-caption div {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 500;
  padding-top: 5px;
}
.fwft-inline-grid .fwft-inline-ctrl {
  /*max-width: 150px;*/
  min-width: 150px;
}

.fwft-footer {
  border-top: solid 0px #ced4da !important;
  border-bottom: solid 1px #ced4da;
  padding-top: 0px !important;
  padding-right: 0px !important;
}

.fwft-footer-last {
  border-bottom: solid 0px #ced4da !important;
  padding-bottom: 0px !important;
}

:root {
  --divFiltreHeight:0px;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.sticky {
  position: sticky;
}

.fwupload-uploadzone {
  border-style: dashed !important;
  border-width: 2px !important;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fwupload-uploadzone .fw-icon-dropzone {
  background-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-position: center center;
  background-color: currentColor;
  width: 48px;
  height: 48px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='49' height='48' viewBox='0 0 49 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.0024 29H31.0024L24.0024 22L17.0024 29H22.0024V37H26.0024V29Z' /%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.00244 41C7.00244 43.2 8.80244 45 11.0024 45H37.0024C39.2024 45 41.0024 43.2 41.0024 41V14L30.0024 3H11.0024C8.80244 3 7.00244 4.8 7.00244 7V41ZM30.0024 14V7L37.0024 14H30.0024ZM26.0024 18H37.0024V41H11.0024V7H26.0024V18Z' /%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='49' height='48' viewBox='0 0 49 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26.0024 29H31.0024L24.0024 22L17.0024 29H22.0024V37H26.0024V29Z' /%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.00244 41C7.00244 43.2 8.80244 45 11.0024 45H37.0024C39.2024 45 41.0024 43.2 41.0024 41V14L30.0024 3H11.0024C8.80244 3 7.00244 4.8 7.00244 7V41ZM30.0024 14V7L37.0024 14H30.0024ZM26.0024 18H37.0024V41H11.0024V7H26.0024V18Z' /%3E%3C/svg%3E%0A");
}

.fwsc-scheduler {
  box-sizing: border-box;
  container-name: scheduler;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
  box-shadow: none;
  color: var(--bs-body-color);
  overflow: hidden;
  background-clip: border-box;
}

.fwsc-view {
  display: flex;
}

.fwsc-view, .fwsc-view * {
  user-select: none;
}

.fwsc-timeline-view {
  flex: auto;
  flex-wrap: nowrap;
  flex-direction: column;
  overflow: auto;
  cursor: grab;
}

.fwsc-timeline-view:active {
  cursor: grabbing;
}

.fwsc-view-header {
  width: fit-content;
  padding: 0.5rem 0;
  position: sticky;
  inset-block-start: 0px;
  background-color: var(--bs-body-bg);
  z-index: 2;
  border-block-end: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
  text-transform: uppercase;
  color: inherit;
  display: flex;
}

.fwsc-slot-header {
  flex: 0 0 auto;
  font-size: 0.75rem;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
.fwsc-slot-header div {
  overflow: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  text-align: start;
}

.fwsc-resource-header {
  position: absolute;
  background-color: white;
  color: white;
  z-index: 10;
  text-align: center;
  font-size: var(--rz-scheduler-header-font-size);
  padding: var(--rz-scheduler-header-padding);
  text-transform: var(--rz-scheduler-header-text-transform);
}

.fwsc-resource {
  position: sticky;
  z-index: 1;
  inset-inline-start: 0;
  justify-content: center;
  align-items: center;
  border-inline-start: none;
  border-inline-end: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
  display: flex;
  width: fit-content;
  font-size: 1rem;
}
.fwsc-resource .fwsc-slots {
  display: flex;
  height: 100%;
  font-size: 1rem;
}
.fwsc-resource .fwsc-slot:first-child {
  position: sticky;
  inset-inline-start: 0;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8px;
  background-color: var(--bs-body-bg);
  z-index: 1;
}

.fwsc-slot {
  flex: 1;
  display: flex;
  height: 100% !important;
  border-block-start: none !important;
  border-block-end: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
  border-inline-start: none;
  border-inline-end: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
  width: unset !important;
}

.fwsc-slot.fwsc-state-focused {
  outline: 2px solid var(--bs-gray);
  outline-offset: -2px;
}

.fwsc-events {
  align-self: flex-start;
}

.fwsc-event {
  position: absolute;
  cursor: pointer;
  box-sizing: border-box;
}

.fwsc-event-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--bs-border-color, var(--bs-gray-400, #ced4da));
  color: var(--bs-body-color);
  font-size: 0.75rem;
  line-height: 1.25rem;
  overflow: hidden;
}

.fwsc-event-left {
  min-width: 5px;
  height: 100%;
  margin-right: 3px;
}

.fwsc-event-center {
  flex-grow: 1;
}
.fwsc-event-center span {
  font-weight: bold;
}

.fwsc-event-right {
  min-width: 5px;
  height: 100%;
  margin-left: 3px;
}

.fwsc-view-content:focus-visible .fwsc-event.fwsc-state-focused .fwsc-event-content {
  outline: unset !important;
  outline-offset: unset !important;
}

.fwsc-event.fwsc-state-focused {
  outline: 2px solid var(--bs-gray-dark);
  outline-offset: -2px;
  border-radius: 6px;
}

.fwsc-loading .ant-skeleton {
  position: absolute;
  left: 210px;
  padding: 10px;
  width: calc(100% - 210px);
  top: 0;
}

.fwsc-loading .ant-skeleton li {
  width: 100% !important;
}

.fwsc-empty {
  width: 100%;
  flex-grow: 99;
}

.fwsc-drawer .dxbl-drawer-body {
  padding-left: 14px !important;
  text-overflow: ellipsis;
  overflow-x: clip;
}
.fwsc-drawer .dxbl-drawer-panel {
  -webkit-transition: unset !important;
  -o-transition: unset !important;
  transition: unset !important;
  -webkit-transition-property: unset !important;
  -o-transition-property: unset !important;
  transition-property: unset !important;
}

.fwsc-drawer-resizer {
  width: 8px;
  background-color: #f4f4f3;
  position: absolute;
  z-index: 2000;
  padding: 2px;
  display: flex;
}
.fwsc-drawer-resizer div {
  background-color: #3f3f3e;
  cursor: ew-resize;
  top: auto;
  bottom: auto;
  display: block;
  height: 40px;
  border-radius: 3px;
  width: 4px;
  margin-top: auto;
  margin-bottom: auto;
}

.fw-button-small.dxbl-btn-standalone.dxbl-btn-primary.dxbl-btn-icon-only {
  --dxbl-btn-padding-x: 0px !important;
  --dxbl-btn-padding-y: 0px !important;
}
.fw-button-small.dxbl-btn-standalone.dxbl-btn-primary.dxbl-btn-icon-only .dxbl-image {
  --dxbl-image-margin-x: 0px !important;
  --dxbl-image-margin-y: 0px !important;
}

.fw-splitbutton-icon-color {
  height: 16px;
  width: 16px;
  border: 1px solid #CCCCCC;
  -webkit-mask-image: url("../images/icons/theme-icon.svg");
  mask-image: url("../images/icons/theme-icon.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-right: 1px;
}

.fw-splitbutton-template-color-palette {
  border-width: 0px;
}

.fw-splitbutton .dxbl-btn-standalone.dxbl-btn-outline-secondary.dxbl-btn-icon-only {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.fw-htmleditor-mintoolbar dxbl-ribbon-internal {
  padding: 0.2rem !important;
}
.fw-htmleditor-mintoolbar dxbl-toolbar-item {
  margin-left: 0.2rem !important;
}
.fw-htmleditor-mintoolbar .dxbl-btn-toolbar > :not(:first-child) {
  margin-left: 0.2rem !important;
}
.fw-htmleditor-mintoolbar .dxbl-toolbar-group-separator {
  margin-right: 0rem !important;
}
.fw-htmleditor-mintoolbar .dxbl-toolbar > .dxbl-btn-toolbar .dxbl-btn.dxbl-btn-text-secondary { /*, .dxbl-toolbar-btn*/
  --dxbl-btn-hover-bg: #5a6268 !important;
  --dxbl-btn-hover-color: white !important;
}
.fw-htmleditor-mintoolbar .dxbl-image {
  color: unset !important;
  opacity: unset !important;
}
.fw-htmleditor-mintoolbar svg.dxbl-image {
  width: 16px !important;
  height: 16px !important;
}

.fwms-container {
  display: inline-flex;
  width: 100%;
  height: 100%;
}
.fwms-container dxbl-toolbar {
  margin-left: 5px;
}

.fwms-wait {
  padding: 6px;
  justify-content: center;
}

.fw-datetime .fw-dx-timeedit-no-button {
  margin-left: 5px;
}

.fwradio-text {
  display: flex;
  align-items: center;
  height: 30px;
}

.fwtwi-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.fwtwi-container .antblazor-overlay-trigger-wrapper {
  margin-left: 5px;
}

.fwtwi-body {
  display: flex;
  flex-direction: column;
}

dxbl-dropdown-box .dxbl-text-edit-template {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block !important;
}

.fwcbo-listbox {
  --dxbl-list-box-border-width: 0px;
  width: 100%;
  height: auto;
  max-height: 200px;
}
.fwcbo-listbox .dxbl-list-box-select-all-container, .fwcbo-listbox .dxbl-list-box-item-display-template-container {
  white-space: nowrap;
}

.fwtb-vertical {
  min-width: 30px !important;
  height: 100% !important;
}
.fwtb-vertical .dxbl-btn-group {
  display: flex;
  flex-direction: column;
  margin-left: 0;
}
.fwtb-vertical .dxbl-btn-toolbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between !important;
  height: 100%;
}
.fwtb-vertical dxbl-toolbar-item {
  margin-left: 0;
}

.fwpage-usertoken-controlleradd {
  display: flex;
  align-items: center;
}

.fwpage-usertoken-controllerlist {
  list-style: none;
  padding-left: 0;
}
.fwpage-usertoken-controllerlist li {
  display: flex;
  align-items: center;
}

.fwpage-entity-cache-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.fwpage-entity-cache-header .div:first-child {
  padding-right: 10px;
  flex: 1 1 100%;
}
.fwpage-entity-cache-header .dxbl-toolbar {
  flex: 0 0 content;
  margin-right: 5px;
}
