.react-grid-layout {
  position: relative;
  transition: height 200ms ease;
}
.react-grid-item {
  transition: all 200ms ease;
  transition-property: left, top;
}
.react-grid-item.cssTransforms {
  transition-property: transform;
}
.react-grid-item.resizing {
  z-index: 1;
  will-change: width, height;
}

.react-grid-item.react-draggable-dragging {
  transition: none;
  z-index: 3;
  will-change: transform;
}

.react-grid-item.dropping {
  visibility: hidden;
}

.react-grid-item.react-grid-placeholder {
  background: red;
  opacity: 0.2;
  transition-duration: 100ms;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.react-grid-item > .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  cursor: se-resize;
}

.react-grid-item > .react-resizable-handle::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-right: 2px solid rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.react-resizable-hide > .react-resizable-handle {
  display: none;
}

#loading {
    font-size: 16px;
    font-family: "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
    color: #c1c2cf;
    text-align: center;
    padding-top: 100px;
}

#loading img {
    margin-left: -10px;
}

#loading label {
    display: block;
    margin-top: 10px;
    margin-bottom: 8px;
    height: 1em;
    line-height: 1em;
    text-indent: 12px;
    text-indent: 10px;
}

#dotting {
    display: inline-block;
    width: 10px;
    min-height: 2px;
    padding-right: 2px;
    border-left: 2px solid currentColor;
    border-right: 2px solid currentColor;
    background-color: currentColor;
    background-clip: content-box;
    box-sizing: border-box;
    animation: dot 1s infinite step-start both -0.75s;
    *zoom: expression(this.innerHTML='...');
    /* IE7 */
}

#dotting:before {
    content: '...';
}

/* IE8 */
#dotting::before {
    content: '';
}

:root #dotting {
    margin-left: 2px;
    padding-left: 2px;
}

/*自定义时间弹窗小时的样式*/
.customDatePicker .ant-picker-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.customDatePicker .ant-picker-footer .ant-picker-footer-extra {
    border: none;
    padding: 0
}

