:root {
  --background-tertiary: #fff;
  --background-secondary: #f4f7f8;
  --background-primary: #fff;
  --background-header: #fff;
  --elevation-low: none;
  --border-color: #f0f2f5;
  --tr-bg-color: #fff;
  --td-border-color: #ebeef5;
  --input: #1f2021;
  --input-bg-color: #fff;
  --input-border-color: #eaedf3;
  --menu-color: #383a56;
  --active-color: #f5f7fb;
  --tb-link: #242425;
  --sub-menu: #f3f6fb;
  --dialog: #fff;
  --dialog-header: #f3f5f9;
  --text-color: #606266;
  --sidebar-border: solid 1px #eee;
  --text-normal: #606266;
  --background-modifier-selected: #f5f7fb;
}

.dark-theme {
  --header-primary: #fff;
  --header-secondary: #b9bbbe;
  --text-normal: #dcddde;
  --text-muted: #72767d;
  --text-link: hsl(197, calc(var(--saturation-factor, 1) * 100%), 47.8%);
  --text-link-low-saturation: hsl(
    197,
    calc(var(--saturation-factor, 1) * 100%),
    52.9%
  );
  --text-positive: hsl(139, calc(var(--saturation-factor, 1) * 66.8%), 58.6%);
  --text-warning: hsl(38, calc(var(--saturation-factor, 1) * 95.7%), 54.1%);
  --text-danger: hsl(359, calc(var(--saturation-factor, 1) * 82.6%), 59.4%);
  --text-brand: hsl(235, calc(var(--saturation-factor, 1) * 86.1%), 77.5%);
  --interactive-normal: #b9bbbe;
  --interactive-hover: #dcddde;
  --interactive-active: #fff;
  --interactive-muted: #4f545c;
  --background-primary: #36393f;
  --background-secondary: #2f3136;
  --background-secondary-alt: #292b2f;
  --background-tertiary: #202225;
  --background-accent: #4f545c;
  --background-floating: #18191c;
  --background-header: #2f3136;
  --background-mobile-primary: #36393f;
  --background-mobile-secondary: #2f3136;
  --background-modifier-hover: rgba(79, 84, 92, 0.16);
  --background-modifier-active: rgba(79, 84, 92, 0.24);
  --background-modifier-selected: rgba(79, 84, 92, 0.32);
  --background-modifier-accent: hsla(0, 0%, 100%, 0.06);
  --input-bg-color: #202225;
  --input-border-color: #202225;
  --info-positive-text: #fff;
  --info-warning-text: #fff;
  --info-danger-text: #fff;
  --info-help-background: hsla(
    197,
    calc(var(--saturation-factor, 1) * 100%),
    47.8%,
    0.1
  );
  --info-help-foreground: hsl(
    197,
    calc(var(--saturation-factor, 1) * 100%),
    47.8%
  );
  --info-help-text: #fff;
  --status-warning-text: #000;
  --scrollbar-thin-thumb: #202225;
  --scrollbar-thin-track: transparent;
  --scrollbar-auto-thumb: #202225;
  --scrollbar-auto-track: hsl(
    210,
    calc(var(--saturation-factor, 1) * 9.8%),
    20%
  );
  --scrollbar-auto-scrollbar-color-thumb: #202225;
  --scrollbar-auto-scrollbar-color-track: #2f3136;
  --elevation-stroke: 0 0 0 1px rgba(4, 4, 5, 0.15);
  --elevation-low: 0 1px 0 rgba(4, 4, 5, 0.2), 0 1.5px 0 rgba(6, 6, 7, 0.05),
    0 2px 0 rgba(4, 4, 5, 0.05);
  --elevation-medium: 0 4px 4px rgba(0, 0, 0, 0.16);
  --elevation-high: 0 8px 16px rgba(0, 0, 0, 0.24);
  --logo-primary: #fff;
  --control-brand-foreground: hsl(
    235,
    calc(var(--saturation-factor, 1) * 86.1%),
    77.5%
  );
  --control-brand-foreground-new: hsl(
    235,
    calc(var(--saturation-factor, 1) * 86.1%),
    77.5%
  );
  --background-mentioned: hsla(
    38,
    calc(var(--saturation-factor, 1) * 95.7%),
    54.1%,
    0.1
  );
  --background-mentioned-hover: hsla(
    38,
    calc(var(--saturation-factor, 1) * 95.7%),
    54.1%,
    0.08
  );
  --background-message-hover: rgba(4, 4, 5, 0.07);
  --channels-default: #8e9297;
  --guild-header-text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  --channeltextarea-background: #40444b;
  --activity-card-background: #202225;
  --textbox-markdown-syntax: #8e9297;
  --deprecated-card-bg: rgba(32, 34, 37, 0.6);
  --deprecated-card-editable-bg: rgba(32, 34, 37, 0.3);
  --deprecated-store-bg: #36393f;
  --deprecated-quickswitcher-input-background: #72767d;
  --deprecated-quickswitcher-input-placeholder: hsla(0, 0%, 100%, 0.3);
  --deprecated-text-input-bg: rgba(0, 0, 0, 0.1);
  --deprecated-text-input-border: rgba(0, 0, 0, 0.3);
  --deprecated-text-input-border-hover: #040405;
  --deprecated-text-input-border-disabled: #202225;
  --deprecated-text-input-prefix: #dcddde;
  --sidebar-border: 0;
  --menu-color: #b9bbbe;
}

