.w-overlay {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  left: 0;
  outline: 0;
  bottom: 0;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  height: 100%;
  width: 100%;
  display: none;
}
.w-overlay.open {
  z-index: 9999;
}
.w-overlay-open {
  overflow: hidden;
}
.w-overlay-content {
  position: relative;
  outline: 0;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  margin: 20px 0;
  z-index: 20;
}
.w-overlay-inline {
  position: absolute;
  overflow: visible;
  overflow: initial;
}
.w-overlay-inline .w-overlay-container {
  position: relative;
}
.w-overlay-inline .w-overlay-backdrop {
  position: absolute;
}
.w-overlay-container {
  position: absolute;
  overflow: auto;
  z-index: 99999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.w-overlay-container:before {
  content: ' ';
  display: inline-block;
  height: 100%;
  width: 1px;
  vertical-align: middle;
}
.w-overlay-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: 20;
  background-color: rgba(16, 22, 26, 0.7);
  overflow: auto;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}
.w-overlay-enter .w-overlay-backdrop {
  opacity: 0;
}
.w-overlay-enter-active .w-overlay-backdrop {
  opacity: 1;
  transition: opacity 300ms ease-in;
}
.w-overlay-exit .w-overlay-backdrop {
  opacity: 1;
}
.w-overlay-exit-active .w-overlay-backdrop {
  opacity: 0;
  transition: opacity 300ms ease-in;
}
.w-overlay-enter .w-overlay-content {
  transform: scale(0.5);
  opacity: 0;
}
.w-overlay-enter-active .w-overlay-content {
  opacity: 1;
  transform: translate(0);
  transition: transform 300ms ease, opacity 300ms ease;
}
.w-overlay-exit .w-overlay-content {
  opacity: 1;
  transform: translate(0);
  transition: transform 300ms ease, opacity 300ms ease;
}
.w-overlay-exit-active .w-overlay-content {
  transform: scale(0.5);
  opacity: 0;
}
.w-overlay-enter,
.w-overlay-enter-done,
.w-overlay-exit {
  display: inherit;
}

.w-icon,
.w-icon svg {
  height: 1em;
  width: 1em;
}
.w-icon {
  display: inline-flex;
  align-self: center;
  position: relative;
  transition: color 0.3s;
  box-sizing: inherit;
}
.w-icon-baseline {
  top: 0.125em;
}
.w-icon-spin svg {
  animation: loading-circle 1s infinite linear;
}
@keyframes loading-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.w-btn {
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 5px 7px;
  position: relative;
  vertical-align: middle;
  text-align: left;
  line-height: 14px;
  font-size: 14px;
  min-width: 30px;
  min-height: 30px;
  text-align: center;
  color: #fff;
  transition: background-color 0.5s, opacity 1s;
}
.w-btn > *:not(:last-child) {
  margin-right: 5px;
}
.w-btn + .w-btn:not(.block) {
  margin-left: 5px;
}
.w-btn.block {
  display: block;
  width: 100%;
}
.w-btn.disabled,
.w-btn[disabled] {
  cursor: not-allowed;
}
.w-btn-primary {
  color: #fff;
  background-color: #008ef0;
  z-index: 1;
}
.w-btn-primary:hover {
  background-color: #0070bd;
}
.w-btn-primary:focus,
.w-btn-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 142, 240, 0.26);
}
.w-btn-primary:hover {
  color: #fff;
  background-color: #0070bd;
  z-index: 2;
}
.w-btn-primary:active,
.w-btn-primary.active {
  color: #fff;
  background-color: #00528a;
  background-image: none;
}
.w-btn-primary.disabled,
.w-btn-primary[disabled] {
  background-color: #57baff;
  z-index: 0;
}
.w-btn-primary.w-btn-basic {
  background-color: transparent !important;
  box-shadow: inset 0 0 0 #000;
  color: #008ef0;
}
.w-btn-primary.w-btn-basic:hover {
  background-color: #c7e8ff !important;
}
.w-btn-primary.w-btn-basic:active,
.w-btn-primary.w-btn-basic.active {
  color: #008ef0;
  background-color: #94d3ff !important;
  background-image: none;
}
.w-btn-primary.w-btn-basic.disabled,
.w-btn-primary.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: #24a6ff;
}
.w-btn-success {
  color: #fff;
  background-color: #28a745;
  z-index: 1;
}
.w-btn-success:hover {
  background-color: #1e7e34;
}
.w-btn-success:focus,
.w-btn-success.focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.26);
}
.w-btn-success:hover {
  color: #fff;
  background-color: #1e7e34;
  z-index: 2;
}
.w-btn-success:active,
.w-btn-success.active {
  color: #fff;
  background-color: #145523;
  background-image: none;
}
.w-btn-success.disabled,
.w-btn-success[disabled] {
  background-color: #5dd879;
  z-index: 0;
}
.w-btn-success.w-btn-basic {
  background-color: transparent !important;
  box-shadow: inset 0 0 0 #000;
  color: #28a745;
}
.w-btn-success.w-btn-basic:hover {
  background-color: #b7eec4 !important;
}
.w-btn-success.w-btn-basic:active,
.w-btn-success.w-btn-basic.active {
  color: #28a745;
  background-color: #8ee4a2 !important;
  background-image: none;
}
.w-btn-success.w-btn-basic.disabled,
.w-btn-success.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: #34ce57;
}
.w-btn-warning {
  color: #fff;
  background-color: #ffc107;
  z-index: 1;
}
.w-btn-warning:hover {
  background-color: #d39e00;
}
.w-btn-warning:focus,
.w-btn-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.26);
}
.w-btn-warning:hover {
  color: #fff;
  background-color: #d39e00;
  z-index: 2;
}
.w-btn-warning:active,
.w-btn-warning.active {
  color: #fff;
  background-color: #a07800;
  background-image: none;
}
.w-btn-warning.disabled,
.w-btn-warning[disabled] {
  background-color: #ffdb6d;
  z-index: 0;
}
.w-btn-warning.w-btn-basic {
  background-color: transparent !important;
  box-shadow: inset 0 0 0 #000;
  color: #ffc107;
}
.w-btn-warning.w-btn-basic:hover {
  background-color: #fff7dd !important;
}
.w-btn-warning.w-btn-basic:active,
.w-btn-warning.w-btn-basic.active {
  color: #ffc107;
  background-color: #ffeaaa !important;
  background-image: none;
}
.w-btn-warning.w-btn-basic.disabled,
.w-btn-warning.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: #ffce3a;
}
.w-btn-danger {
  color: #fff;
  background-color: #dc3545;
  z-index: 1;
}
.w-btn-danger:hover {
  background-color: #bd2130;
}
.w-btn-danger:focus,
.w-btn-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.26);
}
.w-btn-danger:hover {
  color: #fff;
  background-color: #bd2130;
  z-index: 2;
}
.w-btn-danger:active,
.w-btn-danger.active {
  color: #fff;
  background-color: #921925;
  background-image: none;
}
.w-btn-danger.disabled,
.w-btn-danger[disabled] {
  background-color: #eb8c95;
  z-index: 0;
}
.w-btn-danger.w-btn-basic {
  background-color: transparent !important;
  box-shadow: inset 0 0 0 #000;
  color: #dc3545;
}
.w-btn-danger.w-btn-basic:hover {
  background-color: #fceced !important;
}
.w-btn-danger.w-btn-basic:active,
.w-btn-danger.w-btn-basic.active {
  color: #dc3545;
  background-color: #f4c0c5 !important;
  background-image: none;
}
.w-btn-danger.w-btn-basic.disabled,
.w-btn-danger.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: #e4606d;
}
.w-btn-light {
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.17), inset 1px -1px 0 0 rgba(0, 0, 0, 0.17), inset -1px 0px 0 0 rgba(0, 0, 0, 0.17);
  color: #393e48;
  background-color: #f8f9fa;
  z-index: 1;
}
.w-btn-light:hover {
  background-color: #dae0e5;
}
.w-btn-light:focus,
.w-btn-light.focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(248, 249, 250, 0.26);
}
.w-btn-light:hover {
  color: #393e48;
  background-color: #dae0e5;
  z-index: 2;
}
.w-btn-light:active,
.w-btn-light.active {
  color: #393e48;
  background-color: #bcc6cf;
  background-image: none;
}
.w-btn-light.disabled,
.w-btn-light[disabled] {
  background-color: #ffffff;
  z-index: 0;
}
.w-btn-light.w-btn-basic {
  background-color: transparent !important;
  box-shadow: inset 0 0 0 #000;
  color: #f8f9fa;
}
.w-btn-light.w-btn-basic:hover {
  background-color: #ffffff !important;
}
.w-btn-light.w-btn-basic:active,
.w-btn-light.w-btn-basic.active {
  color: #f8f9fa;
  background-color: #ffffff !important;
  background-image: none;
}
.w-btn-light.w-btn-basic.disabled,
.w-btn-light.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: #ffffff;
}
.w-btn-light:focus,
.w-btn-light.focus {
  outline: 0;
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.17), inset 1px -1px 0 0 rgba(0, 0, 0, 0.17), inset -1px 0px 0 0 rgba(0, 0, 0, 0.17), 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.w-btn-light.w-btn-basic {
  color: #9199a7;
}
.w-btn-light.w-btn-basic:focus,
.w-btn-light.w-btn-basic.focus {
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.17);
}
.w-btn-light.w-btn-basic:hover {
  background-color: #ecedf0 !important;
}
.w-btn-light.w-btn-basic:active,
.w-btn-light.w-btn-basic.active {
  color: #9199a7;
  background-color: #d5d8dd !important;
  background-image: none;
}
.w-btn-light.w-btn-basic.disabled,
.w-btn-light.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: #adb3be;
}
.w-btn-light.disabled,
.w-btn-light[disabled] {
  color: #666f81;
  z-index: 0;
}
.w-btn-dark {
  color: #fff;
  background-color: #393e48;
  z-index: 1;
}
.w-btn-dark:hover {
  background-color: #22252c;
}
.w-btn-dark:focus,
.w-btn-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(57, 62, 72, 0.26);
}
.w-btn-dark:hover {
  color: #fff;
  background-color: #22252c;
  z-index: 2;
}
.w-btn-dark:active,
.w-btn-dark.active {
  color: #fff;
  background-color: #0c0d0f;
  background-image: none;
}
.w-btn-dark.disabled,
.w-btn-dark[disabled] {
  background-color: #666f81;
  z-index: 0;
}
.w-btn-dark.w-btn-basic {
  background-color: transparent !important;
  box-shadow: inset 0 0 0 #000;
  color: #393e48;
}
.w-btn-dark.w-btn-basic:hover {
  background-color: #a2a8b5 !important;
}
.w-btn-dark.w-btn-basic:active,
.w-btn-dark.w-btn-basic.active {
  color: #393e48;
  background-color: #858e9f !important;
  background-image: none;
}
.w-btn-dark.w-btn-basic.disabled,
.w-btn-dark.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: #505764;
}
.w-btn-link {
  color: #008ef0;
  background-color: transparent;
  z-index: 1;
  color: #008ef0 !important;
}
.w-btn-link:hover {
  background-color: rgba(0, 0, 0, 0);
}
.w-btn-link:focus,
.w-btn-link.focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
}
.w-btn-link:hover {
  color: #008ef0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
}
.w-btn-link:active,
.w-btn-link.active {
  color: #008ef0;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
}
.w-btn-link.disabled,
.w-btn-link[disabled] {
  background-color: rgba(51, 51, 51, 0);
  z-index: 0;
}
.w-btn-link.w-btn-basic {
  background-color: transparent !important;
  box-shadow: inset 0 0 0 #000;
  color: transparent;
}
.w-btn-link.w-btn-basic:hover {
  background-color: rgba(107, 107, 107, 0) !important;
}
.w-btn-link.w-btn-basic:active,
.w-btn-link.w-btn-basic.active {
  color: transparent;
  background-color: rgba(82, 82, 82, 0) !important;
  background-image: none;
}
.w-btn-link.w-btn-basic.disabled,
.w-btn-link.w-btn-basic[disabled] {
  background-color: transparent !important;
  color: rgba(26, 26, 26, 0);
}
.w-btn-link:hover:not([disabled]) {
  color: #006ab3;
  text-decoration: underline;
}
.w-btn-link:not([disabled]):active,
.w-btn-link:not([disabled]).active {
  color: #002d4d;
  box-shadow: none;
  text-decoration: underline;
}
.w-btn-link.disabled,
.w-btn-link[disabled] {
  z-index: 0;
}
.w-btn .w-icon {
  font-size: 16px;
}
.w-btn-size-large {
  font-size: 16px;
  line-height: 16px;
  min-height: 36px;
}
.w-btn-size-large .w-icon {
  font-size: 20px;
}
.w-btn-size-small {
  padding: 0 6px;
  min-width: 20px;
  font-size: 12px;
  line-height: 24px;
  min-height: 24px;
}
.w-btn-size-small .w-icon {
  font-size: 14px;
}
.w-btn .w-icon:not(:last-child) {
  margin-right: 5px;
}
.w-btn-loading.w-btn-light::before {
  border: 1.2px solid #666f81;
}
.w-btn-loading::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1.2px solid #fff;
  color: #fff;
  margin: 0 3px 0 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 30%, 0% 30%);
          clip-path: polygon(0% 0%, 100% 0, 100% 30%, 0% 30%);
  animation: rotate 0.5s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

.w-modal {
  z-index: 1001;
}
.w-modal-inner {
  padding-bottom: 20px;
  background: #f9f9f9;
  min-width: 320px;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
}
.w-modal-header {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding-left: 13px;
  padding-right: 5px;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15);
  font-size: 16px;
}
.w-modal-header > .w-icon {
  margin-right: 10px;
  color: #393e48;
}
.w-modal-header h4 {
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  font-weight: bold;
  min-height: 22px;
}
.w-modal-body,
.w-modal-footer {
  margin: 0 20px;
}
.w-modal-body {
  padding-top: 20px;
  font-size: 14px;
}
.w-modal-footer {
  display: flex;
  margin-top: 15px;
  flex-direction: row-reverse;
}
.w-modal-footer .w-btn + .w-btn {
  margin-right: 10px;
}