/*//去掉input位number的箭头*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.ant-progress-circle .ant-progress-text {
    color: rgba(0, 0, 0, 0.85) !important;
    line-height: 20px;
    font-size: 14px !important;
    font-family: dinBold;
    top: 52% !important;
}
/*!
 * Cropper.js v1.5.12
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2021-06-12T08:00:11.623Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}

.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.rdw-option-wrapper {
  border: 1px solid #F1F1F1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-option-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-option-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-disabled {
  opacity: 0.3;
  cursor: default;
}
.rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white;
}
.rdw-dropdown-wrapper:focus {
  outline: none;
}
.rdw-dropdown-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}
.rdw-dropdown-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-selectedtext {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #F1F1F1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll;
}
.rdw-dropdown-optionwrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}
.rdw-dropdownoption-default {
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdownoption-highlighted {
  background: #F1F1F1;
}
.rdw-dropdownoption-active {
  background: #f5f5f5;
}
.rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default;
}
.rdw-inline-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-inline-dropdown {
  width: 50px;
}
.rdw-inline-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-block-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-block-dropdown {
  width: 110px;
}
.rdw-fontsize-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontsize-dropdown {
  min-width: 40px;
}
.rdw-fontsize-option {
  display: flex;
  justify-content: center;
}
.rdw-fontfamily-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontfamily-dropdown {
  width: 115px;
}
.rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdw-fontfamily-optionwrapper {
  width: 140px;
}
.rdw-list-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-list-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-list-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-text-align-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-text-align-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-text-align-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-right-aligned-block {
  text-align: right;
}
.rdw-left-aligned-block {
  text-align: left !important;
}
.rdw-center-aligned-block {
  text-align: center !important;
}
.rdw-justify-aligned-block {
  text-align: justify !important;
}
.rdw-right-aligned-block > div {
  display: inline-block;
}
.rdw-left-aligned-block > div {
  display: inline-block;
}
.rdw-center-aligned-block > div {
  display: inline-block;
}
.rdw-justify-aligned-block > div {
  display: inline-block;
}
.rdw-colorpicker-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-colorpicker-modal-header {
  display: flex;
  padding-bottom: 5px;
}
.rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px;
}
.rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7;
}
.rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  overflow: scroll;
}
.rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #F1F1F1;
}
.rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
}
.rdw-colorpicker-option:hover {
  box-shadow: 1px 2px 1px #BFBDBD;
}
.rdw-colorpicker-option:active {
  box-shadow: -1px -2px 1px #BFBDBD;
}
.rdw-colorpicker-option-active {
  box-shadow: 0px 0px 2px 2px #BFBDBD;
}
.rdw-link-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-link-dropdown {
  width: 50px;
}
.rdw-link-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-link-dropdownPlaceholder {
  margin-left: 8px;
}
.rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 205px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-link-modal-label {
  font-size: 15px;
}
.rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px;
}
.rdw-link-modal-input:focus {
  outline: none;
}
.rdw-link-modal-buttonsection {
  margin: 0 auto;
}
.rdw-link-modal-target-option {
  margin-bottom: 20px;
}
.rdw-link-modal-target-option > span {
  margin-left: 5px;
}
.rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-link-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-link-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-link-modal-btn:focus {
  outline: none !important;
}
.rdw-link-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-link-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}
.rdw-embedded-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  justify-content: space-between;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-embedded-modal-header {
  font-size: 15px;
  display: flex;
}
.rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-embedded-modal-link-section {
  display: flex;
  flex-direction: column;
}
.rdw-embedded-modal-link-input {
  width: 88%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-embedded-modal-link-input-wrapper {
  display: flex;
  align-items: center;
}
.rdw-embedded-modal-link-input:focus {
  outline: none;
}
.rdw-embedded-modal-btn-section {
  display: flex;
  justify-content: center;
}
.rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-embedded-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-embedded-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-embedded-modal-btn:focus {
  outline: none !important;
}
.rdw-embedded-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-embedded-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-embedded-modal-size-input {
  width: 80%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-embedded-modal-size-input:focus {
  outline: none;
}
.rdw-emoji-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rdw-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.rdw-spinner .rdw-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.rdw-spinner .rdw-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
.rdw-image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
}
.rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}
.rdw-image-modal-header-label-highlighted {
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-image-modal-upload-option {
  width: 100%;
  color: gray;
  cursor: pointer;
  display: flex;
  border: none;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0;
  padding: 9px 0;
}
.rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7;
}
.rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.rdw-image-modal-upload-option-label span{
  padding: 0 20px;
}
.rdw-image-modal-upload-option-image-preview {
  max-width: 100%;
  max-height: 200px;
}
.rdw-image-modal-upload-option-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.rdw-image-modal-url-section {
  display: flex;
  align-items: center;
}
.rdw-image-modal-url-input {
  width: 90%;
  height: 35px;
  margin: 15px 0 12px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-image-modal-btn-section {
  margin: 10px auto 0;
}
.rdw-image-modal-url-input:focus {
  outline: none;
}
.rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-image-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-image-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-image-modal-btn:focus {
  outline: none !important;
}
.rdw-image-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.rdw-image-modal-alt-input {
  width: 70%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
  margin-left: 5px;
}
.rdw-image-modal-alt-input:focus {
  outline: none;
}
.rdw-image-modal-alt-lbl {
  font-size: 12px;
}
.rdw-image-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-image-modal-size-input {
  width: 40%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-image-modal-size-input:focus {
  outline: none;
}
.rdw-image-mandatory-sign {
  color: red;
  margin-left: 3px;
  margin-right: 3px;
}
.rdw-remove-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-history-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-history-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}
.rdw-link-decorator-wrapper {
  position: relative;
}
.rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white;
}
.rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}
.rdw-suggestion-wrapper {
  position: relative;
}
.rdw-suggestion-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid #F1F1F1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100;
}
.rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1;
}
.rdw-suggestion-option-active {
  background-color: #F1F1F1;
}
.rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}
.rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  width: 105px;
  cursor: pointer;
  z-index: 100;
}
.rdw-alignment-option-left {
  justify-content: flex-start;
}
.rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px;
}
.rdw-image-alignment {
  position: relative;
}
.rdw-image-imagewrapper {
  position: relative;
}
.rdw-image-center {
  display: flex;
  justify-content: center;
}
.rdw-image-left {
  display: flex;
}
.rdw-image-right {
  display: flex;
  justify-content: flex-end;
}
.rdw-image-alignment-options-popup-right {
  right: 0;
}
.rdw-editor-main {
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}
.rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  display: flex;
  justify-content: flex-start;
  background: white;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  user-select: none;
}
.public-DraftStyleDefault-block {
  margin: 1em 0;
}
.rdw-editor-wrapper:focus {
  outline: none;
}
.rdw-editor-wrapper {
  box-sizing: content-box;
}
.rdw-editor-main blockquote {
  border-left: 5px solid #f1f1f1;
  padding-left: 5px;
}
.rdw-editor-main pre {
  background: #f1f1f1;
  border-radius: 3px;
  padding: 1px 10px;
}/**
 * Draft v0.9.1
 *
 * Copyright (c) 2013-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
@font-face {
  font-family: "iconfont"; /* Project id 1904317 */
  src: url(/account/iconfont_a871d6.woff2) format('woff2'),
       url(/account/iconfont_79275d.woff) format('woff'),
       url(/account/iconfont_d7fc8d.ttf) format('truetype');
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-Icon-Accessory:before {
  content: "\E826";
}

.icon-icon-btn-USB-2:before {
  content: "\E62B";
}

.icon-a-NavigationRecent:before {
  content: "\E823";
}

.icon-a-NavigationBack:before {
  content: "\E824";
}

.icon-a-NavigationHome:before {
  content: "\E825";
}

.icon-send_usage_data:before {
  content: "\E822";
}

.icon-setting_icon_more:before {
  content: "\E629";
}

.icon-Relationship:before {
  content: "\E821";
}

.icon-icon-Cyberlab:before {
  content: "\E81E";
}

.icon-icon-Skyhook:before {
  content: "\E81F";
}