html,
body {
  color: #596a7a;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--second-bg-color);
  height: 100%;
  -webkit-text-size-adjust: none;
  font-family: "Open Sans", "PingFang SC", "Hiragino Sans GB", "Heiti SC",
    "Microsoft YaHei", "WenQuanYi Micro Hei", monospace, serif;
  font-size: 12px;
  overflow: hidden;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

.flex {
  display: flex;
  -webkit-flex: flex;
  -ms-flex: flex;
}

.flex-auto {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.flex-fill {
  -webkit-flex: 1 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.flex-center {
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.flex-content-center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.centered {
  display: flex;
  -webkit-flex: flex;
  -ms-flex: flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.el-input .el-input__inner {
  border: 1px solid #eaedf3;
  background-color: #fff;
}

.login-form .el-input .el-input__inner {
  height: 42px;
}

.el-textarea__inner {
  border: 1px solid #dee6ef;
}

.el-input-group--prepend .el-input__inner,
.el-input-group__append {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.login-form .el-input-group__append,
.el-input-group__prepend {
  padding: 0 12px;
}

.el-button--text {
  margin: 0;
  color: rgb(87, 126, 255);
}

.el-dialog--large {
  width: 75%;
}

.el-dropdown-menu__item {
  font-size: 14px;
  color: #666;
}

#app {
  height: 100%;
}

#app .app-wrap {
  position: relative;
  height: 100%;
  background-color: var(--background-secondary);
}

.app-content {
  position: relative;
  height: 100%;
  display: flex;
}

.left-menu-wrap {
  position: relative;
  height: 100%;
  width: 200px;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: var(--background-tertiary);
  border-right: var(--sidebar-border);
  transition: all 0.2s ease-in-out;
}

.app-main {
  position: relative;
  height: 100%;
  width: calc(100% - 200px);
  -webkit-flex: 1 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

.app-main .main-content {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.login-btn span {
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-content .page {
  position: relative;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
}

.main-content .page .dx-toolbar {
  padding: 10px 12px;
  margin: 0 !important;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
}

.dx-toolbar .toolbar-left .el-input {
  width: 200px;
}

.aa1 .el-select .el-input {
  width: 90px !important;
}

.dx-toolbar .toolbar-right {
  max-width: 350px;
}

.main-content .page .dx-content {
  position: relative;
}

.main-content .page .page-footer {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  padding: 8px 20px;
  margin: 0 -10px;
  background-color: #fff;
  box-shadow: 0px -6px 5px #eee;
}

.dx-content .el-pagination {
  background-color: var(--bg-color);
}

.page-header {
  padding: 0 10px 20px 10px;
}

.el-table {
  font-size: 13px;
  color: #242425;
}

.el-table .row-deleted {
  opacity: 0.5;
}

.el-popover {
  border: none;
  -webkit-box-shadow: 0 10px 25px 0 rgba(54, 71, 82, 0.15),
    0 0 25px 0 rgba(66, 83, 93, 0.1);
  box-shadow: 0 10px 25px 0 rgba(54, 71, 82, 0.15),
    0 0 25px 0 rgba(66, 83, 93, 0.1);
}

.el-popover[x-placement^="bottom"] .popper__arrow {
  border-color: transparent;
}

.el-dialog .el-date-editor.el-input,
.el-date-editor.el-input__inner {
  width: 100%;
}

.el-dialog .el-select {
  display: block;
}

.table-link {
  cursor: pointer;
  color: var(--text-normal);
}

.table-link:hover {
  text-decoration: underline;
  color: #20a0ff;
}

.h100 {
  height: 100%;
}

.w100 {
  width: 100%;
}

.pullback {
  color: #666;
  font-size: 16px;
}

.border {
  border: 1px solid #e9eef2;
}

.router-link {
  color: #20a0ff;
}

.item-name {
  width: 120px;
  color: #676b6f;
}

.preivew {
  padding: 10px 16px;
}

.view-row {
  margin-bottom: 20px;
}

.edit-btn {
  cursor: pointer;
  display: inline-block;
  padding-bottom: 15px;
  color: #20a0ff;
}

.coin .el-select .el-input {
  width: 110px;
}

.el-handler {
  text-align: right;
}

.text-success {
  color: #0cbf0c;
}

.text-error {
  color: #f00;
}

.el-dropdown-menu--small .el-dropdown-menu__item {
  line-height: 34px !important;
  padding: 0 18px !important;
}

.el-dropdown-link {
  cursor: pointer;
}

.coll {
  padding: 5px 0;
}

.coll-item {
  font-size: 12px;
  color: #666;
}

.coll-value {
  font-size: 12px;
  color: #333;
}

.loader-box {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  font-size: 30px;
  color: rgba(200, 200, 200, 0.5);
  padding: 1em;
  -webkit-transition: 0.3s color, 0.3s border;
  transition: 0.3s color, 0.3s border;
}

.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}

.loader3 {
  border: 0.2em solid #666;
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-animation: 1s loader3 linear infinite;
  animation: 1s loader3 linear infinite;
  position: relative;
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(359deg);
  }
}

.circle-border {
  width: 30px;
  height: 30px;
  padding: 3px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(
    0deg,
    rgb(241 243 242 / 10%) 33%,
    rgb(180 181 183) 100%
  );
  animation: spin 0.8s linear 0s infinite;
}

.circle-core {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
}

.xbtn {
  position: relative;
  display: flex;
  -webkit-flex: flex;
  -ms-flex: flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  text-align: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.1s linear;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 0;
  padding: 0 8px;
  height: 24px;
  font-size: 12px;
  border-width: 1px;
  border-style: solid;
  background-color: #fafafa;
  border-color: #dedede;
  color: #333;
  outline: none;
  margin-right: 10px;
}

.xbtn:hover {
  border-color: #737373;
  color: #333;
  background-color: #fff;
}

.el-dropdown .xbtn {
  margin-right: 0;
}

/*.el-popper .popper__arrow {
  display: none !important;
}*/

.vs-row {
  margin-bottom: 10px;
}

.vs-row:last-child {
  margin-bottom: 0;
}

.visa-info .el-button--text {
  color: #333;
  font-size: 15px;
}

.pulse-container {
  width: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse-bubble {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #7b69ee;
}

.pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}

.pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}

.pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.25;
    transform: scale(0.65);
  }
}

.login-wrap .el-input .el-input__inner {
  border-radius: 4px;
}

.filter-setting {
  position: relative;
}

.filter-setting .row {
  padding: 5px 0;
}

.filter-setting .row .el-input {
  width: 90px;
}

.el-tag + .el-tag {
  margin-left: 5px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 600px) {
  .el-dialog,
  .el-message-box {
    width: 320px !important;
  }
}