.w-alert .w-modal-header,
.w-alert .w-modal-body {
  display: table-cell;
}
.w-alert .w-modal-header {
  background-color: transparent;
  padding: 20px 0 0 20px;
  box-shadow: 0 0 0 0;
  padding-right: 0;
}
.w-alert .w-modal-header > .w-icon {
  font-size: 40px;
  margin-right: 0;
}
.w-alert .w-modal-body {
  padding-right: 20px;
  padding-left: 20px;
  vertical-align: top;
}
.w-alert.primary .w-modal-header > .w-icon {
  color: #008ef0;
}
.w-alert.success .w-modal-header > .w-icon {
  color: #28a745;
}
.w-alert.warning .w-modal-header > .w-icon {
  color: #ffc107;
}
.w-alert.danger .w-modal-header > .w-icon {
  color: #dc3545;
}
.w-alert .w-modal-inner .w-modal-header > button {
  min-width: 18px;
  min-height: 18px;
  padding: 5px 5px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.w-alert .w-modal-shown-title.w-modal-inner .w-modal-header {
  word-break: break-word;
  display: flex;
  padding-top: 15px;
  padding-right: 10px;
}
.w-alert .w-modal-shown-title.w-modal-inner .w-modal-header > .w-icon {
  font-size: 40px;
  position: absolute;
  top: 18px;
}
.w-alert .w-modal-shown-title.w-modal-inner .w-modal-header > button > .w-icon {
  font-size: 14px;
}
.w-alert .w-modal-shown-title.w-modal-inner .w-modal-body {
  word-break: break-word;
  padding-top: 5px;
}
.w-alert .w-modal-shown-icon .w-modal-header > h4 {
  padding-left: 60px;
}
.w-alert .w-modal-shown-title.w-modal-shown-icon .w-modal-body {
  padding-left: 80px;
}

.w-avatar {
  display: inline-block;
  text-align: center;
  background: #ccc;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.w-avatar + .w-avatar {
  margin-left: 5px;
}
.w-avatar-mini {
  height: 18px;
  width: 18px;
  font-size: 12px;
}
.w-avatar-small {
  height: 24px;
  width: 24px;
  font-size: 12px;
}
.w-avatar-large {
  height: 40px;
  width: 40px;
  font-size: 24px;
}
.w-avatar-circle {
  border-radius: 50%;
}
.w-avatar > img {
  width: 100%;
  height: 100%;
  display: block;
}

.w-back-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 1006;
  transition: all 1s;
}
.w-back-top.no-fixed {
  cursor: auto;
  position: static;
}
.w-back-top-hide {
  transition: all 1s;
  opacity: 0;
  height: 0px;
}
.w-back-top-show {
  opacity: 1;
}

.w-badge {
  position: relative;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.w-badge sup.w-badge-count {
  position: absolute;
  transform: translateX(-50%);
  top: -10px;
  height: 16px;
  border-radius: 10px;
  min-width: 16px;
  background: #f04134;
  color: #fff;
  line-height: 16px;
  text-align: center;
  padding: 0 5px;
  font-size: 12px;
  white-space: nowrap;
  transform-origin: -10% center;
  font-family: tahoma;
  box-shadow: 0 0 0 1px #fff;
}
.w-badge.nowrap sup.w-badge-count {
  top: auto;
  display: block;
  position: relative;
  transform: none !important;
  overflow: hidden;
}
.w-badge sup.dot {
  position: absolute;
  transform: translateX(-50%);
  transform-origin: 0 center;
  overflow: hidden;
  color: transparent;
  top: -4px;
  height: 6px;
  width: 6px;
  padding: 0;
  border-radius: 100%;
  background: #f04134;
  z-index: 10;
  box-shadow: 0 0 0 1px #fff;
}
.w-badge-dot {
  line-height: inherit;
  vertical-align: baseline;
  font-size: 14px;
  margin: 0 4px;
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.w-badge-processing .w-badge-dot {
  position: relative;
  background-color: #007bff;
}
.w-badge-processing .w-badge-dot:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: inherit;
  content: '';
  animation: wStatusProcessing 1.2s infinite ease-in-out;
}
@keyframes wStatusProcessing {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.w-breadcrumb-item {
  display: inline-flex;
}
.w-breadcrumb-item + .w-breadcrumb-item::before,
.w-breadcrumb-item + .w-breadcrumb-item .w-breadcrumb-separator {
  padding-right: 8px;
  padding-left: 8px;
  color: #6e6e6e;
}
.w-breadcrumb-item + .w-breadcrumb-item::before {
  display: inline-block;
  content: attr(data-separator);
}
.w-breadcrumb-item + .w-breadcrumb-item.no-before:before {
  display: none;
}
.w-breadcrumb-item + .w-breadcrumb-item.no-separator {
  margin-left: 6px;
}
.w-breadcrumb-item + .w-breadcrumb-item.no-separator:before {
  display: none;
}
.w-breadcrumb-item.active {
  color: #6e6e6e;
}

.w-breadcrumb {
  display: inline-flex;
  font-size: 14px;
}

.w-btn-group > .w-btn {
  border-radius: 0;
  box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, 0.17), inset -1px 0 0 0 rgba(0, 0, 0, 0.17), inset -1px 0px 0 0 rgba(0, 0, 0, 0.17);
}
.w-btn-group > .w-btn:last-child {
  border-radius: 0 3px 3px 0;
}
.w-btn-group > .w-btn:first-child {
  border-radius: 3px 0 0 3px;
}
.w-btn-group > .w-btn:first-child:last-child {
  border-radius: 3px !important;
}
.w-btn-group > .w-btn:focus {
  z-index: 2;
}
.w-btn-group .w-btn + .w-btn {
  margin-left: -1px !important;
}
.w-btn-group .w-btn:not(.w-btn-light):first-child {
  box-shadow: inset -1px 0px 0 0 rgba(0, 0, 0, 0.17) !important;
}
.w-btn-group .w-btn:not(.w-btn-light):last-child {
  box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, 0.17), inset 0px 0 0 0 rgba(0, 0, 0, 0.17);
}
.w-btn-group .w-btn-light {
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.17), inset 1px -1px 0 0 rgba(0, 0, 0, 0.17), inset -1px 0px 0 0 rgba(0, 0, 0, 0.17) !important;
}
.w-btn-group-vertical .w-btn:not(.w-btn-light) {
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.17), inset 0 1px 0 0 rgba(0, 0, 0, 0.17) !important;
}
.w-btn-group-vertical .w-btn:not(.w-btn-light):first-child {
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.17), inset 0 0 0 0 rgba(0, 0, 0, 0.17) !important;
}
.w-btn-group-vertical .w-btn {
  width: 100%;
}
.w-btn-group-vertical .w-btn + .w-btn {
  margin-left: 0 !important;
  margin-top: -1px !important;
}
.w-btn-group-vertical .w-btn:last-child {
  border-radius: 0 0 3px 3px;
}
.w-btn-group-vertical .w-btn:first-child {
  border-radius: 3px 3px 0 0;
}

.w-overlay.w-overlay-trigger {
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  overflow: inherit;
  width: auto;
  width: initial;
  height: auto;
  height: initial;
}
.w-overlay.w-overlay-trigger .w-overlay-container {
  position: relative;
  overflow: inherit;
}
.w-overlay.w-overlay-trigger .w-overlay-container::before {
  display: none;
}
.w-overlay.w-overlay-trigger .w-overlay-content {
  margin: 0;
}
.w-overlay.w-overlay-trigger.rightTop .w-overlay-content {
  transform-origin: left top;
}
.w-overlay.w-overlay-trigger.right .w-overlay-content {
  transform-origin: left center;
}
.w-overlay.w-overlay-trigger.rightBottom .w-overlay-content {
  transform-origin: left bottom;
}
.w-overlay.w-overlay-trigger.topLeft .w-overlay-content {
  transform-origin: bottom left;
}
.w-overlay.w-overlay-trigger.top .w-overlay-content {
  transform-origin: bottom center;
}
.w-overlay.w-overlay-trigger.topRight .w-overlay-content {
  transform-origin: bottom right;
}
.w-overlay.w-overlay-trigger.leftTop .w-overlay-content {
  transform-origin: right top;
}
.w-overlay.w-overlay-trigger.left .w-overlay-content {
  transform-origin: right center;
}
.w-overlay.w-overlay-trigger.leftBottom .w-overlay-content {
  transform-origin: right bottom;
}
.w-overlay.w-overlay-trigger.bottomLeft .w-overlay-content {
  transform-origin: top left;
}
.w-overlay.w-overlay-trigger.bottom .w-overlay-content {
  transform-origin: top center;
}
.w-overlay.w-overlay-trigger.bottomRight .w-overlay-content {
  transform-origin: top right;
}
.w-overlay-trigger-disabled {
  cursor: not-allowed;
}

.w-popover {
  position: relative;
  display: inline-block;
  outline: 0;
}
.w-popover-arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: transparent;
  z-index: 21;
}
.w-popover-inner {
  font-size: 12px;
  display: block;
  text-align: left;
  text-decoration: none;
  background-color: #fff;
  border-radius: 4px;
  min-height: 23px;
  box-shadow: rgba(16, 22, 26, 0.1) 0px 0px 0px 1px, rgba(16, 22, 26, 0.2) 0px 2px 4px, rgba(16, 22, 26, 0.2) 0px 8px 24px;
}
.w-popover.right .w-popover-arrow,
.w-popover.rightTop .w-popover-arrow,
.w-popover.rightBottom .w-popover-arrow {
  left: 2px;
  margin-top: -15px;
  top: 50%;
}
.w-popover.left .w-popover-arrow,
.w-popover.leftTop .w-popover-arrow,
.w-popover.leftBottom .w-popover-arrow {
  transform: rotate(180deg);
  margin-top: -15px;
  right: 2px;
  top: 50%;
}
.w-popover.leftTop .w-popover-arrow,
.w-popover.rightTop .w-popover-arrow {
  top: 15px;
}
.w-popover.leftBottom .w-popover-arrow,
.w-popover.rightBottom .w-popover-arrow {
  bottom: 0;
  top: auto;
}
.w-popover.top .w-popover-arrow,
.w-popover.topLeft .w-popover-arrow,
.w-popover.topRight .w-popover-arrow {
  transform: rotate(-90deg);
  bottom: 2px;
  left: 50%;
  margin-left: -15px;
}
.w-popover.bottom .w-popover-arrow,
.w-popover.bottomLeft .w-popover-arrow,
.w-popover.bottomRight .w-popover-arrow {
  transform: rotate(90deg);
  left: 50%;
  margin-left: -15px;
  top: 2px;
}
.w-popover.bottomLeft .w-popover-arrow,
.w-popover.topLeft .w-popover-arrow {
  left: 15px;
}
.w-popover.bottomRight .w-popover-arrow,
.w-popover.topRight .w-popover-arrow {
  right: 0;
  left: auto;
}
.w-popover.top,
.w-popover.topLeft,
.w-popover.topRight {
  padding-bottom: 13px;
}
.w-popover.bottom,
.w-popover.bottomLeft,
.w-popover.bottomRight {
  padding-top: 13px;
}
.w-popover.right,
.w-popover.rightTop,
.w-popover.rightBottom {
  padding-left: 13px;
}
.w-popover.left,
.w-popover.leftTop,
.w-popover.leftBottom {
  padding-right: 13px;
}
.w-popover.no-arrow {
  padding: 0 !important;
}