.icon-icon-Airlauncher:before {
  content: "\E820";
}

.icon-log-Loctaionwarning-regular:before {
  content: "\E628";
}

.icon-icon-log-Loctaionwarning-move:before {
  content: "\E81D";
}

.icon-a-PaymentHistory1:before {
  content: "\E81B";
}

.icon-a-CASHOUT:before {
  content: "\E81C";
}

.icon-a-icon-log-pushquantity:before {
  content: "\E624";
}

.icon-icon-log-tabs_charge:before {
  content: "\E81A";
}

.icon-icon-log-private:before {
  content: "\E623";
}

.icon-a-pushquantity:before {
  content: "\E622";
}

.icon-icon-security-enabled:before {
  content: "\E819";
}

.icon-CyberLab:before {
  content: "\E818";
}

.icon-a-CustomizedEvent:before {
  content: "\E817";
}

.icon-a-PaymentHistory:before {
  content: "\E816";
}

.icon-Contrast:before {
  content: "\E815";
}

.icon-Compare:before {
  content: "\E814";
}

.icon-Transfer:before {
  content: "\E813";
}

.icon-Exception:before {
  content: "\E806";
}

.icon-Pushmessage:before {
  content: "\E807";
}

.icon-Operation:before {
  content: "\E808";
}

.icon-AppManage:before {
  content: "\E809";
}

.icon-Sandbox:before {
  content: "\E810";
}

.icon-a-TagSetting:before {
  content: "\E811";
}

.icon-StacklySetting:before {
  content: "\E812";
}

.icon-icon-log-Sign-Success:before {
  content: "\E805";
}

.icon-Message-failed1:before {
  content: "\E80B";
}

.icon-Message-succed1:before {
  content: "\E80C";
}

.icon-Message-pushing1:before {
  content: "\E80D";
}

.icon-Message-Pending1:before {
  content: "\E80E";
}

.icon-Message-stopped1:before {
  content: "\E80F";
}

.icon-UpTrillion:before {
  content: "\E80A";
}

.icon-dev-form-Message-image:before {
  content: "\E802";
}

.icon-dev-form-Message-default:before {
  content: "\E803";
}

.icon-dev-form-notifivcation-unselected:before {
  content: "\E804";
}

.icon-setting-alert1:before {
  content: "\E625";
}

.icon-setting-Custom1:before {
  content: "\E626";
}

.icon-setting-tag1:before {
  content: "\E627";
}

.icon-icon-log-Sign-failed:before {
  content: "\E801";
}

.icon-dev-btn-safe:before {
  content: "\E722";
}

.icon-Hidden:before {
  content: "\E800";
}

.icon-icon-btn-LastMonth:before {
  content: "\E7FF";
}

.icon-icon-setting-login-ReleaseNote:before {
  content: "\E7FE";
}

.icon-icon-appstore:before {
  content: "\E61F";
}

.icon-icon-appcharge:before {
  content: "\E620";
}

.icon-logo31:before {
  content: "\E621";
}

.icon-deletemarket:before {
  content: "\E61E";
}

.icon-statistics:before {
  content: "\E61D";
}

.icon-Menu_Tag:before {
  content: "\E7FD";
}

.icon-btn-UploadMappingFile:before {
  content: "\E61C";
}

.icon-btn-CopyTrace:before {
  content: "\E61B";
}

.icon-icon-btn-Redo:before {
  content: "\E7FC";
}

.icon-log-tabs_Stackly:before {
  content: "\E7FA";
}

.icon-collapse2:before {
  content: "\E615";
}

.icon-icon-btn-Avstop1:before {
  content: "\E7FB";
}

.icon-alert-Battery2:before {
  content: "\E61A";
}

.icon-alert-Battery:before {
  content: "\E619";
}

.icon-alert-BrightScreen2:before {
  content: "\E618";
}

.icon-alert-BrightScreen:before {
  content: "\E601";
}

.icon-Cellular2:before {
  content: "\E610";
}

.icon-Cellular:before {
  content: "\E617";
}

.icon-TerminalCellular2:before {
  content: "\E616";
}

.icon-TerminalBattery2:before {
  content: "\E614";
}

.icon-TerminalBattery1:before {
  content: "\E613";
}

.icon-BrightScreen2:before {
  content: "\E612";
}

.icon-BrightScreen1:before {
  content: "\E611";
}

.icon-icon-btn-Undo:before {
  content: "\E7F9";
}

.icon-Exceptions:before {
  content: "\E7F4";
}

.icon-Operations:before {
  content: "\E7F5";
}

.icon-Label:before {
  content: "\E7F6";
}

.icon-AlarmSetting:before {
  content: "\E7F7";
}

.icon-MemberManagement:before {
  content: "\E7F8";
}

.icon-stackly:before {
  content: "\E60F";
}

.icon-sandboxdev:before {
  content: "\E60C";
}

.icon-storeapp:before {
  content: "\E60D";
}

.icon-CloudMessage:before {
  content: "\E60E";
}

.icon-icon-log-tabs_calendar:before {
  content: "\E7F3";
}

.icon-icon-log-size:before {
  content: "\E7F1";
}

.icon-icon-log-device:before {
  content: "\E7F2";
}

.icon-Yes:before {
  content: "\E609";
}

.icon-icon-btn-AirViewer:before {
  content: "\E7F0";
}

.icon-icon-btn-Androidback:before {
  content: "\E7EF";
}

.icon-Lockt:before {
  content: "\E7EC";
}

.icon-TEXTSMS:before {
  content: "\E7ED";
}

.icon-MBF:before {
  content: "\E7EE";
}

.icon-applaunch:before {
  content: "\E7EB";
}

.icon-outofpaper1:before {
  content: "\E60B";
}

.icon-appsignature:before {
  content: "\E60A";
}

.icon-geofence:before {
  content: "\E608";
}

.icon-alarm:before {
  content: "\E7E9";
}

.icon-alarmdata-active:before {
  content: "\E7EA";
}

.icon-Handover:before {
  content: "\E607";
}

.icon-AppScan2:before {
  content: "\E605";
}

.icon-log-safe:before {
  content: "\E7E8";
}

.icon-ModifySecurityPassword:before {
  content: "\E7E5";
}

.icon-AppWhitelist:before {
  content: "\E7E6";
}

.icon-APNConfiguration:before {
  content: "\E7E7";
}

.icon-icon-default-imgfailure:before {
  content: "\E7E4";
}

.icon-btn-suspended1:before {
  content: "\E7E0";
}

.icon-btn-activate:before {
  content: "\E7E1";
}

.icon-btn-Price:before {
  content: "\E7E2";
}

.icon-disable:before {
  content: "\E7E3";
}

.icon-btn-email:before {
  content: "\E7DF";
}

.icon-pause-Client:before {
  content: "\E606";
}

.icon-setting_icon_log:before {
  content: "\E603";
}

.icon-setting_icon_status:before {
  content: "\E604";
}

.icon-icon-appscan:before {
  content: "\E602";
}

.icon-icon-btn-user_register:before {
  content: "\E7DE";
}

.icon-appapprovalbeifen:before {
  content: "\E7DD";
}

.icon-anticlockwise:before {
  content: "\E7DB";
}

.icon-clockwise:before {
  content: "\E7DC";
}

.icon-generate:before {
  content: "\E600";
}

.icon-icon-btn-terminalstatus:before {
  content: "\E7DA";
}

.icon-con-btn-fingerprintreader:before {
  content: "\E7D9";
}

.icon-tree-Manufacturer:before {
  content: "\E7D5";
}

.icon-tree-Model:before {
  content: "\E7D6";
}

.icon-tree-Market:before {
  content: "\E7D7";
}

.icon-tree-Dynamic:before {
  content: "\E7D8";
}

.icon-log-report:before {
  content: "\E7D4";
}

.icon-log-reject_reason:before {
  content: "\E7D3";
}

.icon-ExternalSystemIntegration:before {
  content: "\E7D2";
}

.icon-setting-DownloadTask:before {
  content: "\E7CF";
}

.icon-setting-AppUpdate:before {
  content: "\E7D0";
}

.icon-Setting-Pushhistory:before {
  content: "\E7D1";
}

.icon-btn-postil:before {
  content: "\E7C9";
}

.icon-btn-postil-default:before {
  content: "\E7CA";
}

.icon-log-terminal-location-not-found:before {
  content: "\E7CB";
}

.icon-log-terminal-warning-marker:before {
  content: "\E7CC";
}

.icon-log-terminal-safe:before {
  content: "\E7CD";
}

.icon-setting-login-AdvancedSetting-default:before {
  content: "\E7CE";
}

.icon-terminalstatus-offline:before {
  content: "\E7BB";
}

.icon-terminalstatus-Nosimcard:before {
  content: "\E7BC";
}

.icon-terminalstatus-unlock:before {
  content: "\E7BD";
}

.icon-terminalstatus-transmission:before {
  content: "\E7BE";
}

.icon-terminalstatus-online:before {
  content: "\E7BF";
}

.icon-terminalstatus-network:before {
  content: "\E7C0";
}

.icon-terminalstatus-lock:before {
  content: "\E7C1";
}

.icon-terminalstatus-LAN:before {
  content: "\E7C2";
}

.icon-terminalstatus-nocloudmessage:before {
  content: "\E7C3";
}

.icon-terminalstatus-simcard:before {
  content: "\E7C4";
}

.icon-terminalstatus-cloudmessage:before {
  content: "\E7C5";
}

.icon-terminalstatus-wifi:before {
  content: "\E7C6";
}

.icon-icon-terminalstatus-battery:before {
  content: "\E7C7";
}

.icon-icon-terminalstatus-charging:before {
  content: "\E7C8";
}

.icon-log-reseller:before {
  content: "\E7B7";
}

.icon-log-card:before {
  content: "\E7B8";
}

.icon-log-variable:before {
  content: "\E7B9";
}

.icon-log-storage:before {
  content: "\E7BA";
}

.icon-icon-log-important_note:before {
  content: "\E7B6";
}

.icon-dev-btn-more:before {
  content: "\E7B5";
}