.w-input {
  position: relative;
  font-size: 14px;
  line-height: 14px;
  width: 100%;
}
.w-input-inner {
  outline: none;
  border: none;
  border-radius: 3px;
  box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  box-sizing: border-box;
  background: #fff;
  height: 30px;
  margin: 0 !important;
  padding: 0 10px;
  vertical-align: middle;
  line-height: 30px;
  color: #393e48;
  font-weight: 400;
  font-size: inherit;
  transition: box-shadow 0.3s cubic-bezier(0.4, 1, 0.75, 0.9);
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.w-input-inner:not(:first-child) {
  padding-left: 26px;
}
.w-input-inner:focus {
  box-shadow: 0 0 0 1px #393e48, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-input-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-input-inner:focus.w-input-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-input-inner:disabled {
  box-shadow: none;
  background: #dddddd;
  opacity: 0.75;
  color: #a5a5a5;
  cursor: not-allowed;
  resize: none;
}
.w-input .w-input-inner {
  width: 100%;
}
.w-input > .w-icon {
  position: absolute;
  margin: 0 7px 0 7px;
  transform: translateY(-50%);
  top: 50%;
}
.w-input-addon-after {
  position: absolute;
  top: 3px;
  right: 3px;
  display: flex;
  bottom: 3px;
}
.w-input-addon-after > * {
  display: flex !important;
  align-items: center;
}
.w-input-large {
  font-size: 16px;
}
.w-input-large .w-input-inner {
  line-height: 36px;
  height: 36px;
}
.w-input-small {
  min-width: 20px;
}
.w-input-small .w-input-inner {
  line-height: 24px;
  height: 24px;
  padding: 0 6px;
}
.w-input-small .w-input-inner:not(:first-child) {
  padding-left: 26px;
}
.w-input-small .w-input-addon-after > * {
  line-height: 16px;
  min-height: 16px;
}

.w-timepicker {
  display: flex;
}
.w-timepicker::after {
  content: '';
  display: block;
  clear: both;
}
.w-timepicker-spinner {
  max-height: 189px;
  flex: 1 1;
  overflow: auto;
  font-size: 14px;
}
.w-timepicker-spinner:hover {
  overflow: auto;
}
.w-timepicker-spinner > ul {
  list-style: none;
  min-width: 56px;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 162px !important;
}
.w-timepicker-spinner > ul > li + li {
  margin-top: 0 !important;
}
.w-timepicker-spinner > ul > li {
  cursor: pointer;
  text-align: center;
  height: 28px;
  line-height: 28px;
  transition: all 0.3s;
  color: #393e48;
}
.w-timepicker-spinner > ul > li:hover:not(.disabled) {
  background-color: #f6f8fa;
}
.w-timepicker-spinner > ul > li:active:not(.disabled) {
  background-color: #e1e5e8;
}
.w-timepicker-spinner > ul > li.selected {
  background-color: #f1f1f1;
  font-weight: bold;
  color: #000;
}
.w-timepicker-spinner > ul > li.disabled {
  color: #d4d4d4;
  cursor: not-allowed;
}
.w-timepicker-spinner > ul > li.disabled.hide {
  display: none;
}
.w-timepicker-spinner + .w-timepicker-spinner ul {
  border-left: 1px solid #e9e9e9;
}

.w-timepicker {
  overflow: hidden;
  border-radius: 4px;
}
.w-timepicker-input.disabled .w-timepicker-close-btn {
  display: none !important;
}
.w-timepicker-input .w-timepicker-close-btn {
  display: none;
  min-height: 0;
  min-height: initial;
  color: #a5a5a5;
}
.w-timepicker-input .w-timepicker-close-btn:hover {
  color: #393e48;
  background-color: transparent !important;
}

.w-datepicker-weekday,
.w-datepicker-week {
  display: flex;
  width: 100%;
}
.w-datepicker-weekday > div,
.w-datepicker-week > div {
  display: table-cell;
  flex: 1 1;
  min-width: 26px;
  min-height: 26px;
  vertical-align: middle;
  text-align: center;
}
.w-datepicker-weekday > div {
  font-weight: bold;
}
.w-datepicker-weekday > div.end,
.w-datepicker-week > div.end {
  color: #6f6f6f;
}
.w-datepicker-week > div {
  border-radius: 3px;
  cursor: pointer;
}
.w-datepicker-week > div.prev,
.w-datepicker-week > div.next {
  color: #d3d3d3;
}
.w-datepicker-week > div > div {
  transition: background-color 0.3s, color 0.3s;
  margin: 0 2px;
  border-radius: 3px;
  line-height: 22px;
}
.w-datepicker-week > div.today > div {
  background-color: #eaeaea;
}
.w-datepicker-week > div.selected > div,
.w-datepicker-week > div.selected:hover > div {
  color: #fff;
  background-color: #2ea3f4;
}
.w-datepicker-week > div:hover > div {
  background-color: #eaeaea;
  color: #393e48;
}
.w-datepicker-week > div:active > div {
  background-color: #d2d2d2;
}
.w-datepicker-week > div.disabled > div,
.w-datepicker-week > div.disabled:hover > div {
  color: #d3d3d3;
  cursor: not-allowed;
  background-color: #f5f5f5;
}
.w-datepicker-week > div.disabled.today > div,
.w-datepicker-week > div.disabled:hover.today > div {
  background-color: rgba(189, 189, 189, 0.47);
  color: #fff;
}
.w-datepicker-week > div.disabled.selected > div,
.w-datepicker-week > div.disabled:hover.selected > div {
  background-color: rgba(46, 163, 244, 0.47);
  color: #fff;
}
.w-datepicker-body {
  padding-top: 5px;
}

.w-datepicker-month,
.w-datepicker-year {
  text-align: center;
  max-width: 100%;
  padding: 10px 0 9px 0;
}
.w-datepicker-month > div,
.w-datepicker-year > div {
  display: inline-block;
  width: 50%;
  line-height: 20px;
  margin: 3px 0;
}
.w-datepicker-month > div > span,
.w-datepicker-year > div > span {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 3px;
  cursor: pointer;
}
.w-datepicker-month > div.selected > span,
.w-datepicker-year > div.selected > span {
  color: #fff;
  background-color: #2ea3f4;
}
.w-datepicker-month > div > span:hover,
.w-datepicker-year > div > span:hover {
  background-color: #dcf0fd;
  color: #2ea3f4;
}
.w-datepicker-month > div.paging,
.w-datepicker-year > div.paging {
  color: rgba(0, 0, 0, 0.25);
}
.w-datepicker-year > div {
  width: 33.333%;
}

.w-datepicker-caption {
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  text-align: center;
  padding: 0 0 3px 0;
  border-bottom: 1px solid #ececec;
}
.w-datepicker-caption-pane {
  transition: background-color 0.3s;
  display: inline-block;
  border-radius: 3px;
  padding: 1px 5px;
  font-weight: bold;
  cursor: pointer;
}
.w-datepicker-caption-pane:hover {
  background-color: #eaeaea;
}
.w-datepicker-caption-pane:active {
  background-color: #d2d2d2;
}
.w-datepicker-caption-pane.year + .w-datepicker-caption-pane.month {
  margin-left: 5px;
}
.w-datepicker-caption-pane.prev,
.w-datepicker-caption-pane.next {
  z-index: 30;
  position: relative;
  padding: 1px 8px 6px 8px;
}
.w-datepicker-caption-pane.prev::after,
.w-datepicker-caption-pane.next::after,
.w-datepicker-caption-pane.prev::before,
.w-datepicker-caption-pane.next::before {
  content: '';
  display: block;
  height: 8px;
  width: 2px;
  border-radius: 2px;
  background-color: #333;
}
.w-datepicker-caption-pane.prev::after,
.w-datepicker-caption-pane.next::after {
  margin-top: -4px;
}
.w-datepicker-caption-pane.prev::before,
.w-datepicker-caption-pane.next::before {
  margin-top: 4px;
}
.w-datepicker-caption-pane.prev::after,
.w-datepicker-caption-pane.next::before {
  transform: rotate(-45deg);
}
.w-datepicker-caption-pane.prev::before,
.w-datepicker-caption-pane.next::after {
  transform: rotate(45deg);
}
.w-datepicker-caption-pane.prev {
  float: left;
}
.w-datepicker-caption-pane.next {
  float: right;
}
.w-datepicker-caption-today {
  cursor: pointer;
  background: #dedede;
  border-radius: 3px;
  display: inline-block;
  height: 10px;
  width: 10px;
  overflow: hidden;
  margin: 0 0 0 2px;
  transition: background-color 0.3s;
}
.w-datepicker-caption-today::before {
  content: '';
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 3px;
  margin: 3px 0 0 3px;
  background-color: #a0a0a0;
}
.w-datepicker-caption-today:hover {
  background-color: #2ea3f4;
}
.w-datepicker-caption-today:hover::before {
  background-color: #fff;
}
.w-datepicker-caption-today:active {
  background-color: #007cd2;
}
.w-datepicker-caption-today:active::before {
  background-color: #fff;
}

.w-datepicker {
  vertical-align: top;
  display: inline-block;
  position: relative;
  border-radius: 3px;
  background: #fff;
  color: #393e48;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  font-size: 14px;
  line-height: 21px;
  padding: 5px;
  min-width: 192px;
  max-width: 192px;
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-datepicker-timepicker {
  border: 1px solid #e9e9e9;
  border-top: 0;
  border-radius: 0 0 4px 4px !important;
}
.w-datepicker-timepicker > div {
  max-height: 186px;
}
.w-datepicker-time-btn {
  cursor: pointer;
  margin-top: 2px;
  transition: background-color 0.3s;
  display: inline-block;
  border-radius: 3px;
  padding: 1px 5px;
}
.w-datepicker-time-btn:hover {
  background-color: #eaeaea;
}
.w-datepicker-time-btn:active {
  background-color: #d2d2d2;
}

.w-calendar-inner {
  text-align: right;
  padding: 5px;
}
.w-calendar-panel {
  width: 100%;
  height: 90px;
  line-height: 16px;
  overflow-y: auto;
  text-align: left;
}
.w-calendar-panel > * {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 12px;
}
.w-calendar-caption {
  font-size: 26px;
  font-weight: 200;
  width: 100%;
  display: inline-block;
}
.w-calendar-title,
.w-calendar-btn-group {
  display: inline-block;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}
.w-calendar-btn-group {
  float: right;
}
.w-calendar-btn-group > .w-calendar-btn {
  font-size: 16px;
  padding: 2px 3px;
  position: relative;
  top: -3px;
}
.w-calendar-btn-group > .w-icon,
.w-calendar-btn-group > .w-calendar-btn {
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s;
}
.w-calendar-btn-group > .w-icon:hover,
.w-calendar-btn-group > .w-calendar-btn:hover {
  background-color: #ececec;
}
.w-calendar-btn-group > .w-icon:active,
.w-calendar-btn-group > .w-calendar-btn:active {
  background-color: #dedddd;
}
.w-calendar-btn-group > .w-icon,
.w-calendar-btn-group > .w-calendar-btn {
  vertical-align: middle;
  margin-top: -6px;
}
.w-calendar-btn-group > .w-icon > svg,
.w-calendar-btn-group > .w-calendar-btn > svg {
  width: 18px;
  height: 18px;
  margin: 4px 0px 0px 4px;
}
.w-calendar-btn-group > .w-icon:last-child,
.w-calendar-btn-group > .w-calendar-btn:last-child {
  transform: rotate(-90deg);
}
.w-calendar-btn-group > .w-icon:first-child,
.w-calendar-btn-group > .w-calendar-btn:first-child {
  transform: rotate(90deg);
}
.w-calendar-day {
  padding-right: 5px;
}
.w-calendar .w-datepicker-body {
  padding: 0 0 0 0;
}
.w-calendar .w-datepicker-week:last-child > div {
  border-bottom: 0;
}
.w-calendar .w-datepicker-week > div {
  border-radius: 0;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.w-calendar .w-datepicker-week > div:last-child {
  border-right: 0;
}
.w-calendar .w-datepicker-week > div > div {
  margin: 0;
  border-radius: 0;
}
.w-calendar .w-datepicker-weekday > div {
  background-color: #ececec;
  height: 32px;
  line-height: 32px;
}

.w-card {
  background: #fff;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s;
}
.w-card:not(.w-card-no-hover):hover,
.w-card.active {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
}
.w-card-bordered {
  border: 1px solid #e9e9e9;
}
.w-card-head {
  height: 40px;
  line-height: 40px;
  padding: 0 14px;
  border-radius: 2px 2px 0 0;
  zoom: 1;
}
.w-card-head + .w-card-body {
  border-top: 1px solid #e9e9e9;
}
.w-card-head-title {
  font-size: 14px;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  display: inline-block;
}
.w-card-extra {
  position: absolute;
  right: 16px;
  top: 0;
}
.w-card-body {
  padding: 14px;
}
.w-card-body + .w-card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.w-card-footer {
  padding: 8px 10px;
}
.w-card-footer a {
  color: rgba(0, 0, 0, 0.4);
}

.w-carousel {
  overflow: hidden;
}
.w-carousel-content {
  height: 200px;
  transition: 0.6s ease-in-out;
}

.w-menu-item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-radius: 2px;
  padding: 5px 7px;
  text-decoration: none;
  line-height: 20px;
  color: inherit;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  transition: initial;
  transition: background-color 0.3s;
}
.w-menu-item:hover,
.w-menu-item.active {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  background-color: rgba(167, 182, 194, 0.3);
}
.w-menu-item:active {
  background-color: rgba(115, 134, 148, 0.3);
}
.w-menu-item.w-disabled {
  outline: none !important;
  background-color: inherit !important;
  cursor: not-allowed !important;
}
.w-menu-item.w-disabled .w-menu-item-icon,
.w-menu-item.w-disabled {
  color: rgba(92, 112, 128, 0.5) !important;
}
.w-menu-item-text {
  flex-grow: 1;
}
.w-menu-item > * {
  margin-right: 7px;
}
.w-menu-item > :last-child {
  margin-right: 0;
}
.w-menu-item-multiline {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.w-menu-subitem .w-menu-subitem-collapse {
  height: 0;
}
.w-menu-subitem-collapse {
  transition: height 300ms;
  position: relative !important;
  top: auto !important;
  top: initial !important;
  left: auto !important;
  left: initial !important;
  right: auto !important;
  right: initial !important;
  bottom: auto !important;
  bottom: initial !important;
  width: auto !important;
  overflow: hidden !important;
}
.w-menu-subitem-collapse ul {
  min-width: 100%;
  padding-right: 0px !important;
}
.w-menu-subitem-collapse-icon {
  transform: scale(0.79);
}
.w-menu-subitem-popup {
  min-width: 180px;
}
.w-menu-subitem-title.w-menu-subitem-collapse-title .w-close,
.w-menu-subitem-title.w-menu-subitem-collapse-title .w-open {
  transition: rotate 0.3s all;
}
.w-menu-subitem-title.w-menu-subitem-collapse-title .w-close {
  transform: scale(0.79) rotate(90deg);
}
.w-menu-subitem-title.w-menu-subitem-collapse-title .w-open {
  transform: scale(0.79) rotate(-90deg);
}
.w-menu-subitem-enter,
.w-menu-subitem-enter-done,
.w-menu-subitem-exit {
  display: inherit;
}

.w-menu {
  margin: 0 !important;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 3px;
  min-width: 100%;
  width: 100%;
  text-align: left;
  font-size: 14px;
  transition: width 0.2s, min-width 0.2s, max-width 0.2s, height 0.2s, min-height 0.2s, max-height 0.2s;
}
.w-menu.w-menu-dark,
.w-menu.w-menu-light {
  padding-left: 5px;
}
.w-menu:not(.w-menu-dark) {
  color: #182026;
  background: #fff;
}
.w-menu li {
  margin: 0 !important;
  list-style: none !important;
  position: relative;
}
.w-menu li:first-of-type {
  border-top: none;
}
.w-menu li a:not([href]) {
  color: inherit;
}
.w-menu.w-bordered {
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-menu .w-menu-divider {
  display: block;
  margin: 5px !important;
  border-top: 1px solid rgba(16, 22, 26, 0.15);
}
.w-menu .w-menu-divider > strong {
  display: block;
  line-height: 17px;
}
.w-menu .w-menu-divider:not(:first-of-type) > strong {
  margin-top: 10px;
}
.w-menu.w-menu-light.w-menu-inline-collapsed > li > .w-menu-item:hover {
  color: #008ef0;
}
.w-menu-inline-collapsed {
  width: 80px;
  min-width: 80px;
}
.w-menu-inline-collapsed > li > .w-menu-item {
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
}
.w-menu-inline-collapsed > li > .w-menu-item:hover {
  background-color: transparent;
  color: #fff;
}
.w-menu-inline-collapsed > li > .w-menu-item > * {
  margin-right: 0;
}
.w-menu-inline-collapsed > li > .w-menu-item .w-menu-item-text {
  width: 0;
  flex-grow: 0;
}
.w-menu-inline-collapsed > li > .w-menu-item .w-menu-subitem-collapse-icon {
  display: none;
}
.w-menu-dark,
.w-menu-dark.w-bordered,
.w-menu-dark .w-menu {
  background: #343a40;
  color: rgba(255, 255, 255, 0.65);
}
.w-menu-dark.w-bordered {
  box-shadow: none;
  box-shadow: initial;
}
.w-menu-dark .active {
  color: #fff !important;
}
.w-menu-dark .w-menu-item.w-disabled,
.w-menu-dark .w-menu-item.w-disabled .w-menu-item-icon {
  color: rgba(142, 142, 142, 0.79) !important;
}
.w-menu-dark .w-menu-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.w-cascader-close {
  font-size: 15px;
  margin-right: 1px;
  color: #393e48;
}

.w-radio {
  vertical-align: middle;
  display: inline-block;
  font-size: 12px;
}
.w-radio input[type='radio'] {
  outline: none;
  position: relative;
  width: 16px;
  height: 16px;
  background-clip: border-box;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
  margin: -0.15px 0.6px 0 0;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #d7d7d7;
  transition: border 0.25s, box-shadow 0.25s;
}
.w-radio input[type='radio']:not(:checked):not(:disabled):not(.disabled):hover,
.w-radio input[type='radio']:not(:checked):not(:disabled):not(.disabled):focus {
  box-shadow: 0 0 0 2px rgba(0, 142, 240, 0.25);
}
.w-radio input[type='radio'],
.w-radio-text {
  vertical-align: middle;
}
.w-radio input[type='radio']:checked {
  border: 5px solid #008ef0;
}
.w-radio input[type='radio']:checked:focus {
  box-shadow: 0 0 0 2px rgba(0, 142, 240, 0.25);
}
.w-radio.disabled {
  color: #c7c7c7;
  cursor: not-allowed;
}
.w-radio.disabled input[type='radio'] {
  cursor: not-allowed;
}
.w-radio.disabled input[type='radio']:checked {
  border: 5px solid #cecece;
}
.w-radio.disabled:not(.checked) input[type='radio'] {
  background-color: #efefef;
}
.w-radio-text {
  display: inline-block;
  margin-left: 4px;
  margin-right: 5px;
  font-size: 14px;
}

.w-radio-group {
  font-size: 0;
}


.w-checkbox {
  vertical-align: middle;
  font-size: 0;
  cursor: pointer;
  white-space: nowrap;
}
.w-checkbox input[type='checkbox'] {
  outline: none;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 2px;
  background-clip: border-box;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
  margin: 0 !important;
  background-color: #d7d7d7;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.w-checkbox input[type='checkbox']:after {
  content: '';
  box-sizing: inherit;
}
.w-checkbox input[type='checkbox']:not(:checked):not(:disabled):not(.disabled):focus,
.w-checkbox input[type='checkbox']:not(:checked):not(:disabled):not(.disabled):hover {
  box-shadow: inset 0 1px 2px rgba(16, 22, 26, 0.35);
}
.w-checkbox.disabled,
.w-checkbox.disabled input[type='checkbox'] {
  cursor: not-allowed;
}
.w-checkbox.disabled input[type='checkbox'] {
  opacity: 0.5;
}
.w-checkbox.disabled .w-checkbox-text {
  color: #6e6e6e;
}
.w-checkbox.indeterminate input[type='checkbox'],
.w-checkbox.indeterminate input[type='checkbox']:checked {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #008ef0;
}
.w-checkbox.indeterminate input[type='checkbox']:after,
.w-checkbox.indeterminate input[type='checkbox']:checked:after {
  display: inline-block;
  background-color: #008df8;
  box-sizing: inherit;
  transform: rotate(0);
  position: relative;
  top: -1px;
  right: -3px;
  border-width: 0;
  border-radius: 2px;
  height: 8px;
  width: 8px;
}
.w-checkbox input[type='checkbox'],
.w-checkbox-text {
  vertical-align: middle;
}
.w-checkbox input[type='checkbox']:checked {
  background-color: #008ef0;
}
.w-checkbox input[type='checkbox']:checked:after {
  transition: background-color 0.2s ease-in;
  display: inline-block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(33deg);
  position: relative;
  top: -1px;
  right: -4px;
  height: 10px;
  width: 6px;
}
.w-checkbox-text {
  display: inline-block;
  padding-left: 4px;
  margin-right: 5px;
  font-size: 14px;
}

.w-collapse {
  border-radius: 4px;
  line-height: 16px;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}
.w-collapse > .w-collapse-item:last-child .w-collapse-header,
.w-collapse > .w-collapse-item:last-child {
  border-radius: 0 0 5px 5px;
}
.w-collapse-title {
  flex: 1 1;
}
.w-collapse-header {
  padding: 8px 10px;
  color: rgba(0, 0, 0, 0.85);
  background-color: #fafafa;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
  display: flex;
}
.w-collapse-header > .w-icon:first-child {
  margin-top: -2px;
  margin-right: 5px;
  transform: scale(0.85) rotate(-90deg);
  transition: transform 0.24s;
}
.w-collapse-header > .w-icon:first-child svg {
  display: block;
}
.w-collapse-header > * {
  vertical-align: middle;
  display: inline-block;
}
.w-collapse-active .w-collapse-header > .w-icon:first-child {
  transform: scale(0.85) rotate(0);
}
.w-collapse-panel {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  padding: 0 10px;
}
.w-collapse-panel:before,
.w-collapse-panel:after {
  content: '';
  height: 10px;
  display: block;
  overflow: hidden;
}
.w-collapse-panel:before {
  border-top: 1px solid #d9d9d9;
  margin: 0 -10px;
  z-index: 1;
  position: relative;
}
.w-collapse-panel:after {
  border-bottom: 1px solid #d9d9d9;
  margin: 0 -10px;
  z-index: 1;
  position: relative;
}
.w-collapse > .w-collapse-item:last-child .w-collapse-panel:after {
  border-bottom: 0 solid #d9d9d9;
}
.w-collapse > .w-collapse-item:not(.w-collapse-active):last-child .w-collapse-panel:before {
  border-top: 0 solid #d9d9d9;
}
.w-collapse-disabled .w-collapse-header {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
}
.w-collapse.w-noborder .w-collapse-header {
  background-color: transparent;
}
.w-collapse.w-noborder {
  border: 0;
}
.w-collapse.w-noborder .w-collapse-item .w-collapse-panel:after,
.w-collapse.w-noborder .w-collapse-item .w-collapse-panel:before {
  border: 0;
}
.w-collapse.w-noborder .w-collapse-item:last-child {
  border: 0;
}

.w-copy-to-clipboard {
  cursor: pointer;
}
.w-copy-to-clipboard-select {
  -webkit-user-select: text;
          -moz-user-select: text;
       user-select: text;
  display: none;
}

.w-dateinputrange-contents {
  display: flex;
  justify-content: space-between;
}
.w-dateinputrange-contents input {
  box-shadow: none;
  padding: 0px;
  height: 20px;
}
.w-dateinputrange-contents .w-input-inner:hover {
  box-shadow: none !important;
}
.w-dateinputrange-contents .w-input-inner:focus {
  box-shadow: none !important;
}
.w-dateinputrange-inner {
  display: flex;
  justify-content: space-between;
  outline: none;
  border: none;
  align-items: center;
  border-radius: 3px;
  box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  box-sizing: border-box;
  background: #fff;
  min-height: 30px;
  margin: 0 !important;
  padding: 3px 10px 3px 10px;
  vertical-align: middle;
  line-height: 30px;
  color: #393e48;
  font-weight: 400;
  font-size: inherit;
  transition: box-shadow 0.3s cubic-bezier(0.4, 1, 0.75, 0.9);
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.w-dateinputrange-inner:focus {
  box-shadow: 0 0 0 1px #393e48, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-dateinputrange-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-dateinputrange-inner:focus.w-dateinputrange-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-dateinputrange-inner:disabled {
  box-shadow: none;
  background: #dddddd;
  opacity: 0.75;
  color: #a5a5a5;
  cursor: not-allowed;
  resize: none;
}

.w-dateinput {
  display: inline-block;
}
.w-dateinput-popover {
  box-shadow: 0 0 0 0;
}
.w-dateinput.disabled::before {
  cursor: not-allowed;
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.w-dateinput-close-btn {
  display: flex;
  margin: 0 3px;
  color: #a5a5a5;
  cursor: pointer;
}
.w-dateinput-close-btn:hover {
  color: #393e48;
}

.w-descriptions table {
  display: table !important;
  margin-bottom: 0 !important;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100% !important;
}
.w-descriptions {
  background: #fff;
}
.w-descriptions-title {
  font-weight: bold;
  text-align: left;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 1.5;
}
.w-descriptions-tbody {
  word-wrap: break-word;
}
.w-descriptions .w-descriptions-row:nth-child(2n) {
  background-color: transparent;
}
.w-descriptions-item-label {
  font-size: 14px;
  font-weight: normal;
}
.w-descriptions-item-label::after {
  position: relative;
  top: -0.5px;
  margin: 0 8px 0 2px;
  content: ' ';
}
.w-descriptions-item-colon::after {
  content: ':';
}
.w-descriptions-item-colon {
  color: rgba(0, 0, 0, 0.95);
}
.w-descriptions-item-content {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}
.w-descriptions-small.w-descriptions-bordered tbody tr th,
.w-descriptions-small.w-descriptions-bordered tbody .w-descriptions-row td {
  padding: 4px 8px;
}
.w-descriptions-large.w-descriptions-bordered tbody tr th,
.w-descriptions-large.w-descriptions-bordered tbody .w-descriptions-row td {
  padding: 14px 16px;
}
.w-descriptions-bordered {
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #dfe2e5;
}
.w-descriptions-bordered tbody tr th {
  padding: 8px 12px;
  background-color: #fafafa;
  font-weight: normal;
}
.w-descriptions-bordered tbody tr th,
.w-descriptions-bordered tbody tr td {
  border-top: 1px solid #dfe2e5;
  border-right: 1px solid #dfe2e5;
  border-left: 0;
  border-bottom: 0;
}
.w-descriptions-bordered tbody:first-child tr:first-child th,
.w-descriptions-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.w-descriptions:not(.w-descriptions-bordered) .w-descriptions-row td {
  padding-bottom: 8px;
}
.w-descriptions-bordered .w-descriptions-row td {
  padding: 8px 12px;
}
.w-descriptions-bordered .w-descriptions-title {
  margin-bottom: 0;
  padding: 7px 12px;
}
.w-descriptions-bordered .w-descriptions-item-label:last-child,
.w-descriptions-bordered .w-descriptions-item-content:last-child {
  border-right: none;
}

.w-divider {
  font-size: 16px;
  line-height: 16px;
  box-sizing: border-box;
  padding: 0;
  list-style: none;
  background: #e8e8e8;
}
.w-divider-vertical {
  margin: 0 8px;
  display: inline-block;
  height: 0.9em;
  width: 1px;
  vertical-align: middle;
  position: relative;
  top: -0.06em;
}
.w-divider-horizontal {
  height: 1px;
  width: 100%;
  margin: 16px 0;
}
.w-divider-horizontal.w-divider-with-text {
  display: flex;
  white-space: nowrap;
  text-align: center;
  background: transparent;
  font-weight: 500;
  color: #353535;
  height: inherit;
  margin: 16px 0;
}
.w-divider-horizontal.w-divider-with-text:before,
.w-divider-horizontal.w-divider-with-text:after {
  content: '';
  display: table-cell;
  position: relative;
  top: 50%;
  width: 50%;
  border-top: 1px solid #e8e8e8;
  transform: translateY(50%);
}
.w-divider-left.w-divider-with-text::before,
.w-divider-right.w-divider-with-text::after {
  width: 5%;
}
.w-divider-left.w-divider-with-text::after,
.w-divider-right.w-divider-with-text::before {
  width: 95%;
}
.w-divider-dashed.w-divider-with-text::before,
.w-divider-dashed.w-divider-with-text::after {
  border-top-style: dashed;
}
.w-divider-inner-text {
  display: inline-block;
  padding: 0 10px;
}
.w-divider-dashed:not(.w-divider-with-text) {
  background: none;
  border-top: 1px dashed #e8e8e8;
}

.w-drawer-wrapper {
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 46px 6px rgba(16, 22, 26, 0.2);
  background-color: #fff;
  position: fixed;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}
.w-drawer-header {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding-left: 13px;
  padding-right: 5px;
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15);
  font-size: 16px;
}
.w-drawer-header > .w-icon {
  margin-right: 10px;
  color: #393e48;
}
.w-drawer-header h4 {
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}
.w-drawer-body {
  flex: 1 1 auto;
  overflow: auto;
  line-height: 18px;
}
.w-drawer-footer {
  box-shadow: 0 -1px 0 rgba(16, 22, 26, 0.15);
  min-height: 40px;
  padding-left: 13px;
  padding-right: 5px;
  display: flex;
  align-items: center;
}
.w-drawer-body-inner {
  padding: 15px;
}
.w-drawer.top .w-drawer-wrapper,
.w-drawer.bottom .w-drawer-wrapper {
  left: 0;
  right: 0;
}
.w-drawer.top .w-drawer-wrapper {
  top: 0;
}
.w-drawer.bottom .w-drawer-wrapper {
  bottom: 0;
}
.w-drawer.right .w-drawer-wrapper,
.w-drawer.left .w-drawer-wrapper {
  bottom: 0;
  top: 0;
}
.w-drawer.right .w-drawer-wrapper {
  right: 0;
}
.w-drawer.left .w-drawer-wrapper {
  left: 0;
}
.w-drawer.w-overlay-enter .w-overlay-content {
  opacity: 1;
}
.w-drawer.w-overlay-enter-active .w-overlay-content {
  transition: all 0.2s cubic-bezier(0.4, 1, 0.75, 0.9);
}
.w-drawer.w-overlay-exit .w-overlay-content {
  opacity: 1;
}
.w-drawer.w-overlay-exit-active .w-overlay-content {
  transition: all 0.2s cubic-bezier(0.4, 1, 0.75, 0.9);
}
.w-drawer.right.w-overlay-enter .w-overlay-content {
  transform: translateX(100%);
}
.w-drawer.right.w-overlay-enter-active .w-overlay-content {
  transform: translateX(0);
}
.w-drawer.right.w-overlay-exit .w-overlay-content {
  transform: translateX(0);
}
.w-drawer.right.w-overlay-exit-active .w-overlay-content {
  transform: translateX(100%);
}
.w-drawer.left.w-overlay-enter .w-overlay-content {
  transform: translateX(-100%);
}
.w-drawer.left.w-overlay-enter-active .w-overlay-content {
  transform: translateX(0);
}
.w-drawer.left.w-overlay-exit .w-overlay-content {
  transform: translateX(0);
}
.w-drawer.left.w-overlay-exit-active .w-overlay-content {
  transform: translateX(-100%);
}
.w-drawer.top.w-overlay-enter .w-overlay-content {
  transform: translateY(-100%);
}
.w-drawer.top.w-overlay-enter-active .w-overlay-content {
  transform: translateY(0);
}
.w-drawer.top.w-overlay-exit .w-overlay-content {
  transform: translateY(0);
}
.w-drawer.top.w-overlay-exit-active .w-overlay-content {
  transform: translateY(-100%);
}
.w-drawer.bottom.w-overlay-enter .w-overlay-content {
  transform: translateY(100%);
}
.w-drawer.bottom.w-overlay-enter-active .w-overlay-content {
  transform: translateY(0);
}
.w-drawer.bottom.w-overlay-exit .w-overlay-content {
  transform: translateY(0);
}
.w-drawer.bottom.w-overlay-exit-active .w-overlay-content {
  transform: translateY(100%);
}

.w-empty {
  color: #c7c7c7;
  text-align: center;
}
.w-empty-description {
  margin-top: 10px;
}
.w-empty-footer {
  margin-top: 16px;
}

.w-fileinput input::-webkit-file-upload-button {
  background: transparent;
  border: 0;
  color: #0000;
  position: absolute;
  left: -300px;
}
.w-fileinput input:hover:after {
  background-clip: padding-box;
  background-color: #ebf1f5;
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
}
.w-fileinput input:after {
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.08);
  background-color: #f5f8fa;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0));
  color: #182026;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  border-radius: 3px;
  content: 'Browse';
  content: attr(data-label);
  padding: 0 10px;
  margin: 3px;
  text-align: center;
  right: 0;
  display: flex;
  align-items: center;
}
.w-fileinput input::before,
.w-fileinput input::after {
  color: #757575;
  position: absolute;
  top: 0;
  bottom: 0;
}
.w-fileinput-card {
  margin-right: -8px;
}
.w-fileinput-card-box {
  margin-right: 8px;
  margin-bottom: 8px;
  text-align: center;
  vertical-align: top;
  background-color: #fafafa;
  border: 1px dashed #d9d9d9;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
  display: inline-flex;
  position: relative;
}
.w-fileinput-card-box-info {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.w-fileinput-card-box-info img {
  width: 100%;
  height: 100%;
}
.w-fileinput-card-actions {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
}
.w-fileinput-card-actions-remove {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.w-fileinput-card-btn {
  align-items: center;
  justify-content: center;
}
.w-fileinput-card-box:hover .w-fileinput-card-actions {
  opacity: 1;
}
.w-fileinput-card-size-large .w-fileinput-card-box {
  width: 110px;
  height: 110px;
}
.w-fileinput-card-size-middle .w-fileinput-card-box {
  width: 80px;
  height: 80px;
}
.w-fileinput-card-size-small .w-fileinput-card-box {
  width: 50px;
  height: 50px;
}
.w-fileinput-card-shape-round .w-fileinput-card-box {
  border-radius: 2px;
}
.w-fileinput-card-shape-circle .w-fileinput-card-box {
  border-radius: 50%;
}
.w-fileinput-list {
  padding-bottom: 8px;
  width: 100%;
}
.w-fileinput-list-actions {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 2px;
}
.w-fileinput-list-actions-search {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.w-fileinput-list-info:hover .w-fileinput-list-actions {
  opacity: 1;
}
.w-fileinput-list-picture {
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  padding: 5px;
  margin-top: 8px;
}
.w-fileinput-list-picture-info {
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}
.w-fileinput-list-picture-info img {
  width: 48px;
  height: 48px;
  display: block;
}
.w-fileinput-list-picture-text {
  flex: 1 1;
}
.w-fileinput-list-picture-icon {
  padding: 5px;
  cursor: pointer;
}
.w-fileinput-list-size-large .w-fileinput-list-picture-info img {
  width: 70px;
  height: 70px;
}
.w-fileinput-list-size-middle .w-fileinput-list-picture-info img {
  width: 50px;
  height: 50px;
}
.w-fileinput-list-size-small .w-fileinput-list-picture-info img {
  width: 30px;
  height: 30px;
}
.w-fileinput-list-shape-round .w-fileinput-list-picture-info {
  border-radius: 2px;
}
.w-fileinput-list-shape-circle .w-fileinput-list-box-info {
  border-radius: 50px;
}
.w-fileinput-list-text {
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  padding: 5px;
  transition: all 0.5s;
}
.w-fileinput-list-text:hover {
  background: #f5f5f5;
}
.w-fileinput-list-text:first-child {
  margin-top: 8px;
}
.w-fileinput-list-text-text {
  flex: 1 1;
}
.w-fileinput-list-text-icon {
  padding: 0 5px;
  cursor: pointer;
}

.w-col {
  min-width: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
.w-col-fixed {
  flex: 0 1 auto;
}
.w-col-align-top {
  align-self: flex-start;
}
.w-col-align-middle {
  align-self: center;
}
.w-col-align-bottom {
  align-self: flex-end;
}
.w-col-align-baseline {
  align-self: baseline;
}
.w-col-grow-1 {
  flex-grow: 1;
}
.w-col-grow-2 {
  flex-grow: 2;
}
.w-col-grow-3 {
  flex-grow: 3;
}
.w-col-grow-4 {
  flex-grow: 4;
}
.w-col-grow-5 {
  flex-grow: 5;
}
.w-col-grow-6 {
  flex-grow: 6;
}
.w-col-grow-7 {
  flex-grow: 7;
}
.w-col-grow-8 {
  flex-grow: 8;
}
.w-col-grow-9 {
  flex-grow: 9;
}
.w-col-grow-10 {
  flex-grow: 10;
}
.w-col-grow-11 {
  flex-grow: 11;
}
.w-col-1 {
  flex-basis: 4.16666667%;
  max-width: 4.16666667%;
}
.w-col-2 {
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}
.w-col-3 {
  flex-basis: 12.5%;
  max-width: 12.5%;
}
.w-col-4 {
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}
.w-col-5 {
  flex-basis: 20.83333333%;
  max-width: 20.83333333%;
}
.w-col-6 {
  flex-basis: 25%;
  max-width: 25%;
}
.w-col-7 {
  flex-basis: 29.16666667%;
  max-width: 29.16666667%;
}
.w-col-8 {
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}
.w-col-9 {
  flex-basis: 37.5%;
  max-width: 37.5%;
}
.w-col-10 {
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}
.w-col-11 {
  flex-basis: 45.83333333%;
  max-width: 45.83333333%;
}
.w-col-12 {
  flex-basis: 50%;
  max-width: 50%;
}
.w-col-13 {
  flex-basis: 54.16666667%;
  max-width: 54.16666667%;
}
.w-col-14 {
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}
.w-col-15 {
  flex-basis: 62.5%;
  max-width: 62.5%;
}
.w-col-16 {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}
.w-col-17 {
  flex-basis: 70.83333333%;
  max-width: 70.83333333%;
}
.w-col-18 {
  flex-basis: 75%;
  max-width: 75%;
}
.w-col-19 {
  flex-basis: 79.16666667%;
  max-width: 79.16666667%;
}
.w-col-20 {
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}
.w-col-21 {
  flex-basis: 87.5%;
  max-width: 87.5%;
}
.w-col-22 {
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}
.w-col-23 {
  flex-basis: 95.83333333%;
  max-width: 95.83333333%;
}
.w-col-24 {
  flex-basis: 100%;
  max-width: 100%;
}

.w-row {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}
.w-row.w-row-justify-flex-start {
  justify-content: flex-start;
}
.w-row.w-row-justify-flex-end {
  justify-content: flex-end;
}
.w-row.w-row-justify-center {
  justify-content: center;
}
.w-row.w-row-justify-space-between {
  justify-content: space-between;
}
.w-row.w-row-justify-space-around {
  justify-content: space-around;
}
.w-row.w-row-justify-space-evenly {
  justify-content: space-evenly;
}
.w-row-align-top {
  align-items: flex-start;
}
.w-row-align-middle {
  align-items: center;
}
.w-row-align-bottom {
  align-items: flex-end;
}
.w-row-align-baseline {
  align-items: baseline;
}

.w-form-item {
  margin-bottom: 10px;
}
.w-form-item-error .w-form-help,
.w-form-item-error .w-form-label {
  color: #dc3545;
}
.w-form-item-error .w-input-inner,
.w-form-item-error .w-select,
.w-form-item-error .w-select-default,
.w-form-item-error .w-select:hover,
.w-form-item-error .w-select-default:hover,
.w-form-item-error .w-input-inner:hover,
.w-form-item-error .w-input-inner:focus.w-input-inner:hover,
.w-form-item-error .w-textarea,
.w-form-item-error .w-textarea:hover,
.w-form-item-error .w-search-tree-inner,
.w-form-item-error .w-textarea:focus.w-textarea:hover {
  box-shadow: 0 0 0 1px #dc3545, 0 0 0 3px rgba(220, 53, 69, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-form-item-error .w-search-tree-inner .w-input .w-input-inner {
  box-shadow: none !important;
}
.w-form-label {
  line-height: 32px;
  min-height: 32px;
  font-weight: 600;
  font-size: 14px;
  padding-right: 5px;
}
.w-form-label label {
  display: inline-block;
}
.w-form-row {
  align-items: center;
  display: flex;
}
.w-form-help {
  color: #c2c2c2;
  font-size: 12px;
  padding-top: 3px;
}

.w-form fieldset {
  margin: 0;
  padding: 0;
  border-width: 0;
}

.w-list {
  font-size: 14px;
  line-height: 1.5;
  color: #52575c;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  background-color: #fff;
  transition: all 0.3s;
}
.w-list:not(.w-list-no-hover):hover,
.w-list-active {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
}
.w-list-bordered {
  border: 1px solid #e9e9e9;
  border-radius: 4px;
}
.w-list-bordered .w-list-item:last-child {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.w-list-item {
  display: flex;
  align-items: center;
}
.w-list-item.w-disabled {
  cursor: not-allowed;
  text-decoration: none;
  pointer-events: none;
  color: #a3a6a9;
}
.w-list-item.w-active {
  background: #f8f8f9;
  color: #007bff;
}
.w-list-item-main {
  display: block;
  flex: 1 1;
}
.w-list-item-extra {
  margin-left: 40px;
}
a.w-list-item {
  display: block;
  color: #52575c;
}
a.w-list-item:hover:not(.w-disabled) {
  background: #f8f8f9;
}
.w-list-striped .w-list-item:nth-of-type(2n) {
  background: #f8f8f9;
}
.w-list-bordered .w-list-item,
.w-list-bordered .w-list-header {
  border-bottom: 1px solid #e8e8e8;
}
.w-list-item,
.w-list-footer,
.w-list-header {
  padding: 12px 18px;
}
.w-list-size-small .w-list-item,
.w-list-size-small .w-list-footer,
.w-list-size-small .w-list-header {
  padding: 8px 16px;
}
.w-list-size-large .w-list-item,
.w-list-size-large .w-list-footer,
.w-list-size-large .w-list-header {
  padding: 16px 24px;
}

.w-layout,
.w-layout * {
  box-sizing: border-box;
}
.w-layout {
  display: flex;
  flex: auto;
  flex-direction: column;
  min-height: 0;
  background: #f0f2f5;
  margin: 0;
  padding: 0;
}
.w-layout.w-layout-has-sider > .w-layout,
.w-layout.w-layout-has-sider > .w-layout-content {
  width: 0;
}
.w-layout-header,
.w-layout-footer {
  flex: 0 0 auto;
}
.w-layout-header {
  height: 53px;
  padding: 0 23px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 53px;
  background: #202225;
}
.w-layout-footer {
  padding: 16px 23px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  background: #f0f2f5;
}
.w-layout-content {
  flex: auto;
}
.w-layout.w-layout-has-sider {
  flex-direction: row;
}
.w-layout-sider {
  position: relative;
  min-width: 0;
  background: #343a40;
  transition: all 0.2s;
}

.w-loader {
  position: relative;
  display: inline-block;
}
.w-loader-tips-nested svg {
  height: 100%;
  width: 100%;
  animation: loaderRotate 2s linear infinite;
  transform-origin: center center;
  fill: currentcolor;
  vertical-align: middle;
}
.w-loader-tips-nested svg circle {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: loaderDash 1.5s ease-in-out infinite, loaderColor 6s ease-in-out infinite;
  stroke-linecap: round;
}
.w-loader-large .w-loader-tips-nested svg {
  width: 30px;
  height: 30px;
}
.w-loader-large .w-loader-tips-nested svg circle {
  stroke-width: 3px;
}
.w-loader-default .w-loader-tips-nested svg {
  width: 20px;
  height: 20px;
}
.w-loader-small .w-loader-tips-nested svg {
  width: 14px;
  height: 14px;
}
.w-loader-blur {
  opacity: 0.5;
  filter: blur(0.5px);
  overflow: hidden;
}
.w-loader-warp {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.w-loader-tips-nested {
  vertical-align: middle;
  display: inline-block;
}
.w-loader-tips {
  color: #2d8cf0;
  text-align: center;
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 4;
  font-weight: 400;
}
.w-loader-tips:before {
  content: ' ';
  display: inline-block;
  height: 100%;
  width: 0.1px;
  vertical-align: middle;
}
.w-loader-tips:not(:last-child) {
  position: absolute;
}
.w-loader-text {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
.w-loader-vertical {
  display: block;
  margin-left: 0;
  margin-top: 5px;
}
.w-loader-fullscreen {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 99999;
}
@keyframes loaderRotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loaderDash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  to {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes loaderColor {
  0%,
  to {
    stroke: currentColor;
  }
  80%,
  90% {
    stroke: currentColor;
  }
}

.w-message {
  padding: 10px 15px;
  position: relative;
  font-size: 14px;
}
.w-message + .w-message {
  margin-top: 10px;
}
.w-message-title,
.w-message-description {
  display: block;
}
.w-message-rounded {
  border-radius: 5px;
}
.w-message-description {
  color: rgba(0, 0, 0, 0.65);
}
.w-message-title {
  color: rgba(0, 0, 0, 0.85);
}
.w-message-title-description > .w-icon {
  font-size: 24px;
}
.w-message-title-description .w-message-title {
  font-size: 16px;
}
.w-message-title-description .w-message-title,
.w-message-title-description .w-message-description {
  padding-left: 16px;
}
.w-message-icon {
  padding-left: 34px;
}
.w-message-success {
  background: #afecbd;
  color: #28a745;
}
.w-message > button {
  position: absolute;
  right: 10px;
  top: 10px;
}
.w-message > button.w-btn {
  padding: 2px;
  min-width: 16px;
  min-height: 16px;
  color: rgba(0, 0, 0, 0.38);
}
.w-message > button.w-btn:hover {
  background-color: rgba(255, 255, 255, 0.21) !important;
}
.w-message > button.w-btn:active {
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.w-message-warning {
  background: #fff4d3;
  color: #ffc107;
}
.w-message-info {
  background: #bde4ff;
  color: #008ef0;
}
.w-message-error {
  background: #fae3e5;
  color: #dc3545;
}
.w-message > .w-icon {
  top: 14px;
  left: 14px;
  position: absolute;
}
.w-message-enter {
  transform: scaleY(0.5);
  opacity: 0;
}
.w-message-enter-active {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 300ms ease, opacity 300ms ease;
}
.w-message-exit {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 300ms ease, opacity 300ms ease;
}
.w-message-exit-active {
  transform: scaleY(0.5);
  opacity: 0;
}

.w-monthpicker {
  display: inline-block;
}
.w-monthpicker-popover {
  padding: 5px;
  min-width: 192px;
  max-width: 192px;
  font-size: 14px;
  line-height: 21px;
}
.w-monthpicker.disabled .w-monthpicker-close-btn {
  display: none !important;
}
.w-monthpicker .w-monthpicker-close-btn {
  min-height: 0;
  min-height: initial;
  color: #a5a5a5;
  cursor: pointer;
}
.w-monthpicker .w-monthpicker-close-btn:hover {
  color: #393e48;
}
.w-monthpicker .w-monthpicker-close-btn:active,
.w-monthpicker .w-monthpicker-close-btn:hover {
  background-color: transparent !important;
}

.w-notify {
  position: relative !important;
  z-index: 9999;
}
.w-notify-warpper .w-notify .w-modal-inner .w-modal-header > .w-icon {
  font-size: 28px !important;
}
.w-notify-warpper .w-notify .w-modal-inner .w-modal-header > .w-btn {
  min-width: 18px;
  min-height: 18px;
  padding: 5px 5px;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-icon:not(.w-modal-shown-title) .w-modal-header > button {
  top: 12px;
  right: 10px;
  position: absolute;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-icon:not(.w-modal-shown-title) .w-modal-body {
  padding-right: 36px;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-title .w-modal-header {
  padding-top: 20px;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-title .w-modal-header > button {
  top: 5px;
  right: 5px;
  position: absolute;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-title .w-modal-header > h4 {
  padding-left: 40px;
  padding-right: 20px;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-title .w-modal-body {
  padding-left: 60px;
  opacity: 0.75;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-title:not(.w-modal-shown-icon) .w-modal-header > h4 {
  padding-left: 5px;
}
.w-notify-warpper .w-notify .w-modal-inner.w-modal-shown-title:not(.w-modal-shown-icon) .w-modal-body {
  padding-left: 25px;
}
.w-notify-warpper .w-notify .w-modal-inner:not(.w-modal-shown-title):not(.w-modal-shown-icon) .w-modal-body {
  padding: 16px;
}
.w-notify-warpper .w-notify .w-modal-inner:not(.w-modal-shown-title).w-modal-inner {
  padding-bottom: 0;
}
.w-notify-warpper .w-notify .w-modal-inner:not(.w-modal-shown-title).w-modal-inner .w-modal-header {
  padding-top: 16px;
}
.w-notify-warpper .w-notify .w-modal-inner:not(.w-modal-shown-title).w-modal-inner .w-modal-header > .w-icon {
  font-size: 20px !important;
}
.w-notify-warpper .w-notify .w-modal-inner:not(.w-modal-shown-title) .w-modal-body {
  padding: 16px 12px;
}
.w-notify-warpper .w-notify .w-overlay-content {
  margin: 5px;
}
.w-notify-warpper {
  position: fixed;
  padding: 5px;
  z-index: 999;
}
.w-notify-warpper.topLeft {
  top: 0;
  left: 0;
}
.w-notify-warpper.topRight {
  top: 0;
  right: 0;
}
.w-notify-warpper.bottomLeft {
  bottom: 0;
  left: 0;
}
.w-notify-warpper.bottomRight {
  bottom: 0;
  right: 0;
}

.w-select {
  display: inline-flex;
  font-size: 14px;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  color: #182026;
  padding: 6px 25px 6px 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  line-height: 18px;
  vertical-align: middle;
  box-sizing: border-box;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  border-radius: 3px;
  background-color: #f5f8fa;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij4gIDxwYXRoIGZpbGw9IiMzOTNFNDgiIGQ9Ik0wLjIyMiw1LjYxMyBMNS40NTEsMC4yMjMgQzUuNzU2MjEyMDksLTAuMDc0MzYzMjMzMyA2LjI0Mjc4NzkxLC0wLjA3NDM2MzIzMzMgNi41NDgsMC4yMjMgTDExLjc3OCw1LjYxMyBDMTIuMTgsNi4wMjcgMTIuMDI1LDYuNjY3IDExLjQwNyw2LjY2NyBMMC41OTIsNi42NjcgQy0wLjAyNCw2LjY2NyAtMC4xOCw2LjAyNyAwLjIyMiw1LjYxMyBaIE0wLjU5Miw5LjMzMyBMMTEuNDA3LDkuMzMzIEMxMi4wMjUsOS4zMzMgMTIuMTgsOS45NzMgMTEuNzc3LDEwLjM4NyBMNi41NDcsMTUuNzc3IEM2LjI0MTkxMjU4LDE2LjA3MzcxNDMgNS43NTYwODc0MiwxNi4wNzM3MTQzIDUuNDUxLDE1Ljc3NyBMMC4yMjIsMTAuMzg3IEMtMC4xOCw5Ljk3MyAtMC4wMjQsOS4zMzMgMC41OTIsOS4zMzMgWiIvPjwvc3ZnPg==), linear-gradient(180deg, hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0));
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.62em auto, 100%;
}
.w-select:focus {
  outline: none !important;
}
.w-select:hover {
  box-shadow: inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  background-clip: padding-box;
  background-color: #ebf1f5;
}
.w-select:disabled {
  box-shadow: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEyIDE2Ij4gIDxwYXRoIGZpbGw9IiMzOTNFNDgiIGQ9Ik0wLjIyMiw1LjYxMyBMNS40NTEsMC4yMjMgQzUuNzU2MjEyMDksLTAuMDc0MzYzMjMzMyA2LjI0Mjc4NzkxLC0wLjA3NDM2MzIzMzMgNi41NDgsMC4yMjMgTDExLjc3OCw1LjYxMyBDMTIuMTgsNi4wMjcgMTIuMDI1LDYuNjY3IDExLjQwNyw2LjY2NyBMMC41OTIsNi42NjcgQy0wLjAyNCw2LjY2NyAtMC4xOCw2LjAyNyAwLjIyMiw1LjYxMyBaIE0wLjU5Miw5LjMzMyBMMTEuNDA3LDkuMzMzIEMxMi4wMjUsOS4zMzMgMTIuMTgsOS45NzMgMTEuNzc3LDEwLjM4NyBMNi41NDcsMTUuNzc3IEM2LjI0MTkxMjU4LDE2LjA3MzcxNDMgNS43NTYwODc0MiwxNi4wNzM3MTQzIDUuNDUxLDE1Ljc3NyBMMC4yMjIsMTAuMzg3IEMtMC4xOCw5Ljk3MyAtMC4wMjQsOS4zMzMgMC41OTIsOS4zMzMgWiIvPjwvc3ZnPg==);
  background-size: 0.52em auto, 100%;
  background-color: #dddddd;
  opacity: 0.75;
  color: #a5a5a5;
  cursor: not-allowed;
  resize: none;
}
.w-select-large {
  padding: 9px 25px 9px 12px;
  font-size: 16px;
}
.w-select-small {
  padding: 3px 25px 3px 7px;
  font-size: 12px;
}

.w-pagination {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  font-size: 12px;
}
.w-pagination-left {
  text-align: left;
}
.w-pagination-center {
  text-align: center;
}
.w-pagination-right {
  text-align: right;
}
.w-pagination > li {
  height: 28px;
  line-height: 28px;
  vertical-align: middle;
  text-align: center;
  position: relative;
  cursor: pointer;
  display: inline-flex !important;
  transition: background-color 0.2s ease-in, box-shadow 0.2s ease-in;
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
}
.w-pagination > li > a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
  transition: none;
  margin: 0 10px;
  display: block;
}
.w-pagination > li > a.arrow {
  padding: 0 3px;
}
.w-pagination > li > a.arrow::after,
.w-pagination > li > a.arrow::before {
  content: '';
  display: block;
  height: 8px;
  width: 2px;
  border-radius: 2px;
  background-color: #565656;
  transition: all 0.3s;
}
.w-pagination > li > a.arrow::after {
  margin-top: -4px;
}
.w-pagination > li > a.arrow.prev::after,
.w-pagination > li > a.arrow.next::before {
  transform: rotate(-45deg);
}
.w-pagination > li > a.arrow.prev::before,
.w-pagination > li > a.arrow.next::after {
  transform: rotate(45deg);
}
.w-pagination > li.disabled {
  cursor: not-allowed;
}
.w-pagination > li.disabled > a.arrow::after,
.w-pagination > li.disabled > a.arrow::before {
  background: #d4d4d4;
}
.w-pagination.small > li {
  height: 21px;
  line-height: 21px;
  border-radius: 4px;
}
.w-pagination.small > li > a {
  margin: 0 3px;
  min-width: 15px;
}
.w-pagination.small > li > a.arrow::after,
.w-pagination.small > li > a.arrow::before {
  margin-left: 6px;
}
.w-pagination.small > li.active {
  background-color: #ececec;
}
.w-pagination.small > li:not(.active):hover a {
  color: #2ea3f4;
}
.w-pagination.default > li {
  background: #fff;
  border: 1px solid #d4d4d4;
  border-left: 0;
}
.w-pagination.default > li:not(.disabled):not(.active):hover {
  background-color: #f6f6f6;
}
.w-pagination.default > li:not(.disabled):active {
  box-shadow: inset 0 8px 42px -12px rgba(0, 0, 0, 0.2);
}
.w-pagination.default > li:first-child {
  border-left: 1px solid #d4d4d4;
  border-radius: 3px 0 0 3px;
}
.w-pagination.default > li:last-child {
  border-radius: 0 3px 3px 0;
}
.w-pagination.default > li.active {
  background-color: #ececec;
}
.w-pagination.default > li.active:active {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}
.w-pagination.default.divider li + li {
  margin-left: 8px !important;
  border: 1px solid #d4d4d4;
}
.w-pagination.default.divider li {
  border-radius: 4px;
}
.w-pagination-options {
  margin-left: 8px !important;
}
.w-pagination-options .w-select {
  border: none !important;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: none !important;
  height: 100%;
}

.w-pin-code {
  display: flex;
}
.w-pin-code-inner + .w-pin-code-inner {
  margin-left: 8px;
}
.w-pin-code-inner {
  width: 30px;
}
.w-pin-code-inner > input {
  text-align: center;
  padding: 0 !important;
  font-size: 14px;
  font-weight: bold;
}
.w-pin-code-large .w-pin-code-inner {
  width: 36px;
}
.w-pin-code-large .w-pin-code-inner input {
  font-size: 16px;
}
.w-pin-code-small .w-pin-code-inner {
  width: 24px;
}
.w-pin-code-small .w-pin-code-inner input {
  font-size: 12px;
}

.w-progress {
  position: relative;
  line-height: 1;
  display: inline-block;
}
.w-progress-text {
  color: #48576a;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  line-height: 1;
}

.w-progress-circle .w-progress-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  transform: translate(0, -50%);
  font-size: 16px;
}
.w-progress-trail {
  stroke: #e5e9f2;
}
.w-progress-stroke {
  stroke: #20a0ff;
}
.w-progress-status-success .w-progress-stroke {
  stroke: #28a745;
}
.w-progress-status-exception .w-progress-stroke {
  stroke: #ff4949;
}

.w-progress-line {
  width: 100%;
  font-size: 12px;
}
.w-progress-bar,
.w-progress-text {
  box-sizing: border-box;
}
.w-progress-bar {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.w-progress-status-active .w-progress-bg {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 12px 12px;
  animation: progress-bar-stripes 1s linear infinite;
}
.w-progress-status-active .w-progress-bg:before {
  content: ' ';
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 10px;
  animation: w-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
.w-progress-status-exception .w-progress-bg {
  background-color: #dc3545;
}
.w-progress-status-exception .w-progress-text {
  color: #dc3545;
}
.w-progress-status-success .w-progress-bg {
  background-color: #28a745;
}
.w-progress-status-success .w-progress-text {
  color: #28a745;
}
.w-progress-show-text .w-progress-bar {
  margin-right: -50px;
  padding-right: 50px;
}
.w-progress-inner {
  height: 100%;
  width: 100%;
  border-radius: 100px;
  background-color: #e5e9f2;
  overflow: hidden;
}
.w-progress-bg {
  height: 100%;
  border-radius: 100px;
  background-color: #108ee9;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
  position: relative;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 24px 0;
  }
}
@keyframes w-progress-active {
  0% {
    opacity: 0.1;
    width: 0;
  }
  20% {
    opacity: 0.5;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}

.w-rate {
  position: relative;
  line-height: 12px;
  font-size: 20px;
  font-family: auto;
  display: inline-block;
  vertical-align: middle;
}
.w-rate > span + span {
  margin-left: 3px;
}
.w-rate-bg {
  color: #e9e9e9;
}
.w-rate > span,
.w-rate-bg {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.w-rate-hight {
  z-index: 3;
  line-height: 12px;
  position: absolute;
  transition: color 0.3s, width 0.3s;
  color: #e9e9e9;
  display: none;
}
.w-rate .hover-on {
  cursor: pointer;
}
.w-rate .star-on,
.w-rate .hover-on,
.w-rate .half-on {
  display: inline-block;
  color: #f5a623;
}
.w-rate .half-on:not(.hover-on) {
  overflow: hidden;
  width: 50%;
}

.w-tag {
  border-radius: 2px;
  display: inline-block;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  font-size: 12px;
  padding: 1px 5px;
  position: relative;
  white-space: nowrap;
  vertical-align: middle;
}
.w-tag + .w-tag {
  margin-left: 5px;
}
.w-tag.disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.w-tag-light .w-tag-close:hover {
  background-color: currentcolor;
}
.w-tag-light .w-tag-close:hover path {
  fill: #fff;
}
.w-tag-light .w-tag-close:active {
  background-color: rgba(0, 0, 0, 0.15);
}
.w-tag-close {
  vertical-align: bottom;
  margin: 0px -3px 0 2px;
  border-radius: 2px;
  position: relative;
  top: -1px;
  fill: currentcolor;
  transition: all 0.3s;
  cursor: pointer;
}
.w-tag-close:hover {
  background-color: rgba(0, 0, 0, 0.22);
}
.w-tag-close:active {
  background-color: rgba(0, 0, 0, 0.32);
}

.w-search-select-input-contents input {
  box-shadow: none;
  padding: 0px;
  height: 28px;
}
.w-search-select-input-contents.w-input-small {
  min-width: 0;
}
.w-search-select-input-contents .w-input-inner:hover {
  box-shadow: none !important;
}
.w-search-select-input-contents .w-input-inner:focus {
  box-shadow: none !important;
}
.w-search-select-input-contents .w-input-inner.disabled {
  box-shadow: none;
  background: #dddddd;
  opacity: 0.75;
  color: #a5a5a5;
  cursor: not-allowed;
  resize: none;
}
.w-search-select-inner {
  display: flex;
  justify-content: space-between;
  outline: none;
  border: none;
  border-radius: 3px;
  box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  box-sizing: border-box;
  background: #fff;
  margin: 0 !important;
  padding: 1px 1px;
  vertical-align: middle;
  line-height: 30px;
  align-items: center;
  color: #393e48;
  font-weight: 400;
  font-size: inherit;
  transition: box-shadow 0.3s cubic-bezier(0.4, 1, 0.75, 0.9);
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.w-search-select-inner:focus {
  box-shadow: 0 0 0 1px #393e48, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-search-select-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-search-select-inner:focus.w-search-select-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-search-select-inner:disabled {
  box-shadow: none;
  background: #dddddd;
  opacity: 0.75;
  color: #a5a5a5;
  cursor: not-allowed;
  resize: none;
}
.w-search-select-inner-inner-small {
  height: 20px;
}
.w-search-select-inner-inner-large {
  height: 30px;
}
.w-search-select-inner .w-input-small .w-input-inner {
  height: 16px;
  font-size: 10px;
  padding: 0;
}
.w-search-select-inner .w-input-large .w-input-inner {
  height: 28px;
}
.w-search-select-tag-content {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  width: 100%;
  padding: 0 9px;
}
.w-search-select-tag-content-disabled {
  background: #dddddd;
}
.w-search-select-search-false {
  cursor: pointer;
}
.w-search-select-multiple-colse {
  right: 3px;
  font-size: 15px;
}
.w-search-select-singe-colse {
  font-size: 15px;
}

.w-split {
  height: 100%;
  display: flex;
  flex-direction: row;
  --w-split-bar-shadow: #d5d5d5;
  --w-split-bar-shadow-disable: #d5d5d5;
}
.w-split-bar {
  z-index: 10;
  position: relative;
  justify-content: center;
  display: flex;
  background: #f8f8f9;
  background: var(--w-split-bar-background, #f8f8f9);
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}
.w-split-bar::before,
.w-split-bar::after {
  content: '';
  display: block;
}
.w-split-bar.disable {
  pointer-events: none;
  cursor: not-allowed !important;
}
.w-split-bar:hover:not(.disable) {
  transition: background-color 0.3s;
  background: #ecf7ff;
  background: var(--w-split-bar-hover-background, #ecf7ff);
}
.w-split.dragging .w-split-pane {
  position: relative;
}
.w-split.dragging .w-split-pane::before {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.w-split > .w-split-pane {
  transform: none;
}
.w-split:not(.dragging) > .w-split-pane {
  transition: all 0.3s;
}
.w-split-horizontal > .w-split-bar {
  cursor: col-resize;
  width: 5px;
  flex-direction: column;
  box-shadow: inset 1px 0 0 0 var(--w-split-bar-shadow), 1px 0 0 0 var(--w-split-bar-shadow);
}
.w-split-horizontal > .w-split-bar::before,
.w-split-horizontal > .w-split-bar::after {
  height: 3px;
  width: 100%;
  box-shadow: inset 0 1px 0 0 var(--w-split-bar-shadow), 0 1px 0 0 var(--w-split-bar-shadow);
}
.w-split-horizontal > .w-split-bar::before {
  margin-top: -1px;
}
.w-split-horizontal > .w-split-bar::after {
  margin-top: 3px;
}
.w-split-horizontal > .w-split-bar.disable {
  box-shadow: inset 1px 0 0 0 var(--w-split-bar-shadow-disable), 1px 0 0 0 var(--w-split-bar-shadow-disable) !important;
}
.w-split-vertical {
  flex-direction: column;
}
.w-split-vertical > .w-split-bar {
  cursor: row-resize;
  width: 100%;
  height: 5px;
  align-items: center;
  flex-direction: row;
  box-shadow: inset 0 1px 0 0 var(--w-split-bar-shadow), 0 1px 0 0 var(--w-split-bar-shadow);
}
.w-split-vertical > .w-split-bar.disable {
  box-shadow: inset 0 1px 0 0 var(--w-split-bar-shadow-disable), 0 1px 0 0 var(--w-split-bar-shadow-disable) !important;
}
.w-split-vertical > .w-split-bar::before,
.w-split-vertical > .w-split-bar::after {
  height: 100%;
  width: 3px;
  box-shadow: inset 1px 0 0 0 var(--w-split-bar-shadow), 1px 0 0 0 var(--w-split-bar-shadow);
}
.w-split-vertical > .w-split-bar::before {
  margin-left: -1px;
}
.w-split-vertical > .w-split-bar::after {
  margin-left: 3px;
}
.w-split-large-bar div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.w-split-vertical > .w-split-line-bar:hover::before,
.w-split-horizontal > .w-split-line-bar:hover::before {
  background: #008ef0;
  background: var(--w-split-line-bar-hover-border-color, #008ef0);
}
.w-split-vertical > .w-split-line-bar {
  height: 1px;
}
.w-split-vertical > .w-split-line-bar div {
  cursor: row-resize;
  width: 100%;
  height: 8px;
  margin-top: -2px;
  margin-bottom: -2px;
}
.w-split-vertical > .w-split-line-bar div:hover,
.w-split-vertical > .w-split-line-bar div:active,
.w-split-vertical > .w-split-line-bar div:focus {
  margin-top: -6px;
  margin-bottom: -6px;
  height: 6px;
}
.w-split-vertical > .w-split-line-bar div:hover::after,
.w-split-vertical > .w-split-line-bar div:active::after,
.w-split-vertical > .w-split-line-bar div:focus::after {
  background: #008ef0;
  background: var(--w-split-line-bar-active-background, #008ef0);
}
.w-split-vertical > .w-split-line-bar div::after {
  height: 1px;
  width: 100%;
}
.w-split-horizontal > .w-split-line-bar {
  width: 1px;
}
.w-split-horizontal > .w-split-line-bar div {
  cursor: col-resize;
  height: 100%;
  width: 8px;
  margin-left: -2px;
  margin-right: -2px;
}
.w-split-horizontal > .w-split-line-bar div:hover,
.w-split-horizontal > .w-split-line-bar div:active,
.w-split-horizontal > .w-split-line-bar div:focus {
  margin-left: -6px;
  margin-right: -6px;
  width: 6px;
}
.w-split-horizontal > .w-split-line-bar div:hover::after,
.w-split-horizontal > .w-split-line-bar div:active::after,
.w-split-horizontal > .w-split-line-bar div:focus::after {
  background: #008ef0;
  background: var(--w-split-line-bar-active-background, #008ef0);
}
.w-split-horizontal > .w-split-line-bar div::after {
  width: 1px;
  height: 100%;
}
.w-split-vertical > .w-split-line-bar,
.w-split-horizontal > .w-split-line-bar {
  flex-direction: inherit;
}
.w-split-vertical > .w-split-line-bar::before,
.w-split-horizontal > .w-split-line-bar::before {
  display: none;
}
.w-split-vertical > .w-split-line-bar div,
.w-split-horizontal > .w-split-line-bar div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-split-vertical > .w-split-line-bar div::after,
.w-split-horizontal > .w-split-line-bar div::after {
  content: '';
  display: block;
  background-color: #d5d5d5;
  background-color: var(--w-split-line-bar-background, #d5d5d5);
}
.w-split-line-bar {
  box-shadow: inset 0 0 0 0 !important;
  background: transparent;
}
.w-split-line-bar::before {
  box-shadow: inset 0 0 0 0 !important;
}
.w-split-line-bar::after {
  display: none;
}

.w-steps {
  font-size: 0;
  width: 100%;
  line-height: 1.5;
}
.w-steps .w-steps-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.w-steps .w-steps-item:last-child .w-steps-item-tail {
  display: none;
  text-align: center;
}
.w-steps .w-steps-item-tail {
  position: absolute;
  left: 0;
  width: 100%;
  top: 13px;
  padding: 0 10px;
  height: 1px;
}
.w-steps .w-steps-item-tail i {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #e9e9e9;
}
.w-steps .w-steps-item-tail i:after {
  position: absolute;
  content: ' ';
  top: 0;
  width: 0;
  height: 100%;
  transition: all 0.6s;
}
.w-steps .w-steps-item-head,
.w-steps .w-steps-item-main {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.w-steps .w-steps-item-head {
  padding-left: 10px;
  background: #fff;
}
.w-steps .w-steps-item-head:not(:first-child) {
  margin-left: -10px;
}
.w-steps .w-steps-item-title {
  padding-right: 10px;
  line-height: 26px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  color: #999;
  display: inline-block;
}
.w-steps .w-steps-item-description {
  font-size: 12px;
  color: #999;
  max-width: 130px;
}
.w-steps .w-steps-item-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 26px;
  font-size: 14px;
  margin-right: 8px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.w-steps .w-steps-item-process .w-steps-item-inner,
.w-steps .w-steps-item-finish .w-steps-item-inner {
  border-color: #2d8cf0;
  background-color: #2d8cf0;
  color: #fff;
}
.w-steps .w-steps-item-process .w-steps-item-inner.is-icon .w-steps-icon,
.w-steps .w-steps-item-finish .w-steps-item-inner.is-icon .w-steps-icon {
  color: #108ee9;
}
.w-steps .w-steps-item-process [class^='w-icon-'],
.w-steps .w-steps-item-finish [class^='w-icon-'],
.w-steps .w-steps-item-process [class*=' w-icon-'],
.w-steps .w-steps-item-finish [class*=' w-icon-'] {
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.w-steps .w-steps-item-finish .w-steps-item-tail i:after {
  background-color: #2d8cf0;
  width: 100%;
}
.w-steps .w-steps-item-process .w-steps-item-title,
.w-steps .w-steps-item-process .w-steps-item-description {
  color: rgba(0, 0, 0, 0.65);
}
.w-steps .w-steps-item-error .w-steps-item-inner {
  color: #f04134;
  border-color: #f04134;
  background-color: #fff;
}
.w-steps .w-steps-item-error .w-steps-item-title,
.w-steps .w-steps-item-error .w-steps-item-description,
.w-steps .w-steps-item-error .w-steps-icon,
.w-steps .w-steps-item-error i[class^='w-icon-'] {
  color: #f04134;
}
.w-steps .w-steps-next-error .w-steps-item-tail i:after {
  background-color: #f04134;
  width: 100%;
  transition: all 0.6s;
}
.w-steps-custom .w-steps-item-inner.is-icon {
  background: none;
  border: 0;
  width: 26px;
  height: 26px;
  font-size: 26px;
}
.w-steps-dot .w-steps-item-main {
  display: block;
  text-align: center;
}
.w-steps-dot .w-steps-item-inner {
  margin: 0 auto;
  width: 7px;
  height: 7px;
  line-height: 5px;
  border: 0;
}
.w-steps-dot .w-steps-item-title {
  padding-top: 5px;
}
.w-steps-dot .w-steps-item-description {
  max-width: none;
  max-width: initial;
}
.w-steps-dot .w-steps-item-error .w-steps-item-tail i:after {
  background-color: #2d8cf0;
}
.w-steps-dot .w-steps-item-error .w-steps-item-inner {
  background: #f04134;
}
.w-steps-dot .w-steps-item-error .w-steps-item-tail {
  padding-right: 50%;
  background: #e9e9e9;
}
.w-steps-dot .w-steps-item-error .w-steps-item-tail i:after {
  background-color: #f04134;
  width: 100%;
}
.w-steps-dot .w-steps-item-finish.w-steps-next-error .w-steps-item-tail i:after {
  background-color: #2d8cf0;
}
.w-steps-dot .w-steps-item-wait .w-steps-item-inner {
  border-color: rgba(0, 0, 0, 0.25);
  background-color: rgba(0, 0, 0, 0.25);
}
.w-steps-dot .w-steps-item-wait .w-steps-item-inner .w-steps-dot {
  background: rgba(0, 0, 0, 0.25);
}
.w-steps-dot .w-steps-item-process .w-steps-item-tail {
  padding-right: 50%;
  background: #e9e9e9;
}
.w-steps-dot .w-steps-item-process .w-steps-item-tail i:after {
  background-color: #2d8cf0;
  width: 100%;
}
.w-steps-dot .w-steps-item-tail {
  padding: 0;
  width: 100%;
  position: static;
  position: initial;
  height: 2px;
}
.w-steps-dot .w-steps-item:first-child .w-steps-item-tail {
  padding-left: 50%;
}
.w-steps-dot .w-steps-item:last-child .w-steps-item-tail {
  display: block;
  padding-right: 50%;
}
.w-steps-dot .w-steps-item-head:not(:first-child) {
  margin-left: 0;
  padding-left: 0;
  text-align: center;
  display: block;
}
.w-steps-dot .w-steps-item-head {
  background: transparent;
  margin-top: -4px;
}
.w-steps-dot .w-steps-item-head .is-icon {
  margin-left: -10px !important;
  background-color: transparent;
}
.w-steps-dot.w-steps-vertical .w-steps-item:last-child .w-steps-item-tail {
  display: none;
}
.w-steps-dot.w-steps-vertical .w-steps-item .w-steps-item-tail {
  position: absolute;
  left: 3px;
  padding: 0 0 21px;
}
.w-steps-dot.w-steps-vertical .w-steps-item-inner {
  margin: 0;
}
.w-steps-dot.w-steps-vertical .w-steps-item-main {
  text-align: left;
  padding-left: 20px;
  padding-bottom: 24px;
  margin-top: -21px;
}
.w-steps-dot.w-steps-vertical .is-icon-main {
  margin-top: -35px;
}
.w-steps-dot.w-steps-vertical .w-steps-next-error .w-steps-item-tail i:after {
  background-color: #f04134;
}
.w-steps-dot.w-steps-vertical .w-steps-item-error .w-steps-item-tail {
  background-color: transparent;
}
.w-steps-dot.w-steps-vertical .w-steps-item-error .w-steps-item-tail i:after {
  background-color: transparent;
}
.w-steps-vertical > .w-steps-item {
  display: block;
}
.w-steps-vertical > .w-steps-item > .w-steps-item-tail {
  height: 100%;
  width: 1px;
  padding: 18px 0;
  left: 13px;
}
.w-steps-vertical .w-steps-item-main {
  padding-bottom: 12px;
  overflow: hidden;
}
.w-steps-vertical .w-steps-item .w-steps-item-main .w-steps-item-description {
  max-width: inherit;
}

.w-slider {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  height: 4px;
  margin: 13px 7px;
  background-color: #e4e8f1;
  border-radius: 3px;
  position: relative;
  font-size: 12px;
  cursor: pointer;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  vertical-align: middle;
}
.w-slider-bar {
  height: 4px;
  border-radius: 3px;
  background-color: #008ef0;
  position: absolute;
}
.w-slider.disabled,
.w-slider.disabled .w-slider-mark > div {
  cursor: not-allowed;
}
.w-slider.disabled .w-slider-bar {
  background-color: #bdc2cc;
}
.w-slider.disabled .w-slider-handle {
  background-color: #e6e6e6;
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0px 0px rgba(16, 22, 26, 0.2);
}
.w-slider-handle {
  left: 0%;
  width: 14px;
  height: 14px;
  position: absolute;
  z-index: 1;
  margin-top: -5px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  background-color: #f5f8fa;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0));
  border-radius: 50%;
  transition: all 0.3;
}
.w-slider-dots > div {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: 0 0 0 1.6px rgba(16, 22, 26, 0.16);
  top: 0px;
  transform: translateX(-50%);
}
.w-slider:not(.disabled) .w-slider-handle:active {
  background-color: #d8e1e8;
  transition: all 0.3;
  box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2), 0px 0px 0px 2px rgba(0, 0, 0, 0.1);
}
.w-slider:not(.disabled) .w-slider-handle:hover .w-slider-tooltip,
.w-slider:not(.disabled) .w-slider-handle:focus .w-slider-tooltip,
.w-slider:not(.disabled) .w-slider-handle:active .w-slider-tooltip {
  display: inline-block;
}
.w-slider-tooltip {
  display: none;
  font-size: 12px;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0px 4px;
  margin-top: -3px;
  border-radius: 3px;
  transform: translate(-50%, -100%);
  margin-left: 6px;
}
.w-slider-tooltip.open {
  display: inline-block;
}
.w-slider-with-marks {
  margin-bottom: 24px;
}
.w-slider-mark.no-marks {
  display: none;
}
.w-slider-mark > div {
  margin-bottom: -50%;
  margin-left: 3px;
  padding: 0 3px;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, 50%);
  color: rgba(0, 0, 0, 0.43);
}
.w-slider-vertical {
  height: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  width: 4px;
  margin: 7px 13px;
}
.w-slider-vertical .w-slider-dots > div {
  left: 2px;
}
.w-slider-vertical .w-slider-bar {
  width: 4px;
  height: auto;
  height: initial;
}
.w-slider-vertical .w-slider-handle {
  margin-left: 2px;
}
.w-slider-vertical .w-slider-mark > div {
  transform: translate(0, -50%);
  padding: 0;
  margin-left: 12px;
  margin-top: 2px;
}

.w-switch {
  vertical-align: middle;
  font-size: 12px;
  cursor: pointer;
}
.w-switch input[type='checkbox'] {
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  min-width: 35px;
  height: 20px;
  margin: 0 !important;
  background-clip: border-box;
  background-color: #dfdfdf;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
  outline: 0;
  font-size: 12px;
  border-radius: 16px;
  transition: all 0.3s;
  box-shadow: inset 0 1px 2px rgba(16, 22, 26, 0.2);
}
.w-switch input[type='checkbox']:before,
.w-switch input[type='checkbox']:after {
  display: inline-block;
  vertical-align: middle;
}
.w-switch input[type='checkbox']:before {
  content: attr(data-checked);
  transition: all 0.3s;
  padding: 0 21px 0 6px;
  color: #fff;
  line-height: 20px;
}
.w-switch input[type='checkbox']:checked {
  background-color: #008ef0;
}
.w-switch input[type='checkbox']:checked:after {
  right: 2px;
  margin-right: 0;
}
.w-switch input[type='checkbox']:checked:before {
  content: attr(data-unchecked);
}
.w-switch input[type='checkbox']:not(:checked):before {
  padding: 0 6px 0 21px;
  color: #393e48;
}
.w-switch input[type='checkbox']:after {
  content: ' ';
  position: absolute;
  margin-right: -18px;
  right: 100%;
  margin-top: 2px;
  margin-left: 1px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  transition: all 0.2s;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 35, 11, 0.2);
}
.w-switch input[type='checkbox']:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.w-switch input[type='checkbox']:focus {
  box-shadow: 0 0 0 2px rgba(0, 142, 240, 0.25), inset 0 1px 2px rgba(16, 22, 26, 0.2);
}
.w-switch.disabled {
  cursor: not-allowed;
}
.w-switch-large input[type='checkbox'] {
  min-width: 38px;
  height: 24px;
}
.w-switch-large input[type='checkbox']::after {
  margin-right: -22px;
  height: 20px;
  width: 20px;
}
.w-switch-large input[type='checkbox']:before {
  padding: 0 25px 0 8px;
  margin-top: 0;
  line-height: 24px;
  font-size: 16px;
}
.w-switch-large input[type='checkbox']:not(:checked):before {
  padding: 0 8px 0 25px;
}
.w-switch-small {
  font-size: 12px;
}
.w-switch-small input[type='checkbox'] {
  min-width: 15px;
  height: 16px;
}
.w-switch-small input[type='checkbox']::after {
  margin-right: -14px;
  height: 12px;
  width: 12px;
}
.w-switch-small input[type='checkbox']:before {
  padding: 0 16px 0 6px;
  line-height: 16px;
}
.w-switch-small input[type='checkbox']:not(:checked):before {
  padding: 0 6px 0 16px;
}
.w-switch-text,
.w-switch input[type='checkbox'] {
  vertical-align: middle;
}
.w-switch-text {
  display: inline-block;
  margin-left: 5px;
}

.w-table {
  width: 100%;
  overflow: auto;
}
.w-table > table {
  display: table !important;
  margin: 0 !important;
  width: 100% !important;
  border-spacing: 0;
  border-collapse: collapse;
}
.w-table > table tr > th,
.w-table > table tr > td {
  border: 0;
  padding: 5px 8px;
  border-bottom: 1px solid #e8e8e8;
}
.w-table > table tr {
  background-color: transparent;
}
.w-table > table > caption {
  text-align: left;
  padding: 10px 8px;
}
.w-table > table > tbody > tr {
  transition: all 0.3s;
}
.w-table > table > tbody > tr > td {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.w-table > table > tbody > tr:hover > td,
.w-table > table > tbody > tr:hover:nth-child(2n) > td {
  background-color: #efefef;
}
.w-table > table > tbody > tr:nth-child(2n) > td {
  background-color: #f9f9f9;
}
.w-table > table > thead > tr > th {
  font-weight: normal;
  padding: 8px;
  background-color: #f6f9fb;
  position: relative;
  z-index: 1;
}
.w-table > table > thead > tr,
.w-table > table > thead tr:nth-child(2n) {
  background-color: #f6f9fb;
  border: transparent;
}
.w-table-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
  display: block;
}
.w-table-tr-children-center {
  text-align: center;
}
.w-table-tr-children-left {
  text-align: left;
}
.w-table-tr-children-right {
  text-align: right;
}
.w-table-fixed-true {
  position: sticky !important;
  z-index: 2 !important;
}
.w-table-fixed-right {
  position: sticky !important;
  z-index: 2 !important;
}
.w-table-fixed-true::after {
  box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  width: 30px;
  transform: translateX(100%);
  transition: box-shadow 0.3s;
  content: '';
  pointer-events: none;
}
.w-table-fixed-true::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  border-left: 1px solid #dfe2e5;
}
.w-table-fixed-right::after {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  width: 30px;
  transform: translateX(-100%);
  transition: box-shadow 0.3s;
  content: '';
  pointer-events: none;
  border-right: 1px solid #f0f0f0;
}
.w-table-fixed-right-first::after {
  box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.15);
}
.w-table-fixed-right::before {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  border-right: 1px solid #dfe2e5;
}
.w-table-bordered > table tr > th,
.w-table-bordered > table tr > td,
.w-table-bordered > table > caption {
  border: 1px solid #dfe2e5;
}
.w-table-bordered > table > caption {
  border-bottom: 0;
}
.w-table-bordered .w-table-footer {
  border: 1px solid #dfe2e5;
  border-top: 0;
}
.w-table-footer {
  background: #fafafa;
  padding: 10px 8px;
}

.w-tabs-bar {
  position: relative;
  overflow-x: auto;
  height: calc(100% + 17px);
}
.w-tabs-nav {
  position: relative;
}
.w-tabs-nav-hidden {
  display: flex;
  overflow-y: auto;
  padding: 5px 10px 5px 5px;
  max-height: 200px;
  flex-direction: column;
}
.w-tabs-nav-hidden :hover {
  background: #d9d9d9;
}
.w-tabs-item {
  padding: 7px 10px;
  display: inline-block;
  height: 100%;
  font-size: 14px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.w-tabs-item.active {
  color: #008ef0;
}
.w-tabs-item.disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
  color: rgba(0, 0, 0, 0.25);
}
.w-tabs-flow-content {
  margin-left: 5px;
  padding: 0px 10px 0px 10px;
  box-shadow: 1px 0px 0px #d9d9d9 inset;
  cursor: pointer;
}
.w-tabs-card > div > div > .w-tabs-bar > .w-tabs-nav::after,
.w-tabs-line > div > div > .w-tabs-bar > .w-tabs-nav::after {
  content: '';
  position: relative;
  display: block;
  border-bottom: 1px solid #d9d9d9;
}
.w-tabs-line > div > div > .w-tabs-bar > .w-tabs-nav > .w-tabs-slide {
  background-color: #108ee9;
  box-sizing: border-box;
  bottom: 0;
  position: absolute;
  height: 1px;
  left: 0;
  width: 20px;
  z-index: 1;
  transition: all 0.3s;
}
.w-tabs-card > div > div > .w-tabs-bar > .w-tabs-nav::after {
  content: '';
  position: relative;
  display: block;
  border-bottom: 1px solid #d9d9d9;
}
.w-tabs-card > div > div > .w-tabs-bar > .w-tabs-nav > .w-tabs-item {
  margin: 0;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  padding: 7px 16px;
  border-radius: 4px 4px 0 0;
  background: #f9f9f9;
  margin-right: 5px;
  bottom: -1px;
}
.w-tabs-card > div > div > .w-tabs-bar > .w-tabs-nav > .w-tabs-item.active {
  background: #fff;
  z-index: 1;
}

.w-textarea {
  position: relative;
  font-size: 14px;
  outline: none;
  border: none;
  border-radius: 3px;
  box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  background: #fff;
  padding: 5px 10px;
  vertical-align: middle;
  height: auto;
  min-height: 30px;
  color: #393e48;
  font-weight: 400;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  transition: box-shadow 0.1s cubic-bezier(0.4, 1, 0.75, 0.9);
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.w-textarea:not(:first-child) {
  padding-left: 30px;
}
.w-textarea:focus {
  box-shadow: 0 0 0 1px #393e48, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-textarea:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-textarea:focus.w-textarea:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-textarea:disabled {
  box-shadow: none;
  background: #dddddd;
  opacity: 0.75;
  color: #a5a5a5;
  cursor: not-allowed;
  resize: none;
}

.w-tooltip {
  position: relative;
  display: inline-block;
}
.w-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.w-tooltip-inner {
  font-size: 12px;
  max-width: 250px;
  padding: 5px 10px;
  display: block;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  word-break: break-all;
}
.w-tooltip.right .w-tooltip-arrow,
.w-tooltip.rightTop .w-tooltip-arrow,
.w-tooltip.rightBottom .w-tooltip-arrow {
  border-right-color: rgba(0, 0, 0, 0.75);
  border-width: 5px 5px 5px 0;
  left: 0;
  margin-top: -5px;
  top: 50%;
}
.w-tooltip.left .w-tooltip-arrow,
.w-tooltip.leftTop .w-tooltip-arrow,
.w-tooltip.leftBottom .w-tooltip-arrow {
  border-left-color: rgba(0, 0, 0, 0.75);
  border-width: 5px 0 5px 5px;
  margin-top: -5px;
  right: 0;
  top: 50%;
}
.w-tooltip.leftTop .w-tooltip-arrow,
.w-tooltip.rightTop .w-tooltip-arrow {
  top: 15px;
}
.w-tooltip.leftBottom .w-tooltip-arrow,
.w-tooltip.rightBottom .w-tooltip-arrow {
  bottom: 10px;
  top: auto;
}
.w-tooltip.top .w-tooltip-arrow,
.w-tooltip.topLeft .w-tooltip-arrow,
.w-tooltip.topRight .w-tooltip-arrow {
  border-top-color: rgba(0, 0, 0, 0.75);
  border-width: 5px 5px 0;
  bottom: 0;
  left: 50%;
  margin-left: -5px;
}
.w-tooltip.bottom .w-tooltip-arrow,
.w-tooltip.bottomLeft .w-tooltip-arrow,
.w-tooltip.bottomRight .w-tooltip-arrow {
  border-bottom-color: rgba(0, 0, 0, 0.75);
  border-width: 0 5px 5px;
  left: 50%;
  margin-left: -5px;
  top: 0;
}
.w-tooltip.bottomLeft .w-tooltip-arrow,
.w-tooltip.topLeft .w-tooltip-arrow {
  left: 15px;
}
.w-tooltip.bottomRight .w-tooltip-arrow,
.w-tooltip.topRight .w-tooltip-arrow {
  right: 10px;
  left: auto;
}
.w-tooltip.bottom,
.w-tooltip.bottomLeft,
.w-tooltip.bottomRight {
  padding-top: 5px;
}
.w-tooltip.top,
.w-tooltip.topLeft,
.w-tooltip.topRight {
  padding-bottom: 5px;
}
.w-tooltip.right,
.w-tooltip.rightTop,
.w-tooltip.rightBottom {
  padding-left: 5px;
}
.w-tooltip.left,
.w-tooltip.leftTop,
.w-tooltip.leftBottom {
  padding-right: 5px;
}
.w-tooltip.no-arrow {
  padding: 0 !important;
}

.w-tree {
  font-size: 14px;
}
.w-tree ul {
  padding: 0 !important;
  transition: 0.3s all;
  overflow: hidden;
  margin: 0;
}
.w-tree ul ul {
  padding-left: 18px !important;
  margin-bottom: 0;
}
.w-tree li {
  list-style: none !important;
}
.w-tree li + li {
  margin-top: 2px !important;
}
.w-tree li:first-child {
  padding-top: 3px;
}
.w-tree-close {
  height: 0;
}
.w-tree-label .no-child:not(.w-tree-switcher-noop) svg {
  display: none;
}
.w-tree-label {
  line-height: normal;
  line-height: initial;
}
.w-tree-label > * {
  vertical-align: middle;
}
.w-tree-switcher {
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  line-height: 14px;
  display: inline-block;
  text-align: center;
}
.w-tree-switcher:hover {
  color: #2ea3f4;
}
.w-tree-switcher .w-icon {
  transition: 0.3s all;
  transform: scale(0.79) rotate(0deg);
}
.w-tree-switcher .w-icon.open:not(.no-animation) {
  transform: scale(0.79) rotate(90deg) !important;
}
.w-tree-title {
  display: inline-block;
  padding: 2px 5px;
  cursor: pointer;
}
.w-tree-title > * {
  vertical-align: middle;
}
.w-tree-disabled-mouse {
  cursor: not-allowed;
}
.w-tree-disabled-ele {
  color: #00000040;
}
.w-tree-title.selected {
  background-color: #d5e8fc;
}
.w-tree-line li {
  position: relative;
}
.w-tree-line li li:before,
.w-tree-line li li::after {
  content: ' ';
  border-left: 1px solid #d9d9d9;
  left: -12px;
  position: absolute;
}
.w-tree-line li li::after {
  height: 100%;
  top: 5px;
}
.w-tree-line li li:last-child::after {
  height: 16px;
  top: -18px;
}
.w-tree-line li li:before {
  content: ' ';
  width: 10px;
  height: 16px;
  border-bottom: 1px solid #d9d9d9;
  top: -2px;
}
.w-tree-line li li:last-child::before {
  border-radius: 0 0 0 3px;
}

.w-treechecked-checked {
  margin-right: 5px;
}

.w-search-tree-input-contents {
  flex: 1 1;
  top: 1px;
}
.w-search-tree-input-contents input {
  box-shadow: none;
  padding: 0px;
  height: 20px;
  min-width: 50px;
}
.w-search-tree-input-contents .w-input-inner:hover {
  box-shadow: none !important;
}
.w-search-tree-input-contents .w-input-inner:focus {
  box-shadow: none !important;
}
.w-search-tree-inner {
  display: flex;
  justify-content: space-between;
  outline: none;
  border: none;
  align-items: center;
  border-radius: 3px;
  box-shadow: 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  box-sizing: border-box;
  background: #fff;
  min-height: 30px;
  margin: 0 !important;
  padding: 3px 10px 3px 10px;
  vertical-align: middle;
  line-height: 30px;
  color: #393e48;
  font-weight: 400;
  font-size: inherit;
  transition: box-shadow 0.3s cubic-bezier(0.4, 1, 0.75, 0.9);
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.w-search-tree-inner:focus {
  box-shadow: 0 0 0 1px #393e48, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-search-tree-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-search-tree-inner:focus.w-search-tree-inner:hover {
  box-shadow: 0 0 0 1px #6e6e6e, 0 0 0 3px rgba(57, 62, 72, 0.17), inset 0 1px 1px rgba(16, 22, 26, 0.2);
}
.w-search-tree-inner:disabled {
  box-shadow: none;
  background: #dddddd;
  opacity: 0.75;
  color: #a5a5a5;
  cursor: not-allowed;
  resize: none;
}
.w-search-tree-inner-close-tag-contents {
  width: 14px;
  display: flex;
  align-content: center;
}
.w-search-tree-inner-inner-small {
  height: 20px;
}
.w-search-tree-inner-inner-large {
  height: 30px;
}
.w-search-tree-inner .w-input-small .w-input-inner {
  height: 16px;
  font-size: 10px;
  padding: 0px;
}
.w-search-tree-inner .w-input-large .w-input-inner {
  height: 28px;
}

.w-transfer {
  display: flex;
  justify-content: space-between;
}
.w-transfer-card {
  width: 50%;
}
.w-transfer-cheked-content {
  height: 200px;
  overflow-y: auto;
}
.w-transfer-arrow-content {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: space-between;
}
.w-transfer-arrow {
  transition: all 0.3s;
  border-radius: 3px;
}
.w-transfer-arrow:hover {
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