.icon-platform-appstore:before {
  content: "\E7B2";
}

.icon-platform-developercenter:before {
  content: "\E7B3";
}

.icon-platform-adminnistratorcenter:before {
  content: "\E7B4";
}

.icon-log-airview:before {
  content: "\E7B1";
}

.icon-rolelist-jurisdiction-readonly:before {
  content: "\E7AD";
}

.icon-rolelist-jurisdiction-unchecked:before {
  content: "\E7AE";
}

.icon-rolelist-jurisdiction-full:before {
  content: "\E7AF";
}

.icon-rolelist-jurisdiction-checked:before {
  content: "\E7B0";
}

.icon-radiobutton-group:before {
  content: "\E7AA";
}

.icon-radiobutton-Android:before {
  content: "\E7AB";
}

.icon-radiobutton-model:before {
  content: "\E7AC";
}

.icon-log-push-next-step:before {
  content: "\E7A9";
}

.icon-icon-log-check-success-padding:before {
  content: "\E790";
}

.icon-icon-log-check-success:before {
  content: "\E791";
}

.icon-icon-log-expired-padding:before {
  content: "\E7A5";
}

.icon-icon-log-expired:before {
  content: "\E7A6";
}

.icon-icon-log-failed:before {
  content: "\E7A7";
}

.icon-icon-log-failed-padding:before {
  content: "\E7A8";
}

.icon-datacenter:before {
  content: "\E79D";
}

.icon-datacenter-active:before {
  content: "\E79E";
}

.icon-diagnosis:before {
  content: "\E79F";
}

.icon-diagnosis-active:before {
  content: "\E7A0";
}

.icon-reportmanagement-active:before {
  content: "\E7A1";
}

.icon-reportmanagement:before {
  content: "\E7A2";
}

.icon-notifications:before {
  content: "\E7A3";
}

.icon-notifications-active:before {
  content: "\E7A4";
}

.icon-log-statistics-app:before {
  content: "\E799";
}

.icon-log-statistics-marketplace:before {
  content: "\E79A";
}

.icon-log-statistics-developer:before {
  content: "\E79B";
}

.icon-log-statistics-terminal:before {
  content: "\E79C";
}

.icon-log-distance:before {
  content: "\E798";
}

.icon-log-Simpleandimpressivedatadisplay:before {
  content: "\E794";
}

.icon-log-Easydataanalysis:before {
  content: "\E795";
}

.icon-log-Comprehensivebusinessanalysis:before {
  content: "\E796";
}

.icon-log-Payment-Stripe:before {
  content: "\E797";
}

.icon-log-msg:before {
  content: "\E793";
}

.icon-log-screeningcondition:before {
  content: "\E792";
}

.icon-btn-push-pending:before {
  content: "\E78D";
}

.icon-btn-push-success:before {
  content: "\E78E";
}

.icon-btn-push-failed:before {
  content: "\E78F";
}

.icon-icon-log-summary_data_downloaded:before {
  content: "\E78C";
}

.icon-hardware-cashbox:before {
  content: "\E776";
}

.icon-hardware-battery:before {
  content: "\E777";
}

.icon-hardware-countrysecret:before {
  content: "\E778";
}

.icon-hardware-ICC:before {
  content: "\E779";
}

.icon-hardware-common:before {
  content: "\E77A";
}

.icon-hardware-GravitySensor:before {
  content: "\E77B";
}

.icon-hardware-customer:before {
  content: "\E77C";
}

.icon-hardware-Bluetooth:before {
  content: "\E77D";
}

.icon-hardware-internet:before {
  content: "\E77E";
}

.icon-hardware-camera:before {
  content: "\E77F";
}

.icon-hardware-HDMI:before {
  content: "\E780";
}

.icon-hardware-Keyboard:before {
  content: "\E781";
}

.icon-hardware-mscard:before {
  content: "\E782";
}

.icon-hardware-modem:before {
  content: "\E783";
}

.icon-hardware-idcardreader:before {
  content: "\E784";
}

.icon-hardware-PEDMODE:before {
  content: "\E785";
}

.icon-hardware-screen:before {
  content: "\E786";
}

.icon-hardware-PRINTER:before {
  content: "\E787";
}

.icon-hardware-PED:before {
  content: "\E788";
}

.icon-hardware-PICC:before {
  content: "\E789";
}

.icon-hardware-stylus:before {
  content: "\E78A";
}

.icon-hardware-PED-Intact:before {
  content: "\E78B";
}

.icon-icon-log-loading:before {
  content: "\E775";
}

.icon-btn-Click:before {
  content: "\E774";
}

.icon-logout:before {
  content: "\E772";
}

.icon-setting-management:before {
  content: "\E6C8";
}

.icon-setting-login-AppDownloadFeedistribution:before {
  content: "\E6C9";
}

.icon-setting-signature:before {
  content: "\E6CA";
}

.icon-setting-support:before {
  content: "\E6CB";
}

.icon-setting-config:before {
  content: "\E6CC";
}

.icon-setting-UI:before {
  content: "\E6CD";
}

.icon-setting-rki:before {
  content: "\E6CE";
}

.icon-setting-earningreport:before {
  content: "\E6CF";
}

.icon-setting-terminal:before {
  content: "\E6D0";
}

.icon-setting-variable:before {
  content: "\E6D1";
}

.icon-setting-login-ssosetting:before {
  content: "\E6D2";
}

.icon-setting-SandboTerminallist:before {
  content: "\E6D3";
}

.icon-setting-sValue-addedservices:before {
  content: "\E6D4";
}

.icon-setting-whitelist:before {
  content: "\E6D5";
}

.icon-setting-ModelManagement:before {
  content: "\E6D6";
}

.icon-btn-attention:before {
  content: "\E6D7";
}

.icon-btn-add:before {
  content: "\E6D8";
}

.icon-btn-calendar:before {
  content: "\E6D9";
}

.icon-btn-download:before {
  content: "\E6DA";
}

.icon-btn-geofence-active:before {
  content: "\E6DB";
}

.icon-btn-file:before {
  content: "\E6DC";
}

.icon-btn-edit:before {
  content: "\E6DD";
}

.icon-btn-file-up:before {
  content: "\E6DE";
}

.icon-btn-file-back:before {
  content: "\E6DF";
}

.icon-btn-itemselect:before {
  content: "\E6E0";
}

.icon-btn-layouttable:before {
  content: "\E6E1";
}

.icon-btn-layout:before {
  content: "\E6E2";
}

.icon-btn-home2:before {
  content: "\E6E3";
}

.icon-btn-ImportExport:before {
  content: "\E6E4";
}

.icon-btn-scan-default:before {
  content: "\E6E5";
}

.icon-btn-more_setting:before {
  content: "\E6E6";
}

.icon-btn-log:before {
  content: "\E6E7";
}

.icon-btn-mine:before {
  content: "\E6E8";
}

.icon-btn-operation:before {
  content: "\E6E9";
}

.icon-btn-screen:before {
  content: "\E6EA";
}

.icon-btn-search:before {
  content: "\E6EB";
}

.icon-btn-refresh:before {
  content: "\E6EC";
}

.icon-btn-revocation:before {
  content: "\E6ED";
}

.icon-btn-upload:before {
  content: "\E6EE";
}

.icon-btn-start:before {
  content: "\E6EF";
}

.icon-btn-synchronous:before {
  content: "\E6F0";
}

.icon-btn-sort:before {
  content: "\E6F1";
}

.icon-btn-Zoom:before {
  content: "\E6F2";
}

.icon-btn-scan:before {
  content: "\E6F3";
}

.icon-btn-shade-default:before {
  content: "\E6F4";
}

.icon-btn-log-default:before {
  content: "\E6F5";
}

.icon-btn-shade:before {
  content: "\E6F6";
}

.icon-btn-close:before {
  content: "\E6F7";
}

.icon-btn-back:before {
  content: "\E6F8";
}

.icon-btn-unfold:before {
  content: "\E6F9";
}

.icon-btn-open:before {
  content: "\E6FA";
}

.icon-btn-allow:before {
  content: "\E6FB";
}

.icon-btn-attention-trigger:before {
  content: "\E6FD";
}

.icon-btn-layoutcard:before {
  content: "\E6FE";
}

.icon-btn-Control:before {
  content: "\E6FF";
}

.icon-btn-download1:before {
  content: "\E700";
}

.icon-btn-home:before {
  content: "\E701";
}

.icon-btn-newfinder:before {
  content: "\E702";
}

.icon-btn-move:before {
  content: "\E703";
}

.icon-btn-notification-Start:before {
  content: "\E704";
}

.icon-btn-paid:before {
  content: "\E705";
}

.icon-btn-fileupload:before {
  content: "\E706";
}

.icon-btn-billing:before {
  content: "\E707";
}

.icon-btn-notification-important:before {
  content: "\E708";
}

.icon-btn-push_app:before {
  content: "\E709";
}

.icon-btn-subscribed:before {
  content: "\E70A";
}

.icon-btn-table_edit:before {
  content: "\E70B";
}

.icon-btn-setting:before {
  content: "\E70C";
}

.icon-btn-copy:before {
  content: "\E70D";
}

.icon-btn-notification:before {
  content: "\E70E";
}

.icon-btn-unsubscribed:before {
  content: "\E70F";
}

.icon-btn-terminalLog-default:before {
  content: "\E710";
}

.icon-btn-terminalLog:before {
  content: "\E711";
}

.icon-btn-RKI_setting:before {
  content: "\E712";
}

.icon-btn-setting-goinsight:before {
  content: "\E713";
}

.icon-btn-screen-tigger:before {
  content: "\E714";
}

.icon-btn-view:before {
  content: "\E715";
}

.icon-btn-Sharpness:before {
  content: "\E716";
}

.icon-btn-user:before {
  content: "\E717";
}

.icon-btn-openlog:before {
  content: "\E718";
}

.icon-btn-closelog:before {
  content: "\E719";
}

.icon-btn-message:before {
  content: "\E71A";
}

.icon-btn-table-sort-up:before {
  content: "\E71B";
}

.icon-btn-table-sort-down:before {
  content: "\E71C";
}

.icon-btn-voicemute:before {
  content: "\E71D";
}

.icon-btn-voicedown:before {
  content: "\E71E";
}

.icon-btn-voiceup:before {
  content: "\E71F";
}

.icon-btn-numberUp:before {
  content: "\E720";
}

.icon-icon-btn-numberDown:before {
  content: "\E721";
}

.icon-btn-suspended:before {
  content: "\E723";
}

.icon-btn-offline:before {
  content: "\E724";
}

.icon-btn-close1:before {
  content: "\E725";
}

.icon-btn-icon-btn-handoff:before {
  content: "\E726";
}

.icon-btn-delete:before {
  content: "\E727";
}

.icon-btn-menu:before {
  content: "\E729";
}

.icon-btn-checked:before {
  content: "\E72A";
}

.icon-btn-loading:before {
  content: "\E72B";
}

.icon-btn-annotation:before {
  content: "\E72C";
}

.icon-btn-annotation_move:before {
  content: "\E72D";
}

.icon-btn-ranking:before {
  content: "\E72E";
}

.icon-btn-min-black:before {
  content: "\E72F";
}

.icon-btn-add-black:before {
  content: "\E730";
}

.icon-btn_appupdate:before {
  content: "\E731";
}

.icon-btn_appupdate-active:before {
  content: "\E732";
}

.icon-btn-shutdown-white:before {
  content: "\E733";
}

.icon-search-delete:before {
  content: "\E734";
}

.icon-btn-pack_UP:before {
  content: "\E735";
}

.icon-btn-get_bacK:before {
  content: "\E736";
}

.icon-btn-downloads:before {
  content: "\E737";
}

.icon-icon-header-back:before {
  content: "\E738";
}

.icon-action-upload:before {
  content: "\E739";
}

.icon-action-files:before {
  content: "\E73A";
}

.icon-action-finder:before {
  content: "\E73B";
}

.icon-actions-radios-unselected:before {
  content: "\E73C";
}

.icon-actions-radio-selected:before {
  content: "\E73D";
}

.icon-actions-checkbox-default:before {
  content: "\E73E";
}

.icon-actions-checkbox-checked:before {
  content: "\E73F";
}

.icon-log-asset:before {
  content: "\E740";
}

.icon-log-market:before {
  content: "\E741";
}

.icon-log-client:before {
  content: "\E742";
}

.icon-log-merchant:before {
  content: "\E743";
}

.icon-log-developer:before {
  content: "\E744";
}

.icon-log-app:before {
  content: "\E745";
}

.icon-log-hardware:before {
  content: "\E746";
}

.icon-log-model:before {
  content: "\E747";
}

.icon-log-admin:before {
  content: "\E748";
}

.icon-log-parameter:before {
  content: "\E749";
}

.icon-log-sign:before {
  content: "\E74A";
}

.icon-log-terminals:before {
  content: "\E74B";
}

.icon-log-portal:before {
  content: "\E74C";
}

.icon-log-dev:before {
  content: "\E74D";
}

.icon-log-setting:before {
  content: "\E74E";
}

.icon-log-push:before {
  content: "\E74F";
}

.icon-log-online:before {
  content: "\E750";
}

.icon-log-offline:before {
  content: "\E751";
}

.icon-log-unknow:before {
  content: "\E752";
}

.icon-log-fix:before {
  content: "\E753";
}

.icon-log-unfix:before {
  content: "\E754";
}

.icon-log-terminal:before {
  content: "\E755";
}

.icon-log-wrong:before {
  content: "\E756";
}

.icon-log-wrong_roundedge:before {
  content: "\E757";
}

.icon-log-Removed:before {
  content: "\E758";
}

.icon-log-warning:before {
  content: "\E759";
}

.icon-log-message:before {
  content: "\E75A";
}

.icon-setting-DataUsage:before {
  content: "\E75B";
}

.icon-setting-Aboutus:before {
  content: "\E75C";
}

.icon-setting-FirewareUpate:before {
  content: "\E75D";
}

.icon-setting-clearcache:before {
  content: "\E75E";
}

.icon-setting-TerminalMonitor:before {
  content: "\E75F";
}

.icon-setting-Settings:before {
  content: "\E760";
}

.icon-setting-ProxyConfiguration:before {
  content: "\E761";
}

.icon-tree-merchant:before {
  content: "\E762";
}

.icon-tree-group:before {
  content: "\E763";
}

.icon-tree-reseller:before {
  content: "\E764";
}

.icon-form-talarm-active:before {
  content: "\E765";
}

.icon-form-exc-active:before {
  content: "\E766";
}

.icon-form-pdf-active:before {
  content: "\E767";
}

.icon-form-personal-active:before {
  content: "\E768";
}

.icon-form-csv-active:before {
  content: "\E769";
}

.icon-form-enterprise-active:before {
  content: "\E76A";
}

.icon-form-production-active:before {
  content: "\E76B";
}

.icon-default-RevenuereportsCopy:before {
  content: "\E76C";
}

.icon-default-CreateNewApp:before {
  content: "\E76D";
}

.icon-default-Revenuereports:before {
  content: "\E76E";
}

.icon-default-user:before {
  content: "\E76F";
}

.icon-default-app:before {
  content: "\E770";
}

.icon-default-img:before {
  content: "\E771";
}

.icon-appapproval:before {
  content: "\E67D";
}

.icon-appapproval-active:before {
  content: "\E67E";
}

.icon-activity-active:before {
  content: "\E67F";
}

.icon-activity:before {
  content: "\E680";
}

.icon-auditlog:before {
  content: "\E681";
}

.icon-auditlog-active:before {
  content: "\E682";
}

.icon-dashboard-active:before {
  content: "\E683";
}

.icon-dashboard:before {
  content: "\E684";
}

.icon-developerapproval-active:before {
  content: "\E685";
}

.icon-developerapproval:before {
  content: "\E686";
}

.icon-estate-active:before {
  content: "\E687";
}

.icon-estate:before {
  content: "\E688";
}

.icon-firmware:before {
  content: "\E689";
}

.icon-firmware-active:before {
  content: "\E68A";
}

.icon-global-active:before {
  content: "\E68B";
}

.icon-global:before {
  content: "\E68C";
}

.icon-marketplace-active:before {
  content: "\E68D";
}

.icon-marketplace:before {
  content: "\E68E";
}

.icon-pushtemplates:before {
  content: "\E68F";
}

.icon-pushtemplates-active:before {
  content: "\E690";
}

.icon-model-active:before {
  content: "\E691";
}

.icon-model:before {
  content: "\E692";
}

.icon-role-active:before {
  content: "\E693";
}

.icon-role:before {
  content: "\E694";
}

.icon-secondarymenu-active:before {
  content: "\E695";
}

.icon-secondarymenu:before {
  content: "\E696";
}

.icon-service:before {
  content: "\E697";
}

.icon-service-active:before {
  content: "\E698";
}

.icon-storeclient-active:before {
  content: "\E699";
}

.icon-storeclient:before {
  content: "\E69A";
}

.icon-setting-active:before {
  content: "\E69B";
}

.icon-setting:before {
  content: "\E69C";
}

.icon-terminalgeolocation-active:before {
  content: "\E69D";
}

.icon-terminalgeolocation:before {
  content: "\E69E";
}

.icon-subscription:before {
  content: "\E69F";
}

.icon-subscription-active:before {
  content: "\E6A0";
}

.icon-user-active:before {
  content: "\E6A1";
}

.icon-user:before {
  content: "\E6A2";
}

.icon-report:before {
  content: "\E6A3";
}

.icon-report-active:before {
  content: "\E6A4";
}

.icon-terminal:before {
  content: "\E6A5";
}

.icon-terminal-active:before {
  content: "\E6A6";
}

.icon-zoom-active:before {
  content: "\E6A7";
}

.icon-zoom:before {
  content: "\E6A8";
}

.icon-group-active:before {
  content: "\E6A9";
}

.icon-group:before {
  content: "\E6AA";
}

.icon-head-admin:before {
  content: "\E6AB";
}

.icon-head-documentcenter:before {
  content: "\E6AC";
}

.icon-head-international:before {
  content: "\E6AD";
}

.icon-head-platform:before {
  content: "\E6AE";
}

.icon-head-notification:before {
  content: "\E6AF";
}

.icon-head-billing:before {
  content: "\E6B0";
}

.icon-icon-header-Billing-white:before {
  content: "\E6B1";
}

.icon-dashboard-ring:before {
  content: "\E6B2";
}

.icon-dashboard-table:before {
  content: "\E6B3";
}

.icon-dashboard-bar:before {
  content: "\E6B4";
}

.icon-dashboard-hardware:before {
  content: "\E6B5";
}

.icon-dashboard-version:before {
  content: "\E6B6";
}

.icon-dashboard-client:before {
  content: "\E6B7";
}

.icon-setting-advertising:before {
  content: "\E6B8";
}

.icon-setting-Account:before {
  content: "\E6B9";
}

.icon-setting-app:before {
  content: "\E6BA";
}

.icon-setting-createnewapp:before {
  content: "\E6BB";
}

.icon-setting-basicsetting:before {
  content: "\E6BC";
}

.icon-setting-attribute:before {
  content: "\E6BD";
}

.icon-setting-certificateenrollment:before {
  content: "\E6BE";
}

.icon-setting-developerlist:before {
  content: "\E6BF";
}

.icon-setting-license:before {
  content: "\E6C0";
}

.icon-setting-billingsetting:before {
  content: "\E6C1";
}

.icon-setting-mail:before {
  content: "\E6C2";
}

.icon-setting-info:before {
  content: "\E6C3";
}

.icon-btn-scan-default-copy:before {
  content: "\E773";
}

.icon-setting-login:before {
  content: "\E6C4";
}

.icon-setting-parameter:before {
  content: "\E6C5";
}

.icon-setting-password:before {
  content: "\E6C6";
}

.icon-setting-merchant:before {
  content: "\E6C7";
}


