﻿@charset "UTF-8";
html {
  --ant-primary-color: #1890ff;
  --ant-primary-color-hover: #40a9ff;
  --ant-primary-color-active: #096dd9;
  --ant-primary-color-outline: rgba(24, 144, 255, .2);
  --ant-primary-1: #e6f7ff;
  --ant-primary-2: #bae7ff;
  --ant-primary-3: #91d5ff;
  --ant-primary-4: #69c0ff;
  --ant-primary-5: #40a9ff;
  --ant-primary-6: #1890ff;
  --ant-primary-7: #096dd9;
  --ant-primary-color-deprecated-pure: ;
  --ant-primary-color-deprecated-l-35: #cbe6ff;
  --ant-primary-color-deprecated-l-20: #7ec1ff;
  --ant-primary-color-deprecated-t-20: #46a6ff;
  --ant-primary-color-deprecated-t-50: #8cc8ff;
  --ant-primary-color-deprecated-f-12: rgba(24, 144, 255, .12);
  --ant-primary-color-active-deprecated-f-30: rgba(230, 247, 255, .3);
  --ant-primary-color-active-deprecated-d-02: #dcf4ff;
  --ant-success-color: #52c41a;
  --ant-success-color-hover: #73d13d;
  --ant-success-color-active: #389e0d;
  --ant-success-color-outline: rgba(82, 196, 26, .2);
  --ant-success-color-deprecated-bg: #f6ffed;
  --ant-success-color-deprecated-border: #b7eb8f;
  --ant-error-color: #ff4d4f;
  --ant-error-color-hover: #ff7875;
  --ant-error-color-active: #d9363e;
  --ant-error-color-outline: rgba(255, 77, 79, .2);
  --ant-error-color-deprecated-bg: #fff2f0;
  --ant-error-color-deprecated-border: #ffccc7;
  --ant-warning-color: #faad14;
  --ant-warning-color-hover: #ffc53d;
  --ant-warning-color-active: #d48806;
  --ant-warning-color-outline: rgba(250, 173, 20, .2);
  --ant-warning-color-deprecated-bg: #fffbe6;
  --ant-warning-color-deprecated-border: #ffe58f;
  --ant-info-color: #1890ff;
  --ant-info-color-deprecated-bg: #e6f7ff;
  --ant-info-color-deprecated-border: #91d5ff ;
}

.ant-alert {
  margin-bottom: 1rem;
}
.ant-alert-primary {
  color: #0c4b85;
  background-color: #d1e9ff;
  border-color: #bee0ff;
}
.ant-alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.ant-alert-success {
  color: #1c670a;
  background-color: #d7f4d0;
  border-color: #c6efbd;
}
.ant-alert-info {
  color: #325f7f;
  background-color: #dff0fd;
  border-color: #d2ebfc;
}
.ant-alert-warning {
  color: #806416;
  background-color: #fdf3d4;
  border-color: #fdeec3;
}
.ant-alert-danger {
  color: #852829;
  background-color: #ffdbdc;
  border-color: #ffcdce;
}
.ant-alert-light {
  color: #828282;
  background-color: #fefefe;
  border-color: #fefefe;
}
.ant-alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.ant-alert-link {
  color: #1a3c72;
  background-color: #d6e3f8;
  border-color: #c6d8f5;
}
.ant-alert .ant-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

.ant-tag-primary {
  color: var(--ant-primary-color);
  background: var(--ant-primary-1);
  border-color: var(--ant-primary-color-outline);
}

.ant-tag-light {
  color: #595959;
  background: #f5f5f5;
  border-color: #d9d9d9;
}

.ant-tag-dark {
  color: #f5f5f5;
  background: #595959;
  border-color: #1f1f1f;
}

.ant-tag-info {
  color: var(--ant-info-color);
  background: var(--ant-info-color-deprecated-bg);
  border-color: var(--ant-info-color-deprecated-border);
}

.ant-tag-link {
  color: var(--ant-primary-color);
}

.ant-tag-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

:root {
  --b-sidebar-small-width: 80px;
}

.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::before, .ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0.65)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  border-radius: 2px;
  -webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: "";
}
.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  -webkit-transform: rotate(45deg) translateY(-2px);
  transform: rotate(45deg) translateY(-2px);
}
.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  -webkit-transform: rotate(-45deg) translateY(2px);
  transform: rotate(-45deg) translateY(2px);
}
.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  -webkit-transform: rotate(-45deg) translateX(2px);
  transform: rotate(-45deg) translateX(2px);
}
.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  -webkit-transform: rotate(45deg) translateX(-2px);
  transform: rotate(45deg) translateX(-2px);
}
.ant-menu-submenu-horizontal > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after, .ant-menu-submenu-horizontal > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before {
  background: -webkit-gradient(linear, left top, right top, from(#1890ff), to(#1890ff));
  background: linear-gradient(to right, #1890ff, #1890ff);
}

.ant-menu-submenu-open.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  -webkit-transform: rotate(-45deg) translateX(-2px);
  transform: rotate(-45deg) translateX(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-horizontal > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  -webkit-transform: rotate(45deg) translateX(2px);
  transform: rotate(45deg) translateX(2px);
}

.ant-menu-end {
  justify-content: flex-end;
  margin-left: auto;
  float: right;
}
.ant-menu-end > .ant-menu-item,
.ant-menu-end > .ant-menu-submenu {
  position: relative;
  top: 1px;
  display: inline-block;
  vertical-align: bottom;
  border-bottom: 2px solid transparent;
}
.ant-menu-end > .ant-menu-item > a:only-child {
  display: block;
}
.ant-menu-end > .ant-menu-item > a::before {
  bottom: -2px;
}
.ant-menu-end::after {
  display: block;
  clear: both;
  height: 0;
  content: " ";
}

.ant-menu-submenu-placement-bottomRight {
  right: 0;
  left: auto;
}

.b-layout-header .ant-menu {
  line-height: inherit;
}

/* *** Vertical menu *** */
.ant-menu.ant-menu-root.ant-menu-inline, .ant-menu.ant-menu-root.ant-menu-vertical {
  display: flex;
  flex-flow: column;
  height: 100%;
  overflow-y: auto;
}
.ant-menu.ant-menu-root.ant-menu-inline .ant-menu-label, .ant-menu.ant-menu-root.ant-menu-vertical .ant-menu-label {
  background: transparent;
  color: #adb5bd;
  padding: 0.375rem 1.25rem;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 5px;
}
.ant-menu.ant-menu-root.ant-menu-inline .ant-bar-brand, .ant-menu.ant-menu-root.ant-menu-vertical .ant-bar-brand {
  margin: 0;
  height: var(--b-sidebar-brand-height, 64px);
  min-height: var(--b-sidebar-brand-height, 64px) !important;
  padding: 0 !important;
}
.ant-menu.ant-menu-root.ant-menu-inline .ant-bar-brand > .ant-menu-item, .ant-menu.ant-menu-root.ant-menu-vertical .ant-bar-brand > .ant-menu-item {
  height: 100%;
  display: flex;
  margin: auto;
}
.ant-menu.ant-menu-root.ant-menu-inline .ant-bar-brand > .ant-menu-item > a, .ant-menu.ant-menu-root.ant-menu-vertical .ant-bar-brand > .ant-menu-item > a {
  margin: auto;
}
.ant-menu.ant-menu-root.ant-menu-inline .ant-menu-toggler-inline, .ant-menu.ant-menu-root.ant-menu-vertical .ant-menu-toggler-inline {
  height: var(--b-vertical-bar-brand-height, 64px);
  padding: 12px;
  display: inline-flex;
  cursor: pointer;
  position: absolute;
  right: 0;
  z-index: 2;
}
.ant-menu.ant-menu-root.ant-menu-inline .ant-menu-toggler-inline > *, .ant-menu.ant-menu-root.ant-menu-vertical .ant-menu-toggler-inline > * {
  margin: auto;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline {
  min-width: var(--b-sidebar-width, 230px);
  max-width: var(--b-sidebar-width, 230px);
  width: var(--b-sidebar-width, 230px);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline > .ant-menu-item {
  min-height: 40px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding-left: 24px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline > .ant-menu-item > a.active {
  color: var(--b-bar-item-dark-active-color, #fff);
  background: var(--b-bar-item-dark-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline > .ant-menu-item > a:hover {
  color: var(--b-bar-item-dark-hover-color, #fff);
  background: var(--b-bar-item-dark-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu-submenu-title {
  padding-left: 24px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu.ant-menu-sub > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding-left: 48px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu.ant-menu-sub > .ant-menu-item > a.active {
  color: var(--b-bar-item-dark-active-color, #fff);
  background: var(--b-bar-item-dark-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu.ant-menu-sub > .ant-menu-item > a:hover {
  color: var(--b-bar-item-dark-hover-color, #fff);
  background: var(--b-bar-item-dark-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical.ant-menu-inline-collapsed:not(.ant-menu-vertical-collapsed) {
  min-width: var(--b-sidebar-small-width, 80px);
  max-width: var(--b-sidebar-small-width, 80px);
  width: var(--b-sidebar-small-width, 80px);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical > .ant-menu-item {
  min-height: 40px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding: 0px 32px;
  margin: 0px -32px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical > .ant-menu-item > a.active {
  color: var(--b-bar-item-dark-active-color, #fff);
  background: var(--b-bar-item-dark-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical > .ant-menu-item > a:hover {
  color: var(--b-bar-item-dark-hover-color, #fff);
  background: var(--b-bar-item-dark-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-item > a > span {
  font-size: 0px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu-title > span {
  font-size: 0px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup {
  margin: -45px 5px 0px 5px;
  width: var(--b-vertical-bar-popout-menu-width, auto);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup > .ant-menu.ant-menu-sub > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding-left: 16px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup > .ant-menu.ant-menu-sub > .ant-menu-item > a.active {
  color: var(--b-bar-item-dark-active-color, #fff);
  background: var(--b-bar-item-dark-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup > .ant-menu.ant-menu-sub > .ant-menu-item > a:hover {
  color: var(--b-bar-item-dark-hover-color, #fff);
  background: var(--b-bar-item-dark-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-rightTop {
  left: var(--b-sidebar-small-width, 80px);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-rightTop::before {
  top: 0;
  left: -7px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-leftTop {
  right: var(--b-sidebar-small-width, 80px);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-leftTop::before {
  top: 0;
  right: -7px;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu-title > span {
  font-size: inherit;
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-rightTop {
  left: var(--b-vertical-bar-popout-menu-width, 180px);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-leftTop {
  right: var(--b-vertical-bar-popout-menu-width, 180px);
}
.ant-menu.ant-menu-root.ant-menu-dark.ant-menu-vertical .ant-menu-toggler-inline {
  position: relative;
  width: 100%;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline {
  min-width: var(--b-sidebar-width, 230px);
  max-width: var(--b-sidebar-width, 230px);
  width: var(--b-sidebar-width, 230px);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline > .ant-menu-item {
  min-height: 40px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding-left: 24px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline > .ant-menu-item > a.active {
  color: var(--b-bar-item-light-active-color, #fff);
  background: var(--b-bar-item-light-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline > .ant-menu-item > a:hover {
  color: var(--b-bar-item-light-hover-color, #fff);
  background: var(--b-bar-item-light-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu-submenu-title {
  padding-left: 24px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu.ant-menu-sub > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding-left: 48px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu.ant-menu-sub > .ant-menu-item > a.active {
  color: var(--b-bar-item-light-active-color, #fff);
  background: var(--b-bar-item-light-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-inline .ant-menu-submenu.ant-menu-submenu-inline > .ant-menu.ant-menu-sub > .ant-menu-item > a:hover {
  color: var(--b-bar-item-light-hover-color, #fff);
  background: var(--b-bar-item-light-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical.ant-menu-inline-collapsed:not(.ant-menu-vertical-collapsed) {
  min-width: var(--b-sidebar-small-width, 80px);
  max-width: var(--b-sidebar-small-width, 80px);
  width: var(--b-sidebar-small-width, 80px);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical > .ant-menu-item {
  min-height: 40px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding: 0px 32px;
  margin: 0px -32px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical > .ant-menu-item > a.active {
  color: var(--b-bar-item-light-active-color, #fff);
  background: var(--b-bar-item-light-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical > .ant-menu-item > a:hover {
  color: var(--b-bar-item-light-hover-color, #fff);
  background: var(--b-bar-item-light-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-item > a > span {
  font-size: 0px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu-title > span {
  font-size: 0px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup {
  margin: -45px 5px 0px 5px;
  width: var(--b-vertical-bar-popout-menu-width, auto);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup > .ant-menu.ant-menu-sub > .ant-menu-item > a {
  margin: 0px -16px;
  color: inherit;
  padding-right: 16px;
  padding-left: 16px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup > .ant-menu.ant-menu-sub > .ant-menu-item > a.active {
  color: var(--b-bar-item-light-active-color, #fff);
  background: var(--b-bar-item-light-active-background, #0288D1);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup > .ant-menu.ant-menu-sub > .ant-menu-item > a:hover {
  color: var(--b-bar-item-light-hover-color, #fff);
  background: var(--b-bar-item-light-hover-background, rgba(255, 255, 255, 0.3));
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-rightTop {
  left: var(--b-sidebar-small-width, 80px);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-rightTop::before {
  top: 0;
  left: -7px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-leftTop {
  right: var(--b-sidebar-small-width, 80px);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-leftTop::before {
  top: 0;
  right: -7px;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu-title > span {
  font-size: inherit;
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-rightTop {
  left: var(--b-vertical-bar-popout-menu-width, 180px);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup .ant-menu-submenu.ant-menu-submenu-vertical > .ant-menu-submenu.ant-menu-submenu-popup.ant-menu-submenu-placement-leftTop {
  right: var(--b-vertical-bar-popout-menu-width, 180px);
}
.ant-menu.ant-menu-root.ant-menu-light.ant-menu-vertical .ant-menu-toggler-inline {
  position: relative;
  width: 100%;
}
.ant-menu.ant-menu-root.ant-menu-inline-collapsed:not(.ant-menu-vertical), .ant-menu.ant-menu-root.ant-menu-vertical-collapsed {
  width: 0px;
  min-width: 0px;
  transition: width 200ms ease-in-out, min-width 200ms ease-in-out, visibility 100ms;
  visibility: hidden;
}

.ant-menu-submenu.ant-menu-submenu-open .ant-menu-submenu {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

.ant-menu-submenu.ant-menu-submenu-horizontal .ant-menu-submenu-open {
  position: relative;
}
.ant-menu-submenu.ant-menu-submenu-horizontal .ant-menu-submenu-open .ant-menu-submenu.ant-menu-submenu-popup {
  display: block;
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

.ant-menu-inline.ant-menu-root .ant-menu-item {
  display: block;
}
.ant-menu-inline.ant-menu-root .ant-menu-item > a {
  display: block;
}

.ant-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.ant-btn-secondary > a:only-child {
  color: currentColor;
}
.ant-btn-secondary:hover, .ant-btn-secondary:focus {
  color: #fff;
  background-color: #939ba2;
  border-color: #939ba2;
}
.ant-btn-secondary:hover > a:only-child,
.ant-btn-secondary:hover > a:only-child, .ant-btn-secondary:focus > a:only-child,
.ant-btn-secondary:focus > a:only-child {
  color: currentColor;
}
.ant-btn-secondary:active, .ant-btn-secondary.active {
  color: #fff;
  background-color: #494f54;
  border-color: #494f54;
}
.ant-btn-secondary:active > a:only-child,
.ant-btn-secondary:active > a:only-child, .ant-btn-secondary.active > a:only-child,
.ant-btn-secondary.active > a:only-child {
  color: currentColor;
}
.ant-btn-secondary-disabled, .ant-btn-secondary.disabled, .ant-btn-secondary[disabled], .ant-btn-secondary-disabled:hover, .ant-btn-secondary.disabled:hover, .ant-btn-secondary[disabled]:hover, .ant-btn-secondary-disabled:focus, .ant-btn-secondary.disabled:focus, .ant-btn-secondary[disabled]:focus, .ant-btn-secondary-disabled:active, .ant-btn-secondary.disabled:active, .ant-btn-secondary[disabled]:active, .ant-btn-secondary-disabled.active, .ant-btn-secondary.disabled.active, .ant-btn-secondary[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-secondary-disabled > a:only-child, .ant-btn-secondary.disabled > a:only-child, .ant-btn-secondary[disabled] > a:only-child, .ant-btn-secondary-disabled:hover > a:only-child, .ant-btn-secondary.disabled:hover > a:only-child, .ant-btn-secondary[disabled]:hover > a:only-child, .ant-btn-secondary-disabled:focus > a:only-child, .ant-btn-secondary.disabled:focus > a:only-child, .ant-btn-secondary[disabled]:focus > a:only-child, .ant-btn-secondary-disabled:active > a:only-child, .ant-btn-secondary.disabled:active > a:only-child, .ant-btn-secondary[disabled]:active > a:only-child, .ant-btn-secondary-disabled.active > a:only-child, .ant-btn-secondary.disabled.active > a:only-child, .ant-btn-secondary[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-secondary-disabled > a:only-child::after, .ant-btn-secondary.disabled > a:only-child::after, .ant-btn-secondary[disabled] > a:only-child::after, .ant-btn-secondary-disabled:hover > a:only-child::after, .ant-btn-secondary.disabled:hover > a:only-child::after, .ant-btn-secondary[disabled]:hover > a:only-child::after, .ant-btn-secondary-disabled:focus > a:only-child::after, .ant-btn-secondary.disabled:focus > a:only-child::after, .ant-btn-secondary[disabled]:focus > a:only-child::after, .ant-btn-secondary-disabled:active > a:only-child::after, .ant-btn-secondary.disabled:active > a:only-child::after, .ant-btn-secondary[disabled]:active > a:only-child::after, .ant-btn-secondary-disabled.active > a:only-child::after, .ant-btn-secondary.disabled.active > a:only-child::after, .ant-btn-secondary[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-success {
  color: #fff;
  background-color: #35c613;
  border-color: #35c613;
}
.ant-btn-success > a:only-child {
  color: currentColor;
}
.ant-btn-success:hover, .ant-btn-success:focus {
  color: #fff;
  background-color: #5bec39;
  border-color: #5bec39;
}
.ant-btn-success:hover > a:only-child,
.ant-btn-success:hover > a:only-child, .ant-btn-success:focus > a:only-child,
.ant-btn-success:focus > a:only-child {
  color: currentColor;
}
.ant-btn-success:active, .ant-btn-success.active {
  color: #fff;
  background-color: #22800c;
  border-color: #22800c;
}
.ant-btn-success:active > a:only-child,
.ant-btn-success:active > a:only-child, .ant-btn-success.active > a:only-child,
.ant-btn-success.active > a:only-child {
  color: currentColor;
}
.ant-btn-success-disabled, .ant-btn-success.disabled, .ant-btn-success[disabled], .ant-btn-success-disabled:hover, .ant-btn-success.disabled:hover, .ant-btn-success[disabled]:hover, .ant-btn-success-disabled:focus, .ant-btn-success.disabled:focus, .ant-btn-success[disabled]:focus, .ant-btn-success-disabled:active, .ant-btn-success.disabled:active, .ant-btn-success[disabled]:active, .ant-btn-success-disabled.active, .ant-btn-success.disabled.active, .ant-btn-success[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-success-disabled > a:only-child, .ant-btn-success.disabled > a:only-child, .ant-btn-success[disabled] > a:only-child, .ant-btn-success-disabled:hover > a:only-child, .ant-btn-success.disabled:hover > a:only-child, .ant-btn-success[disabled]:hover > a:only-child, .ant-btn-success-disabled:focus > a:only-child, .ant-btn-success.disabled:focus > a:only-child, .ant-btn-success[disabled]:focus > a:only-child, .ant-btn-success-disabled:active > a:only-child, .ant-btn-success.disabled:active > a:only-child, .ant-btn-success[disabled]:active > a:only-child, .ant-btn-success-disabled.active > a:only-child, .ant-btn-success.disabled.active > a:only-child, .ant-btn-success[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-success-disabled > a:only-child::after, .ant-btn-success.disabled > a:only-child::after, .ant-btn-success[disabled] > a:only-child::after, .ant-btn-success-disabled:hover > a:only-child::after, .ant-btn-success.disabled:hover > a:only-child::after, .ant-btn-success[disabled]:hover > a:only-child::after, .ant-btn-success-disabled:focus > a:only-child::after, .ant-btn-success.disabled:focus > a:only-child::after, .ant-btn-success[disabled]:focus > a:only-child::after, .ant-btn-success-disabled:active > a:only-child::after, .ant-btn-success.disabled:active > a:only-child::after, .ant-btn-success[disabled]:active > a:only-child::after, .ant-btn-success-disabled.active > a:only-child::after, .ant-btn-success.disabled.active > a:only-child::after, .ant-btn-success[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-info {
  color: #212529;
  background-color: #60b6f4;
  border-color: #60b6f4;
}
.ant-btn-info > a:only-child {
  color: currentColor;
}
.ant-btn-info:hover, .ant-btn-info:focus {
  color: #212529;
  background-color: #a8d7f9;
  border-color: #a8d7f9;
}
.ant-btn-info:hover > a:only-child,
.ant-btn-info:hover > a:only-child, .ant-btn-info:focus > a:only-child,
.ant-btn-info:focus > a:only-child {
  color: currentColor;
}
.ant-btn-info:active, .ant-btn-info.active {
  color: #212529;
  background-color: #1895ef;
  border-color: #1895ef;
}
.ant-btn-info:active > a:only-child,
.ant-btn-info:active > a:only-child, .ant-btn-info.active > a:only-child,
.ant-btn-info.active > a:only-child {
  color: currentColor;
}
.ant-btn-info-disabled, .ant-btn-info.disabled, .ant-btn-info[disabled], .ant-btn-info-disabled:hover, .ant-btn-info.disabled:hover, .ant-btn-info[disabled]:hover, .ant-btn-info-disabled:focus, .ant-btn-info.disabled:focus, .ant-btn-info[disabled]:focus, .ant-btn-info-disabled:active, .ant-btn-info.disabled:active, .ant-btn-info[disabled]:active, .ant-btn-info-disabled.active, .ant-btn-info.disabled.active, .ant-btn-info[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-info-disabled > a:only-child, .ant-btn-info.disabled > a:only-child, .ant-btn-info[disabled] > a:only-child, .ant-btn-info-disabled:hover > a:only-child, .ant-btn-info.disabled:hover > a:only-child, .ant-btn-info[disabled]:hover > a:only-child, .ant-btn-info-disabled:focus > a:only-child, .ant-btn-info.disabled:focus > a:only-child, .ant-btn-info[disabled]:focus > a:only-child, .ant-btn-info-disabled:active > a:only-child, .ant-btn-info.disabled:active > a:only-child, .ant-btn-info[disabled]:active > a:only-child, .ant-btn-info-disabled.active > a:only-child, .ant-btn-info.disabled.active > a:only-child, .ant-btn-info[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-info-disabled > a:only-child::after, .ant-btn-info.disabled > a:only-child::after, .ant-btn-info[disabled] > a:only-child::after, .ant-btn-info-disabled:hover > a:only-child::after, .ant-btn-info.disabled:hover > a:only-child::after, .ant-btn-info[disabled]:hover > a:only-child::after, .ant-btn-info-disabled:focus > a:only-child::after, .ant-btn-info.disabled:focus > a:only-child::after, .ant-btn-info[disabled]:focus > a:only-child::after, .ant-btn-info-disabled:active > a:only-child::after, .ant-btn-info.disabled:active > a:only-child::after, .ant-btn-info[disabled]:active > a:only-child::after, .ant-btn-info-disabled.active > a:only-child::after, .ant-btn-info.disabled.active > a:only-child::after, .ant-btn-info[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-warning {
  color: #212529;
  background-color: #f7c12a;
  border-color: #f7c12a;
}
.ant-btn-warning > a:only-child {
  color: currentColor;
}
.ant-btn-warning:hover, .ant-btn-warning:focus {
  color: #212529;
  background-color: #fad674;
  border-color: #fad674;
}
.ant-btn-warning:hover > a:only-child,
.ant-btn-warning:hover > a:only-child, .ant-btn-warning:focus > a:only-child,
.ant-btn-warning:focus > a:only-child {
  color: currentColor;
}
.ant-btn-warning:active, .ant-btn-warning.active {
  color: #212529;
  background-color: #cd9908;
  border-color: #cd9908;
}
.ant-btn-warning:active > a:only-child,
.ant-btn-warning:active > a:only-child, .ant-btn-warning.active > a:only-child,
.ant-btn-warning.active > a:only-child {
  color: currentColor;
}
.ant-btn-warning-disabled, .ant-btn-warning.disabled, .ant-btn-warning[disabled], .ant-btn-warning-disabled:hover, .ant-btn-warning.disabled:hover, .ant-btn-warning[disabled]:hover, .ant-btn-warning-disabled:focus, .ant-btn-warning.disabled:focus, .ant-btn-warning[disabled]:focus, .ant-btn-warning-disabled:active, .ant-btn-warning.disabled:active, .ant-btn-warning[disabled]:active, .ant-btn-warning-disabled.active, .ant-btn-warning.disabled.active, .ant-btn-warning[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-warning-disabled > a:only-child, .ant-btn-warning.disabled > a:only-child, .ant-btn-warning[disabled] > a:only-child, .ant-btn-warning-disabled:hover > a:only-child, .ant-btn-warning.disabled:hover > a:only-child, .ant-btn-warning[disabled]:hover > a:only-child, .ant-btn-warning-disabled:focus > a:only-child, .ant-btn-warning.disabled:focus > a:only-child, .ant-btn-warning[disabled]:focus > a:only-child, .ant-btn-warning-disabled:active > a:only-child, .ant-btn-warning.disabled:active > a:only-child, .ant-btn-warning[disabled]:active > a:only-child, .ant-btn-warning-disabled.active > a:only-child, .ant-btn-warning.disabled.active > a:only-child, .ant-btn-warning[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-warning-disabled > a:only-child::after, .ant-btn-warning.disabled > a:only-child::after, .ant-btn-warning[disabled] > a:only-child::after, .ant-btn-warning-disabled:hover > a:only-child::after, .ant-btn-warning.disabled:hover > a:only-child::after, .ant-btn-warning[disabled]:hover > a:only-child::after, .ant-btn-warning-disabled:focus > a:only-child::after, .ant-btn-warning.disabled:focus > a:only-child::after, .ant-btn-warning[disabled]:focus > a:only-child::after, .ant-btn-warning-disabled:active > a:only-child::after, .ant-btn-warning.disabled:active > a:only-child::after, .ant-btn-warning[disabled]:active > a:only-child::after, .ant-btn-warning-disabled.active > a:only-child::after, .ant-btn-warning.disabled.active > a:only-child::after, .ant-btn-warning[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-light {
  color: #212529;
  background-color: #fafafa;
  border-color: #fafafa;
}
.ant-btn-light > a:only-child {
  color: currentColor;
}
.ant-btn-light:hover, .ant-btn-light:focus {
  color: #212529;
  background-color: white;
  border-color: white;
}
.ant-btn-light:hover > a:only-child,
.ant-btn-light:hover > a:only-child, .ant-btn-light:focus > a:only-child,
.ant-btn-light:focus > a:only-child {
  color: currentColor;
}
.ant-btn-light:active, .ant-btn-light.active {
  color: #212529;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.ant-btn-light:active > a:only-child,
.ant-btn-light:active > a:only-child, .ant-btn-light.active > a:only-child,
.ant-btn-light.active > a:only-child {
  color: currentColor;
}
.ant-btn-light-disabled, .ant-btn-light.disabled, .ant-btn-light[disabled], .ant-btn-light-disabled:hover, .ant-btn-light.disabled:hover, .ant-btn-light[disabled]:hover, .ant-btn-light-disabled:focus, .ant-btn-light.disabled:focus, .ant-btn-light[disabled]:focus, .ant-btn-light-disabled:active, .ant-btn-light.disabled:active, .ant-btn-light[disabled]:active, .ant-btn-light-disabled.active, .ant-btn-light.disabled.active, .ant-btn-light[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-light-disabled > a:only-child, .ant-btn-light.disabled > a:only-child, .ant-btn-light[disabled] > a:only-child, .ant-btn-light-disabled:hover > a:only-child, .ant-btn-light.disabled:hover > a:only-child, .ant-btn-light[disabled]:hover > a:only-child, .ant-btn-light-disabled:focus > a:only-child, .ant-btn-light.disabled:focus > a:only-child, .ant-btn-light[disabled]:focus > a:only-child, .ant-btn-light-disabled:active > a:only-child, .ant-btn-light.disabled:active > a:only-child, .ant-btn-light[disabled]:active > a:only-child, .ant-btn-light-disabled.active > a:only-child, .ant-btn-light.disabled.active > a:only-child, .ant-btn-light[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-light-disabled > a:only-child::after, .ant-btn-light.disabled > a:only-child::after, .ant-btn-light[disabled] > a:only-child::after, .ant-btn-light-disabled:hover > a:only-child::after, .ant-btn-light.disabled:hover > a:only-child::after, .ant-btn-light[disabled]:hover > a:only-child::after, .ant-btn-light-disabled:focus > a:only-child::after, .ant-btn-light.disabled:focus > a:only-child::after, .ant-btn-light[disabled]:focus > a:only-child::after, .ant-btn-light-disabled:active > a:only-child::after, .ant-btn-light.disabled:active > a:only-child::after, .ant-btn-light[disabled]:active > a:only-child::after, .ant-btn-light-disabled.active > a:only-child::after, .ant-btn-light.disabled.active > a:only-child::after, .ant-btn-light[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.ant-btn-dark > a:only-child {
  color: currentColor;
}
.ant-btn-dark:hover, .ant-btn-dark:focus {
  color: #fff;
  background-color: #56606a;
  border-color: #56606a;
}
.ant-btn-dark:hover > a:only-child,
.ant-btn-dark:hover > a:only-child, .ant-btn-dark:focus > a:only-child,
.ant-btn-dark:focus > a:only-child {
  color: currentColor;
}
.ant-btn-dark:active, .ant-btn-dark.active {
  color: #fff;
  background-color: #121416;
  border-color: #121416;
}
.ant-btn-dark:active > a:only-child,
.ant-btn-dark:active > a:only-child, .ant-btn-dark.active > a:only-child,
.ant-btn-dark.active > a:only-child {
  color: currentColor;
}
.ant-btn-dark-disabled, .ant-btn-dark.disabled, .ant-btn-dark[disabled], .ant-btn-dark-disabled:hover, .ant-btn-dark.disabled:hover, .ant-btn-dark[disabled]:hover, .ant-btn-dark-disabled:focus, .ant-btn-dark.disabled:focus, .ant-btn-dark[disabled]:focus, .ant-btn-dark-disabled:active, .ant-btn-dark.disabled:active, .ant-btn-dark[disabled]:active, .ant-btn-dark-disabled.active, .ant-btn-dark.disabled.active, .ant-btn-dark[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-dark-disabled > a:only-child, .ant-btn-dark.disabled > a:only-child, .ant-btn-dark[disabled] > a:only-child, .ant-btn-dark-disabled:hover > a:only-child, .ant-btn-dark.disabled:hover > a:only-child, .ant-btn-dark[disabled]:hover > a:only-child, .ant-btn-dark-disabled:focus > a:only-child, .ant-btn-dark.disabled:focus > a:only-child, .ant-btn-dark[disabled]:focus > a:only-child, .ant-btn-dark-disabled:active > a:only-child, .ant-btn-dark.disabled:active > a:only-child, .ant-btn-dark[disabled]:active > a:only-child, .ant-btn-dark-disabled.active > a:only-child, .ant-btn-dark.disabled.active > a:only-child, .ant-btn-dark[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-dark-disabled > a:only-child::after, .ant-btn-dark.disabled > a:only-child::after, .ant-btn-dark[disabled] > a:only-child::after, .ant-btn-dark-disabled:hover > a:only-child::after, .ant-btn-dark.disabled:hover > a:only-child::after, .ant-btn-dark[disabled]:hover > a:only-child::after, .ant-btn-dark-disabled:focus > a:only-child::after, .ant-btn-dark.disabled:focus > a:only-child::after, .ant-btn-dark[disabled]:focus > a:only-child::after, .ant-btn-dark-disabled:active > a:only-child::after, .ant-btn-dark.disabled:active > a:only-child::after, .ant-btn-dark[disabled]:active > a:only-child::after, .ant-btn-dark-disabled.active > a:only-child::after, .ant-btn-dark.disabled.active > a:only-child::after, .ant-btn-dark[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-link {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.ant-btn-link > a:only-child {
  color: currentColor;
}
.ant-btn-link:hover, .ant-btn-link:focus {
  color: #fff;
  background-color: #4da3ff;
  border-color: #4da3ff;
}
.ant-btn-link:hover > a:only-child,
.ant-btn-link:hover > a:only-child, .ant-btn-link:focus > a:only-child,
.ant-btn-link:focus > a:only-child {
  color: currentColor;
}
.ant-btn-link:active, .ant-btn-link.active {
  color: #fff;
  background-color: #0056b3;
  border-color: #0056b3;
}
.ant-btn-link:active > a:only-child,
.ant-btn-link:active > a:only-child, .ant-btn-link.active > a:only-child,
.ant-btn-link.active > a:only-child {
  color: currentColor;
}
.ant-btn-link-disabled, .ant-btn-link.disabled, .ant-btn-link[disabled], .ant-btn-link-disabled:hover, .ant-btn-link.disabled:hover, .ant-btn-link[disabled]:hover, .ant-btn-link-disabled:focus, .ant-btn-link.disabled:focus, .ant-btn-link[disabled]:focus, .ant-btn-link-disabled:active, .ant-btn-link.disabled:active, .ant-btn-link[disabled]:active, .ant-btn-link-disabled.active, .ant-btn-link.disabled.active, .ant-btn-link[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-link-disabled > a:only-child, .ant-btn-link.disabled > a:only-child, .ant-btn-link[disabled] > a:only-child, .ant-btn-link-disabled:hover > a:only-child, .ant-btn-link.disabled:hover > a:only-child, .ant-btn-link[disabled]:hover > a:only-child, .ant-btn-link-disabled:focus > a:only-child, .ant-btn-link.disabled:focus > a:only-child, .ant-btn-link[disabled]:focus > a:only-child, .ant-btn-link-disabled:active > a:only-child, .ant-btn-link.disabled:active > a:only-child, .ant-btn-link[disabled]:active > a:only-child, .ant-btn-link-disabled.active > a:only-child, .ant-btn-link.disabled.active > a:only-child, .ant-btn-link[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-link-disabled > a:only-child::after, .ant-btn-link.disabled > a:only-child::after, .ant-btn-link[disabled] > a:only-child::after, .ant-btn-link-disabled:hover > a:only-child::after, .ant-btn-link.disabled:hover > a:only-child::after, .ant-btn-link[disabled]:hover > a:only-child::after, .ant-btn-link-disabled:focus > a:only-child::after, .ant-btn-link.disabled:focus > a:only-child::after, .ant-btn-link[disabled]:focus > a:only-child::after, .ant-btn-link-disabled:active > a:only-child::after, .ant-btn-link.disabled:active > a:only-child::after, .ant-btn-link[disabled]:active > a:only-child::after, .ant-btn-link-disabled.active > a:only-child::after, .ant-btn-link.disabled.active > a:only-child::after, .ant-btn-link[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}

.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #1890ff;
  border-left-color: #1890ff;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #1890ff;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #1890ff;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #6c757d;
  border-left-color: #6c757d;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #6c757d;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #6c757d;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #35c613;
  border-left-color: #35c613;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #35c613;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #35c613;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #60b6f4;
  border-left-color: #60b6f4;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #60b6f4;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #60b6f4;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #f7c12a;
  border-left-color: #f7c12a;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #f7c12a;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #f7c12a;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #ff4d4f;
  border-left-color: #ff4d4f;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #ff4d4f;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #ff4d4f;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #fafafa;
  border-left-color: #fafafa;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #fafafa;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #fafafa;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #343a40;
  border-left-color: #343a40;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #343a40;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #343a40;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: #007bff;
  border-left-color: #007bff;
}
.ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: #d9d9d9;
}
.ant-btn-group .ant-btn-btn-primary:first-child:not(:last-child) {
  border-right-color: #007bff;
}
.ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: #d9d9d9;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child), .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary {
  border-left-color: #007bff;
}
.ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled], .ant-btn-group .ant-btn-primary + .ant-btn-group .ant-btn-primary[disabled] {
  border-left-color: #d9d9d9;
}

.ant-btn-outline-primary {
  color: #1890ff;
  background-color: transparent;
  border-color: #1890ff;
}
.ant-btn-outline-primary > a:only-child {
  color: currentColor;
}
.ant-btn-outline-primary:hover, .ant-btn-outline-primary:focus {
  color: #65b5ff;
  border-color: #65b5ff;
}
.ant-btn-outline-primary:hover > a:only-child,
.ant-btn-outline-primary:hover > a:only-child, .ant-btn-outline-primary:focus > a:only-child,
.ant-btn-outline-primary:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-primary:active, .ant-btn-outline-primary.active {
  color: #0069cb;
  border-color: #0069cb;
}
.ant-btn-outline-primary:active > a:only-child,
.ant-btn-outline-primary:active > a:only-child, .ant-btn-outline-primary.active > a:only-child,
.ant-btn-outline-primary.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-primary-disabled, .ant-btn-outline-primary.disabled, .ant-btn-outline-primary[disabled], .ant-btn-outline-primary-disabled:hover, .ant-btn-outline-primary.disabled:hover, .ant-btn-outline-primary[disabled]:hover, .ant-btn-outline-primary-disabled:focus, .ant-btn-outline-primary.disabled:focus, .ant-btn-outline-primary[disabled]:focus, .ant-btn-outline-primary-disabled:active, .ant-btn-outline-primary.disabled:active, .ant-btn-outline-primary[disabled]:active, .ant-btn-outline-primary-disabled.active, .ant-btn-outline-primary.disabled.active, .ant-btn-outline-primary[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-primary-disabled > a:only-child, .ant-btn-outline-primary.disabled > a:only-child, .ant-btn-outline-primary[disabled] > a:only-child, .ant-btn-outline-primary-disabled:hover > a:only-child, .ant-btn-outline-primary.disabled:hover > a:only-child, .ant-btn-outline-primary[disabled]:hover > a:only-child, .ant-btn-outline-primary-disabled:focus > a:only-child, .ant-btn-outline-primary.disabled:focus > a:only-child, .ant-btn-outline-primary[disabled]:focus > a:only-child, .ant-btn-outline-primary-disabled:active > a:only-child, .ant-btn-outline-primary.disabled:active > a:only-child, .ant-btn-outline-primary[disabled]:active > a:only-child, .ant-btn-outline-primary-disabled.active > a:only-child, .ant-btn-outline-primary.disabled.active > a:only-child, .ant-btn-outline-primary[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-primary-disabled > a:only-child::after, .ant-btn-outline-primary.disabled > a:only-child::after, .ant-btn-outline-primary[disabled] > a:only-child::after, .ant-btn-outline-primary-disabled:hover > a:only-child::after, .ant-btn-outline-primary.disabled:hover > a:only-child::after, .ant-btn-outline-primary[disabled]:hover > a:only-child::after, .ant-btn-outline-primary-disabled:focus > a:only-child::after, .ant-btn-outline-primary.disabled:focus > a:only-child::after, .ant-btn-outline-primary[disabled]:focus > a:only-child::after, .ant-btn-outline-primary-disabled:active > a:only-child::after, .ant-btn-outline-primary.disabled:active > a:only-child::after, .ant-btn-outline-primary[disabled]:active > a:only-child::after, .ant-btn-outline-primary-disabled.active > a:only-child::after, .ant-btn-outline-primary.disabled.active > a:only-child::after, .ant-btn-outline-primary[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  border-color: #6c757d;
}
.ant-btn-outline-secondary > a:only-child {
  color: currentColor;
}
.ant-btn-outline-secondary:hover, .ant-btn-outline-secondary:focus {
  color: #939ba2;
  border-color: #939ba2;
}
.ant-btn-outline-secondary:hover > a:only-child,
.ant-btn-outline-secondary:hover > a:only-child, .ant-btn-outline-secondary:focus > a:only-child,
.ant-btn-outline-secondary:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-secondary:active, .ant-btn-outline-secondary.active {
  color: #494f54;
  border-color: #494f54;
}
.ant-btn-outline-secondary:active > a:only-child,
.ant-btn-outline-secondary:active > a:only-child, .ant-btn-outline-secondary.active > a:only-child,
.ant-btn-outline-secondary.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-secondary-disabled, .ant-btn-outline-secondary.disabled, .ant-btn-outline-secondary[disabled], .ant-btn-outline-secondary-disabled:hover, .ant-btn-outline-secondary.disabled:hover, .ant-btn-outline-secondary[disabled]:hover, .ant-btn-outline-secondary-disabled:focus, .ant-btn-outline-secondary.disabled:focus, .ant-btn-outline-secondary[disabled]:focus, .ant-btn-outline-secondary-disabled:active, .ant-btn-outline-secondary.disabled:active, .ant-btn-outline-secondary[disabled]:active, .ant-btn-outline-secondary-disabled.active, .ant-btn-outline-secondary.disabled.active, .ant-btn-outline-secondary[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-secondary-disabled > a:only-child, .ant-btn-outline-secondary.disabled > a:only-child, .ant-btn-outline-secondary[disabled] > a:only-child, .ant-btn-outline-secondary-disabled:hover > a:only-child, .ant-btn-outline-secondary.disabled:hover > a:only-child, .ant-btn-outline-secondary[disabled]:hover > a:only-child, .ant-btn-outline-secondary-disabled:focus > a:only-child, .ant-btn-outline-secondary.disabled:focus > a:only-child, .ant-btn-outline-secondary[disabled]:focus > a:only-child, .ant-btn-outline-secondary-disabled:active > a:only-child, .ant-btn-outline-secondary.disabled:active > a:only-child, .ant-btn-outline-secondary[disabled]:active > a:only-child, .ant-btn-outline-secondary-disabled.active > a:only-child, .ant-btn-outline-secondary.disabled.active > a:only-child, .ant-btn-outline-secondary[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-secondary-disabled > a:only-child::after, .ant-btn-outline-secondary.disabled > a:only-child::after, .ant-btn-outline-secondary[disabled] > a:only-child::after, .ant-btn-outline-secondary-disabled:hover > a:only-child::after, .ant-btn-outline-secondary.disabled:hover > a:only-child::after, .ant-btn-outline-secondary[disabled]:hover > a:only-child::after, .ant-btn-outline-secondary-disabled:focus > a:only-child::after, .ant-btn-outline-secondary.disabled:focus > a:only-child::after, .ant-btn-outline-secondary[disabled]:focus > a:only-child::after, .ant-btn-outline-secondary-disabled:active > a:only-child::after, .ant-btn-outline-secondary.disabled:active > a:only-child::after, .ant-btn-outline-secondary[disabled]:active > a:only-child::after, .ant-btn-outline-secondary-disabled.active > a:only-child::after, .ant-btn-outline-secondary.disabled.active > a:only-child::after, .ant-btn-outline-secondary[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-success {
  color: #35c613;
  background-color: transparent;
  border-color: #35c613;
}
.ant-btn-outline-success > a:only-child {
  color: currentColor;
}
.ant-btn-outline-success:hover, .ant-btn-outline-success:focus {
  color: #5bec39;
  border-color: #5bec39;
}
.ant-btn-outline-success:hover > a:only-child,
.ant-btn-outline-success:hover > a:only-child, .ant-btn-outline-success:focus > a:only-child,
.ant-btn-outline-success:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-success:active, .ant-btn-outline-success.active {
  color: #22800c;
  border-color: #22800c;
}
.ant-btn-outline-success:active > a:only-child,
.ant-btn-outline-success:active > a:only-child, .ant-btn-outline-success.active > a:only-child,
.ant-btn-outline-success.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-success-disabled, .ant-btn-outline-success.disabled, .ant-btn-outline-success[disabled], .ant-btn-outline-success-disabled:hover, .ant-btn-outline-success.disabled:hover, .ant-btn-outline-success[disabled]:hover, .ant-btn-outline-success-disabled:focus, .ant-btn-outline-success.disabled:focus, .ant-btn-outline-success[disabled]:focus, .ant-btn-outline-success-disabled:active, .ant-btn-outline-success.disabled:active, .ant-btn-outline-success[disabled]:active, .ant-btn-outline-success-disabled.active, .ant-btn-outline-success.disabled.active, .ant-btn-outline-success[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-success-disabled > a:only-child, .ant-btn-outline-success.disabled > a:only-child, .ant-btn-outline-success[disabled] > a:only-child, .ant-btn-outline-success-disabled:hover > a:only-child, .ant-btn-outline-success.disabled:hover > a:only-child, .ant-btn-outline-success[disabled]:hover > a:only-child, .ant-btn-outline-success-disabled:focus > a:only-child, .ant-btn-outline-success.disabled:focus > a:only-child, .ant-btn-outline-success[disabled]:focus > a:only-child, .ant-btn-outline-success-disabled:active > a:only-child, .ant-btn-outline-success.disabled:active > a:only-child, .ant-btn-outline-success[disabled]:active > a:only-child, .ant-btn-outline-success-disabled.active > a:only-child, .ant-btn-outline-success.disabled.active > a:only-child, .ant-btn-outline-success[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-success-disabled > a:only-child::after, .ant-btn-outline-success.disabled > a:only-child::after, .ant-btn-outline-success[disabled] > a:only-child::after, .ant-btn-outline-success-disabled:hover > a:only-child::after, .ant-btn-outline-success.disabled:hover > a:only-child::after, .ant-btn-outline-success[disabled]:hover > a:only-child::after, .ant-btn-outline-success-disabled:focus > a:only-child::after, .ant-btn-outline-success.disabled:focus > a:only-child::after, .ant-btn-outline-success[disabled]:focus > a:only-child::after, .ant-btn-outline-success-disabled:active > a:only-child::after, .ant-btn-outline-success.disabled:active > a:only-child::after, .ant-btn-outline-success[disabled]:active > a:only-child::after, .ant-btn-outline-success-disabled.active > a:only-child::after, .ant-btn-outline-success.disabled.active > a:only-child::after, .ant-btn-outline-success[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-info {
  color: #60b6f4;
  background-color: transparent;
  border-color: #60b6f4;
}
.ant-btn-outline-info > a:only-child {
  color: currentColor;
}
.ant-btn-outline-info:hover, .ant-btn-outline-info:focus {
  color: #a8d7f9;
  border-color: #a8d7f9;
}
.ant-btn-outline-info:hover > a:only-child,
.ant-btn-outline-info:hover > a:only-child, .ant-btn-outline-info:focus > a:only-child,
.ant-btn-outline-info:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-info:active, .ant-btn-outline-info.active {
  color: #1895ef;
  border-color: #1895ef;
}
.ant-btn-outline-info:active > a:only-child,
.ant-btn-outline-info:active > a:only-child, .ant-btn-outline-info.active > a:only-child,
.ant-btn-outline-info.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-info-disabled, .ant-btn-outline-info.disabled, .ant-btn-outline-info[disabled], .ant-btn-outline-info-disabled:hover, .ant-btn-outline-info.disabled:hover, .ant-btn-outline-info[disabled]:hover, .ant-btn-outline-info-disabled:focus, .ant-btn-outline-info.disabled:focus, .ant-btn-outline-info[disabled]:focus, .ant-btn-outline-info-disabled:active, .ant-btn-outline-info.disabled:active, .ant-btn-outline-info[disabled]:active, .ant-btn-outline-info-disabled.active, .ant-btn-outline-info.disabled.active, .ant-btn-outline-info[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-info-disabled > a:only-child, .ant-btn-outline-info.disabled > a:only-child, .ant-btn-outline-info[disabled] > a:only-child, .ant-btn-outline-info-disabled:hover > a:only-child, .ant-btn-outline-info.disabled:hover > a:only-child, .ant-btn-outline-info[disabled]:hover > a:only-child, .ant-btn-outline-info-disabled:focus > a:only-child, .ant-btn-outline-info.disabled:focus > a:only-child, .ant-btn-outline-info[disabled]:focus > a:only-child, .ant-btn-outline-info-disabled:active > a:only-child, .ant-btn-outline-info.disabled:active > a:only-child, .ant-btn-outline-info[disabled]:active > a:only-child, .ant-btn-outline-info-disabled.active > a:only-child, .ant-btn-outline-info.disabled.active > a:only-child, .ant-btn-outline-info[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-info-disabled > a:only-child::after, .ant-btn-outline-info.disabled > a:only-child::after, .ant-btn-outline-info[disabled] > a:only-child::after, .ant-btn-outline-info-disabled:hover > a:only-child::after, .ant-btn-outline-info.disabled:hover > a:only-child::after, .ant-btn-outline-info[disabled]:hover > a:only-child::after, .ant-btn-outline-info-disabled:focus > a:only-child::after, .ant-btn-outline-info.disabled:focus > a:only-child::after, .ant-btn-outline-info[disabled]:focus > a:only-child::after, .ant-btn-outline-info-disabled:active > a:only-child::after, .ant-btn-outline-info.disabled:active > a:only-child::after, .ant-btn-outline-info[disabled]:active > a:only-child::after, .ant-btn-outline-info-disabled.active > a:only-child::after, .ant-btn-outline-info.disabled.active > a:only-child::after, .ant-btn-outline-info[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-warning {
  color: #f7c12a;
  background-color: transparent;
  border-color: #f7c12a;
}
.ant-btn-outline-warning > a:only-child {
  color: currentColor;
}
.ant-btn-outline-warning:hover, .ant-btn-outline-warning:focus {
  color: #fad674;
  border-color: #fad674;
}
.ant-btn-outline-warning:hover > a:only-child,
.ant-btn-outline-warning:hover > a:only-child, .ant-btn-outline-warning:focus > a:only-child,
.ant-btn-outline-warning:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-warning:active, .ant-btn-outline-warning.active {
  color: #cd9908;
  border-color: #cd9908;
}
.ant-btn-outline-warning:active > a:only-child,
.ant-btn-outline-warning:active > a:only-child, .ant-btn-outline-warning.active > a:only-child,
.ant-btn-outline-warning.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-warning-disabled, .ant-btn-outline-warning.disabled, .ant-btn-outline-warning[disabled], .ant-btn-outline-warning-disabled:hover, .ant-btn-outline-warning.disabled:hover, .ant-btn-outline-warning[disabled]:hover, .ant-btn-outline-warning-disabled:focus, .ant-btn-outline-warning.disabled:focus, .ant-btn-outline-warning[disabled]:focus, .ant-btn-outline-warning-disabled:active, .ant-btn-outline-warning.disabled:active, .ant-btn-outline-warning[disabled]:active, .ant-btn-outline-warning-disabled.active, .ant-btn-outline-warning.disabled.active, .ant-btn-outline-warning[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-warning-disabled > a:only-child, .ant-btn-outline-warning.disabled > a:only-child, .ant-btn-outline-warning[disabled] > a:only-child, .ant-btn-outline-warning-disabled:hover > a:only-child, .ant-btn-outline-warning.disabled:hover > a:only-child, .ant-btn-outline-warning[disabled]:hover > a:only-child, .ant-btn-outline-warning-disabled:focus > a:only-child, .ant-btn-outline-warning.disabled:focus > a:only-child, .ant-btn-outline-warning[disabled]:focus > a:only-child, .ant-btn-outline-warning-disabled:active > a:only-child, .ant-btn-outline-warning.disabled:active > a:only-child, .ant-btn-outline-warning[disabled]:active > a:only-child, .ant-btn-outline-warning-disabled.active > a:only-child, .ant-btn-outline-warning.disabled.active > a:only-child, .ant-btn-outline-warning[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-warning-disabled > a:only-child::after, .ant-btn-outline-warning.disabled > a:only-child::after, .ant-btn-outline-warning[disabled] > a:only-child::after, .ant-btn-outline-warning-disabled:hover > a:only-child::after, .ant-btn-outline-warning.disabled:hover > a:only-child::after, .ant-btn-outline-warning[disabled]:hover > a:only-child::after, .ant-btn-outline-warning-disabled:focus > a:only-child::after, .ant-btn-outline-warning.disabled:focus > a:only-child::after, .ant-btn-outline-warning[disabled]:focus > a:only-child::after, .ant-btn-outline-warning-disabled:active > a:only-child::after, .ant-btn-outline-warning.disabled:active > a:only-child::after, .ant-btn-outline-warning[disabled]:active > a:only-child::after, .ant-btn-outline-warning-disabled.active > a:only-child::after, .ant-btn-outline-warning.disabled.active > a:only-child::after, .ant-btn-outline-warning[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-danger {
  color: #ff4d4f;
  background-color: transparent;
  border-color: #ff4d4f;
}
.ant-btn-outline-danger > a:only-child {
  color: currentColor;
}
.ant-btn-outline-danger:hover, .ant-btn-outline-danger:focus {
  color: #ff9a9b;
  border-color: #ff9a9b;
}
.ant-btn-outline-danger:hover > a:only-child,
.ant-btn-outline-danger:hover > a:only-child, .ant-btn-outline-danger:focus > a:only-child,
.ant-btn-outline-danger:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-danger:active, .ant-btn-outline-danger.active {
  color: #ff0103;
  border-color: #ff0103;
}
.ant-btn-outline-danger:active > a:only-child,
.ant-btn-outline-danger:active > a:only-child, .ant-btn-outline-danger.active > a:only-child,
.ant-btn-outline-danger.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-danger-disabled, .ant-btn-outline-danger.disabled, .ant-btn-outline-danger[disabled], .ant-btn-outline-danger-disabled:hover, .ant-btn-outline-danger.disabled:hover, .ant-btn-outline-danger[disabled]:hover, .ant-btn-outline-danger-disabled:focus, .ant-btn-outline-danger.disabled:focus, .ant-btn-outline-danger[disabled]:focus, .ant-btn-outline-danger-disabled:active, .ant-btn-outline-danger.disabled:active, .ant-btn-outline-danger[disabled]:active, .ant-btn-outline-danger-disabled.active, .ant-btn-outline-danger.disabled.active, .ant-btn-outline-danger[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-danger-disabled > a:only-child, .ant-btn-outline-danger.disabled > a:only-child, .ant-btn-outline-danger[disabled] > a:only-child, .ant-btn-outline-danger-disabled:hover > a:only-child, .ant-btn-outline-danger.disabled:hover > a:only-child, .ant-btn-outline-danger[disabled]:hover > a:only-child, .ant-btn-outline-danger-disabled:focus > a:only-child, .ant-btn-outline-danger.disabled:focus > a:only-child, .ant-btn-outline-danger[disabled]:focus > a:only-child, .ant-btn-outline-danger-disabled:active > a:only-child, .ant-btn-outline-danger.disabled:active > a:only-child, .ant-btn-outline-danger[disabled]:active > a:only-child, .ant-btn-outline-danger-disabled.active > a:only-child, .ant-btn-outline-danger.disabled.active > a:only-child, .ant-btn-outline-danger[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-danger-disabled > a:only-child::after, .ant-btn-outline-danger.disabled > a:only-child::after, .ant-btn-outline-danger[disabled] > a:only-child::after, .ant-btn-outline-danger-disabled:hover > a:only-child::after, .ant-btn-outline-danger.disabled:hover > a:only-child::after, .ant-btn-outline-danger[disabled]:hover > a:only-child::after, .ant-btn-outline-danger-disabled:focus > a:only-child::after, .ant-btn-outline-danger.disabled:focus > a:only-child::after, .ant-btn-outline-danger[disabled]:focus > a:only-child::after, .ant-btn-outline-danger-disabled:active > a:only-child::after, .ant-btn-outline-danger.disabled:active > a:only-child::after, .ant-btn-outline-danger[disabled]:active > a:only-child::after, .ant-btn-outline-danger-disabled.active > a:only-child::after, .ant-btn-outline-danger.disabled.active > a:only-child::after, .ant-btn-outline-danger[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-light {
  color: #fafafa;
  background-color: transparent;
  border-color: #fafafa;
}
.ant-btn-outline-light > a:only-child {
  color: currentColor;
}
.ant-btn-outline-light:hover, .ant-btn-outline-light:focus {
  color: white;
  border-color: white;
}
.ant-btn-outline-light:hover > a:only-child,
.ant-btn-outline-light:hover > a:only-child, .ant-btn-outline-light:focus > a:only-child,
.ant-btn-outline-light:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-light:active, .ant-btn-outline-light.active {
  color: #d4d4d4;
  border-color: #d4d4d4;
}
.ant-btn-outline-light:active > a:only-child,
.ant-btn-outline-light:active > a:only-child, .ant-btn-outline-light.active > a:only-child,
.ant-btn-outline-light.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-light-disabled, .ant-btn-outline-light.disabled, .ant-btn-outline-light[disabled], .ant-btn-outline-light-disabled:hover, .ant-btn-outline-light.disabled:hover, .ant-btn-outline-light[disabled]:hover, .ant-btn-outline-light-disabled:focus, .ant-btn-outline-light.disabled:focus, .ant-btn-outline-light[disabled]:focus, .ant-btn-outline-light-disabled:active, .ant-btn-outline-light.disabled:active, .ant-btn-outline-light[disabled]:active, .ant-btn-outline-light-disabled.active, .ant-btn-outline-light.disabled.active, .ant-btn-outline-light[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-light-disabled > a:only-child, .ant-btn-outline-light.disabled > a:only-child, .ant-btn-outline-light[disabled] > a:only-child, .ant-btn-outline-light-disabled:hover > a:only-child, .ant-btn-outline-light.disabled:hover > a:only-child, .ant-btn-outline-light[disabled]:hover > a:only-child, .ant-btn-outline-light-disabled:focus > a:only-child, .ant-btn-outline-light.disabled:focus > a:only-child, .ant-btn-outline-light[disabled]:focus > a:only-child, .ant-btn-outline-light-disabled:active > a:only-child, .ant-btn-outline-light.disabled:active > a:only-child, .ant-btn-outline-light[disabled]:active > a:only-child, .ant-btn-outline-light-disabled.active > a:only-child, .ant-btn-outline-light.disabled.active > a:only-child, .ant-btn-outline-light[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-light-disabled > a:only-child::after, .ant-btn-outline-light.disabled > a:only-child::after, .ant-btn-outline-light[disabled] > a:only-child::after, .ant-btn-outline-light-disabled:hover > a:only-child::after, .ant-btn-outline-light.disabled:hover > a:only-child::after, .ant-btn-outline-light[disabled]:hover > a:only-child::after, .ant-btn-outline-light-disabled:focus > a:only-child::after, .ant-btn-outline-light.disabled:focus > a:only-child::after, .ant-btn-outline-light[disabled]:focus > a:only-child::after, .ant-btn-outline-light-disabled:active > a:only-child::after, .ant-btn-outline-light.disabled:active > a:only-child::after, .ant-btn-outline-light[disabled]:active > a:only-child::after, .ant-btn-outline-light-disabled.active > a:only-child::after, .ant-btn-outline-light.disabled.active > a:only-child::after, .ant-btn-outline-light[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  border-color: #343a40;
}
.ant-btn-outline-dark > a:only-child {
  color: currentColor;
}
.ant-btn-outline-dark:hover, .ant-btn-outline-dark:focus {
  color: #56606a;
  border-color: #56606a;
}
.ant-btn-outline-dark:hover > a:only-child,
.ant-btn-outline-dark:hover > a:only-child, .ant-btn-outline-dark:focus > a:only-child,
.ant-btn-outline-dark:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-dark:active, .ant-btn-outline-dark.active {
  color: #121416;
  border-color: #121416;
}
.ant-btn-outline-dark:active > a:only-child,
.ant-btn-outline-dark:active > a:only-child, .ant-btn-outline-dark.active > a:only-child,
.ant-btn-outline-dark.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-dark-disabled, .ant-btn-outline-dark.disabled, .ant-btn-outline-dark[disabled], .ant-btn-outline-dark-disabled:hover, .ant-btn-outline-dark.disabled:hover, .ant-btn-outline-dark[disabled]:hover, .ant-btn-outline-dark-disabled:focus, .ant-btn-outline-dark.disabled:focus, .ant-btn-outline-dark[disabled]:focus, .ant-btn-outline-dark-disabled:active, .ant-btn-outline-dark.disabled:active, .ant-btn-outline-dark[disabled]:active, .ant-btn-outline-dark-disabled.active, .ant-btn-outline-dark.disabled.active, .ant-btn-outline-dark[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-dark-disabled > a:only-child, .ant-btn-outline-dark.disabled > a:only-child, .ant-btn-outline-dark[disabled] > a:only-child, .ant-btn-outline-dark-disabled:hover > a:only-child, .ant-btn-outline-dark.disabled:hover > a:only-child, .ant-btn-outline-dark[disabled]:hover > a:only-child, .ant-btn-outline-dark-disabled:focus > a:only-child, .ant-btn-outline-dark.disabled:focus > a:only-child, .ant-btn-outline-dark[disabled]:focus > a:only-child, .ant-btn-outline-dark-disabled:active > a:only-child, .ant-btn-outline-dark.disabled:active > a:only-child, .ant-btn-outline-dark[disabled]:active > a:only-child, .ant-btn-outline-dark-disabled.active > a:only-child, .ant-btn-outline-dark.disabled.active > a:only-child, .ant-btn-outline-dark[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-dark-disabled > a:only-child::after, .ant-btn-outline-dark.disabled > a:only-child::after, .ant-btn-outline-dark[disabled] > a:only-child::after, .ant-btn-outline-dark-disabled:hover > a:only-child::after, .ant-btn-outline-dark.disabled:hover > a:only-child::after, .ant-btn-outline-dark[disabled]:hover > a:only-child::after, .ant-btn-outline-dark-disabled:focus > a:only-child::after, .ant-btn-outline-dark.disabled:focus > a:only-child::after, .ant-btn-outline-dark[disabled]:focus > a:only-child::after, .ant-btn-outline-dark-disabled:active > a:only-child::after, .ant-btn-outline-dark.disabled:active > a:only-child::after, .ant-btn-outline-dark[disabled]:active > a:only-child::after, .ant-btn-outline-dark-disabled.active > a:only-child::after, .ant-btn-outline-dark.disabled.active > a:only-child::after, .ant-btn-outline-dark[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}
.ant-btn-outline-link {
  color: #007bff;
  background-color: transparent;
  border-color: #007bff;
}
.ant-btn-outline-link > a:only-child {
  color: currentColor;
}
.ant-btn-outline-link:hover, .ant-btn-outline-link:focus {
  color: #4da3ff;
  border-color: #4da3ff;
}
.ant-btn-outline-link:hover > a:only-child,
.ant-btn-outline-link:hover > a:only-child, .ant-btn-outline-link:focus > a:only-child,
.ant-btn-outline-link:focus > a:only-child {
  color: currentColor;
}
.ant-btn-outline-link:active, .ant-btn-outline-link.active {
  color: #0056b3;
  border-color: #0056b3;
}
.ant-btn-outline-link:active > a:only-child,
.ant-btn-outline-link:active > a:only-child, .ant-btn-outline-link.active > a:only-child,
.ant-btn-outline-link.active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-link-disabled, .ant-btn-outline-link.disabled, .ant-btn-outline-link[disabled], .ant-btn-outline-link-disabled:hover, .ant-btn-outline-link.disabled:hover, .ant-btn-outline-link[disabled]:hover, .ant-btn-outline-link-disabled:focus, .ant-btn-outline-link.disabled:focus, .ant-btn-outline-link[disabled]:focus, .ant-btn-outline-link-disabled:active, .ant-btn-outline-link.disabled:active, .ant-btn-outline-link[disabled]:active, .ant-btn-outline-link-disabled.active, .ant-btn-outline-link.disabled.active, .ant-btn-outline-link[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ant-btn-outline-link-disabled > a:only-child, .ant-btn-outline-link.disabled > a:only-child, .ant-btn-outline-link[disabled] > a:only-child, .ant-btn-outline-link-disabled:hover > a:only-child, .ant-btn-outline-link.disabled:hover > a:only-child, .ant-btn-outline-link[disabled]:hover > a:only-child, .ant-btn-outline-link-disabled:focus > a:only-child, .ant-btn-outline-link.disabled:focus > a:only-child, .ant-btn-outline-link[disabled]:focus > a:only-child, .ant-btn-outline-link-disabled:active > a:only-child, .ant-btn-outline-link.disabled:active > a:only-child, .ant-btn-outline-link[disabled]:active > a:only-child, .ant-btn-outline-link-disabled.active > a:only-child, .ant-btn-outline-link.disabled.active > a:only-child, .ant-btn-outline-link[disabled].active > a:only-child {
  color: currentColor;
}
.ant-btn-outline-link-disabled > a:only-child::after, .ant-btn-outline-link.disabled > a:only-child::after, .ant-btn-outline-link[disabled] > a:only-child::after, .ant-btn-outline-link-disabled:hover > a:only-child::after, .ant-btn-outline-link.disabled:hover > a:only-child::after, .ant-btn-outline-link[disabled]:hover > a:only-child::after, .ant-btn-outline-link-disabled:focus > a:only-child::after, .ant-btn-outline-link.disabled:focus > a:only-child::after, .ant-btn-outline-link[disabled]:focus > a:only-child::after, .ant-btn-outline-link-disabled:active > a:only-child::after, .ant-btn-outline-link.disabled:active > a:only-child::after, .ant-btn-outline-link[disabled]:active > a:only-child::after, .ant-btn-outline-link-disabled.active > a:only-child::after, .ant-btn-outline-link.disabled.active > a:only-child::after, .ant-btn-outline-link[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: "";
}

.ant-btn-group,
.ant-btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.ant-btn-group > .ant-btn,
.ant-btn-group-vertical > .ant-btn {
  position: relative;
  flex: 1 1 auto;
}
.ant-btn-group > .ant-btn:hover, .ant-btn-group > .ant-btn:focus, .ant-btn-group > .ant-btn:active, .ant-btn-group > .ant-btn.active,
.ant-btn-group-vertical > .ant-btn:hover,
.ant-btn-group-vertical > .ant-btn:focus,
.ant-btn-group-vertical > .ant-btn:active,
.ant-btn-group-vertical > .ant-btn.active {
  z-index: 1;
}

.ant-btn-xs, .ant-input-group-wrapper-xs > .ant-input-wrapper > .ant-input-group-addon > .control .ant-btn, .ant-btn-group-xs > .ant-btn,
.ant-btn-group-xs > span > .ant-btn {
  padding: 0px 7px;
  font-size: 10px;
  height: 16px;
}

.ant-btn-sm, .ant-input-group-wrapper-sm > .ant-input-wrapper > .ant-input-group-addon > .control .ant-btn {
  padding: 0px 9px;
  font-size: 12px;
  height: 24px;
}

.ant-btn-md, .ant-input-group-wrapper-md > .ant-input-wrapper > .ant-input-group-addon > .control .ant-btn, .ant-btn-group-md > .ant-btn,
.ant-btn-group-md > span > .ant-btn {
  padding: 4.5px 11px;
  font-size: 14px;
  height: 36px;
}

.ant-btn-lg, .ant-input-group-wrapper-lg > .ant-input-wrapper > .ant-input-group-addon > .control .ant-btn {
  padding: 6.5px 13px;
  font-size: 16px;
  height: 40px;
}

.ant-btn-xl, .ant-input-group-wrapper-xl > .ant-input-wrapper > .ant-input-group-addon > .control .ant-btn, .ant-btn-group-xl > .ant-btn,
.ant-btn-group-xl > span > .ant-btn {
  padding: 8.5px 15px;
  font-size: 18px;
  height: 48px;
}

.ant-card-group > .ant-card {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .ant-card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .ant-card-group > .ant-card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .ant-card-group > .ant-card + .ant-card {
    margin-left: 0;
    border-left: 0;
  }
}

.ant-card-deck .ant-card {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .ant-card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -4px;
    margin-left: -4px;
  }
  .ant-card-deck .ant-card {
    flex: 1 0 0%;
    margin-right: 4px;
    margin-bottom: 0;
    margin-left: 4px;
  }
}

.ant-card-head-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.ant-card-cover {
  display: block;
  width: 100%;
  margin-left: 0px;
}

.ant-card-link + .ant-card-link {
  margin-left: 1.25rem;
}

.ant-table-fixed-header thead tr th.ant-dropdown-table-fixed-header-visible {
  z-index: 2;
}

.ant-dropdown-menu-position-strategy {
  width: max-content;
  top: 0;
  left: 0;
}

.ant-dropdown-menu-position-strategy-absolute {
  position: absolute;
}

.ant-dropdown-menu-position-strategy-fixed {
  position: fixed;
}

.ant-dropdown-group {
  display: inline-flex;
  white-space: nowrap;
}
.ant-dropdown-group.ant-dropdown-disabled.b-is-autocomplete {
  background-color: var(--b-theme-light, #f5f5f5);
}

.ant-input-group-addon.ant-input-group-addon-dropdown {
  padding: 0;
  border: 0;
}

.ant-dropdown-group .ant-btn.ant-dropdown-trigger:not(.ant-btn-outline) {
  color: unset;
  border-color: unset;
  border: none;
}
.ant-dropdown-group > .ant-btn:not(:last-child):not(.ant-dropdown-trigger) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-dropdown-group > .ant-btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ant-dropdown-group.ant-dropdown-button.b-is-autocomplete {
  width: 100%;
}

.ant-dropdown:not(.ant-dropdown-hidden) .ant-dropdown-menu {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

.ant-dropdown-menu-header {
  display: block;
  padding: 7px 12px;
  margin-bottom: 0;
  font-size: 12px;
  color: #6c757d;
  white-space: nowrap;
}

.ant-dropdown-menu.ant-dropdown-menu-scrollable {
  max-height: var(--dropdown-list-menu-max-height, 200px);
  overflow-y: scroll;
}

.b-is-autocomplete .ant-dropdown-menu {
  max-height: var(--autocomplete-menu-max-height, 200px);
  overflow-y: scroll;
}
.b-is-autocomplete .ant-dropdown-menu .ant-dropdown-menu-item.focus {
  background-color: #f5f5f5;
}

.b-is-autocomplete.b-is-autocomplete-multipleselection {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  cursor: text;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
}
.b-is-autocomplete.b-is-autocomplete-multipleselection > input.ant-input {
  display: inline-block;
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  max-width: inherit;
  width: auto;
  flex-grow: 1;
}
.b-is-autocomplete.b-is-autocomplete-multipleselection > .ant-tag {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  line-height: 1.5715;
  flex-grow: initial;
}
.b-is-autocomplete.b-is-autocomplete-multipleselection.focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  border-color: #40a9ff;
}

.ant-dropdown > .ant-dropdown-menu-item {
  width: 100%;
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical:not(.dropup, .dropright, .dropleft) {
  position: unset;
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical:not(.dropup, .dropright, .dropleft) > .ant-dropdown-menu {
  transform: translate(0, -32px);
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical.dropup {
  position: unset;
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical.dropup > .ant-dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  /*margin-bottom: $dropdown-spacer;*/
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical.dropright {
  position: unset;
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical.dropright > .ant-dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  /*margin-left: $dropdown-spacer;*/
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical.dropleft {
  position: unset;
}
.ant-dropdown .ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-vertical.dropleft > .ant-dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  /*margin-right: $dropdown-spacer;*/
}

.ant-figure {
  display: inline-block;
  margin: 0 0 1rem;
}

.ant-figure-rounded {
  border-radius: 0.25rem;
}

.ant-figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.ant-figure-img-fluid {
  width: 100%;
  height: auto;
}

.ant-figure-caption {
  font-size: 90%;
  color: #6c757d;
}

.ant-figure-is-16x16 {
  height: 16px;
  width: 16px;
}

.ant-figure-is-24x24 {
  height: 24px;
  width: 24px;
}

.ant-figure-is-32x32 {
  height: 32px;
  width: 32px;
}

.ant-figure-is-48x48 {
  height: 48px;
  width: 48px;
}

.ant-figure-is-64x64 {
  height: 64px;
  width: 64px;
}

.ant-figure-is-96x96 {
  height: 96px;
  width: 96px;
}

.ant-figure-is-128x128 {
  height: 128px;
  width: 128px;
}

.ant-figure-is-256x256 {
  height: 256px;
  width: 256px;
}

.ant-figure-is-512x512 {
  height: 512px;
  width: 512px;
}

.ant-form-item-has-success .ant-input, .ant-form-item-has-success .ant-input-affix-wrapper, .ant-form-item-has-success .ant-input:hover, .ant-form-item-has-success .ant-input-affix-wrapper:hover {
  background-color: #fff;
  border-color: #52c41a;
}

.ant-checkbox-wrapper {
  cursor: default;
}
.ant-checkbox-wrapper-pointer {
  cursor: pointer;
}

.ant-input-group > .ant-input-group-addon:last-child > .ant-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-group > .ant-input-group-addon:first-child > .ant-btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ant-input-group > .ant-select-selection-search-input:first-child > .ant-select-selector {
  border-right: 0;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.ant-input-group > .ant-select-selection-search-input:nth-child(2) > .ant-select-selector {
  border-left: 0;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.ant-input-search-enter-button .ant-input-group-addon {
  padding: 0;
  border: 0;
}
.ant-input-search-enter-button .ant-input-group-addon:last-child .ant-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ant-input-search-enter-button .ant-input-group-addon:first-child .ant-btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.ant-row.ant-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.ant-row.ant-form-row > .ant-col,
.ant-row.ant-form-row > [class*=ant-col-] {
  padding-right: 5px;
  padding-left: 5px;
}
.ant-row.ant-form-row > .ant-col .ant-form-item-label,
.ant-row.ant-form-row > [class*=ant-col-] .ant-form-item-label {
  padding-right: 0;
  padding-left: 0;
}

.ant-form-item > .ant-col.ant-form-item-label {
  padding-right: 0;
  padding-left: 0;
}
.ant-form-item.ant-row > .ant-col + .ant-col {
  padding-left: 0;
}
.ant-form-item .ant-select {
  width: 100%;
}

.ant-input {
  height: 32px;
}

.ant-input-xs, .ant-input-group-wrapper-xs > .ant-input-wrapper .ant-input {
  padding: 0px 7px;
  font-size: 10px;
  height: 16px;
}

.ant-input-sm, .ant-input-group-wrapper-sm > .ant-input-wrapper .ant-input {
  padding: 0px 9px;
  font-size: 12px;
  height: 24px;
}

.ant-input-md, .ant-input-group-wrapper-md > .ant-input-wrapper .ant-input {
  padding: 4.5px 11px;
  font-size: 14px;
  height: 36px;
}

.ant-input-lg, .ant-input-group-wrapper-lg > .ant-input-wrapper .ant-input {
  padding: 6.5px 13px;
  font-size: 16px;
  height: 40px;
}

.ant-input-xl, .ant-input-group-wrapper-xl > .ant-input-wrapper .ant-input {
  padding: 8.5px 15px;
  font-size: 18px;
  height: 48px;
}

.ant-select-xs {
  font-size: 10px;
}

.ant-select-single.ant-select-xs:not(.ant-select-customize-input) .ant-select-selector {
  height: 16px;
}

.ant-select-single.ant-select-xs:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
.ant-select-single.ant-select-xs:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
  line-height: 14px;
}

.ant-select-single.ant-select-xs:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
  height: 16px;
}

.ant-select-md {
  font-size: 14px;
}

.ant-select-single.ant-select-md:not(.ant-select-customize-input) .ant-select-selector {
  height: 36px;
}

.ant-select-single.ant-select-md:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
.ant-select-single.ant-select-md:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
  line-height: 34px;
}

.ant-select-single.ant-select-md:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
  height: 36px;
}

.ant-select-xl {
  font-size: 18px;
}

.ant-select-single.ant-select-xl:not(.ant-select-customize-input) .ant-select-selector {
  height: 48px;
}

.ant-select-single.ant-select-xl:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-item,
.ant-select-single.ant-select-xl:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-placeholder {
  line-height: 45px;
}

.ant-select-single.ant-select-xl:not(.ant-select-customize-input):not(.ant-select-customize-input) .ant-select-selection-search-input {
  height: 48px;
}

.ant-checkbox-input.ant-checkbox-input-xs + .ant-checkbox-inner {
  width: 8px;
  height: 8px;
}

.ant-checkbox.ant-checkbox-checked > .ant-checkbox-input.ant-checkbox-input-xs + .ant-checkbox-inner::after {
  width: 2.6666666667px;
  height: 4.7058823529px;
}

.ant-checkbox-input.ant-checkbox-input-sm + .ant-checkbox-inner {
  width: 12px;
  height: 12px;
}

.ant-checkbox.ant-checkbox-checked > .ant-checkbox-input.ant-checkbox-input-sm + .ant-checkbox-inner::after {
  width: 4px;
  height: 7.0588235294px;
}

.ant-checkbox-input.ant-checkbox-input-md + .ant-checkbox-inner {
  width: 20px;
  height: 20px;
}

.ant-checkbox.ant-checkbox-checked > .ant-checkbox-input.ant-checkbox-input-md + .ant-checkbox-inner::after {
  width: 6.6666666667px;
  height: 11.7647058824px;
}

.ant-checkbox-input.ant-checkbox-input-lg + .ant-checkbox-inner {
  width: 24px;
  height: 24px;
}

.ant-checkbox.ant-checkbox-checked > .ant-checkbox-input.ant-checkbox-input-lg + .ant-checkbox-inner::after {
  width: 8px;
  height: 14.1176470588px;
}

.ant-checkbox-input.ant-checkbox-input-xl + .ant-checkbox-inner {
  width: 28px;
  height: 28px;
}

.ant-checkbox.ant-checkbox-checked > .ant-checkbox-input.ant-checkbox-input-xl + .ant-checkbox-inner::after {
  width: 9.3333333333px;
  height: 16.4705882353px;
}

.ant-radio-group.ant-radio-group-vertical .ant-radio-wrapper {
  display: block;
  height: 32px;
  line-height: 32px;
}
.ant-radio-group.ant-radio-group-vertical .ant-radio-button-wrapper {
  display: block;
}

.ant-radio > .ant-radio-input.ant-radio-input-xs + .ant-radio-inner {
  width: 8px;
  height: 8px;
}
.ant-radio.ant-radio-checked > .ant-radio-input.ant-radio-input-xs + .ant-radio-inner::after {
  width: 4px;
  height: 4px;
  top: 1px;
  left: 1px;
}

.ant-radio > .ant-radio-input.ant-radio-input-sm + .ant-radio-inner {
  width: 12px;
  height: 12px;
}
.ant-radio.ant-radio-checked > .ant-radio-input.ant-radio-input-sm + .ant-radio-inner::after {
  width: 6px;
  height: 6px;
  top: 2px;
  left: 2px;
}

.ant-radio > .ant-radio-input.ant-radio-input-md + .ant-radio-inner {
  width: 20px;
  height: 20px;
}
.ant-radio.ant-radio-checked > .ant-radio-input.ant-radio-input-md + .ant-radio-inner::after {
  width: 10px;
  height: 10px;
  top: 4px;
  left: 4px;
}

.ant-radio > .ant-radio-input.ant-radio-input-lg + .ant-radio-inner {
  width: 24px;
  height: 24px;
}
.ant-radio.ant-radio-checked > .ant-radio-input.ant-radio-input-lg + .ant-radio-inner::after {
  width: 12px;
  height: 12px;
  top: 5px;
  left: 5px;
}

.ant-radio > .ant-radio-input.ant-radio-input-xl + .ant-radio-inner {
  width: 28px;
  height: 28px;
}
.ant-radio.ant-radio-checked > .ant-radio-input.ant-radio-input-xl + .ant-radio-inner::after {
  width: 14px;
  height: 14px;
  top: 6px;
  left: 6px;
}

textarea.ant-input.ant-input-static {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.ant-focus-trap {
  display: contents;
}

.ant-form-item-label-required:after {
  content: " *";
  color: var(--b-theme-danger, #ff4d4f);
}

.ant-hero {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 768px) {
  .ant-hero .ant-hero {
    padding: 4rem 2rem;
  }
}
.ant-hero p:last-child {
  margin-bottom: 0;
}
.ant-hero h1 {
  font-weight: 300;
}
.ant-hero .ant-container {
  max-width: 40rem;
}
.ant-hero.ant-hero-primary {
  background-color: #1890ff;
  color: #fff;
}
.ant-hero.ant-hero-secondary {
  background-color: #6c757d;
  color: #fff;
}
.ant-hero.ant-hero-success {
  background-color: #35c613;
  color: #fff;
}
.ant-hero.ant-hero-info {
  background-color: #60b6f4;
  color: #212529;
}
.ant-hero.ant-hero-warning {
  background-color: #f7c12a;
  color: #212529;
}
.ant-hero.ant-hero-danger {
  background-color: #ff4d4f;
  color: #fff;
}
.ant-hero.ant-hero-light {
  background-color: #fafafa;
  color: #212529;
}
.ant-hero.ant-hero-dark {
  background-color: #343a40;
  color: #fff;
}
.ant-hero.ant-hero-link {
  background-color: #3273dc;
  color: #fff;
}

.ant-hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
}

.b-layout-header {
  line-height: 64px;
}

.b-layout-header {
  z-index: 1;
}

a.ant-link-unstyled {
  text-decoration: none;
  color: inherit;
}
a.ant-link-disabled[aria-disabled=true] {
  pointer-events: none;
  opacity: 0.65;
}

.ant-link-unstyled a {
  text-decoration: none;
  color: inherit;
}

.ant-link-stretched::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.ant-list.ant-list-bordered.ant-list-flush {
  border-right: 0;
  border-left: 0;
}

.ant-list-item-actionable {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.ant-list-item-actionable:hover, .ant-list-item-actionable:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.ant-list-item-actionable:active {
  color: #212529;
  background-color: #e9ecef;
}

li.ant-list-item-actionable {
  cursor: pointer;
}

.ant-list .ant-list-items > .ant-list-item.ant-list-item-primary {
  color: #1890ff;
  background-color: #bee0ff;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-primary.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-primary.ant-list-item-actionable:focus {
  color: #1890ff;
  background-color: #a5d4ff;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-primary.ant-list-item-actionable.active {
  color: #fff;
  background-color: #1890ff;
  border-color: #1890ff;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-secondary {
  color: #6c757d;
  background-color: #d6d8db;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-secondary.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-secondary.ant-list-item-actionable:focus {
  color: #6c757d;
  background-color: #c8cbcf;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-secondary.ant-list-item-actionable.active {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-success {
  color: #35c613;
  background-color: #c6efbd;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-success.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-success.ant-list-item-actionable:focus {
  color: #35c613;
  background-color: #b4eaa8;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-success.ant-list-item-actionable.active {
  color: #fff;
  background-color: #35c613;
  border-color: #35c613;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-info {
  color: #60b6f4;
  background-color: #d2ebfc;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-info.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-info.ant-list-item-actionable:focus {
  color: #60b6f4;
  background-color: #bae0fa;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-info.ant-list-item-actionable.active {
  color: #fff;
  background-color: #60b6f4;
  border-color: #60b6f4;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-warning {
  color: #f7c12a;
  background-color: #fdeec3;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-warning.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-warning.ant-list-item-actionable:focus {
  color: #f7c12a;
  background-color: #fce7aa;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-warning.ant-list-item-actionable.active {
  color: #fff;
  background-color: #f7c12a;
  border-color: #f7c12a;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-danger {
  color: #ff4d4f;
  background-color: #ffcdce;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-danger.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-danger.ant-list-item-actionable:focus {
  color: #ff4d4f;
  background-color: #ffb4b5;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-danger.ant-list-item-actionable.active {
  color: #fff;
  background-color: #ff4d4f;
  border-color: #ff4d4f;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-light {
  color: #fafafa;
  background-color: #fefefe;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-light.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-light.ant-list-item-actionable:focus {
  color: #fafafa;
  background-color: #f1f1f1;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-light.ant-list-item-actionable.active {
  color: #fff;
  background-color: #fafafa;
  border-color: #fafafa;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-dark {
  color: #343a40;
  background-color: #c6c8ca;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-dark.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-dark.ant-list-item-actionable:focus {
  color: #343a40;
  background-color: #b9bbbe;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-dark.ant-list-item-actionable.active {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-link {
  color: #3273dc;
  background-color: #c6d8f5;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-link.ant-list-item-actionable:hover, .ant-list .ant-list-items > .ant-list-item.ant-list-item-link.ant-list-item-actionable:focus {
  color: #3273dc;
  background-color: #b0c9f1;
}
.ant-list .ant-list-items > .ant-list-item.ant-list-item-link.ant-list-item-actionable.active {
  color: #fff;
  background-color: #3273dc;
  border-color: #3273dc;
}

.ant-list-scrollable {
  overflow-y: scroll;
}

.ant-modal {
  width: 520px;
}
@media (min-width: 576px) {
  .ant-modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .ant-modal-lg {
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .ant-modal-xl {
    width: 1140px;
  }
}

.ant-modal-root[style*="display: block;"] > .ant-modal-wrap.fade,
.ant-modal-root.fade .ant-modal-mask {
  animation-duration: var(--modal-animation-duration, 300ms);
  animation-fill-mode: both;
  animation-name: fadeIn;
}

.ant-modal .ant-modal-content.ant-modal-content-scrollable {
  max-height: calc(100% - 3.5rem);
}
.ant-modal .ant-modal-content.ant-modal-content-scrollable .ant-modal-body {
  max-height: calc(100vh - 13.5rem);
  overflow-y: auto;
}
.ant-modal.ant-modal-fullscreen {
  height: 100vh;
  width: 100vw;
  margin: 0;
  top: 0;
}
.ant-modal .ant-modal-content.ant-modal-content-fullscreen {
  height: 100vh;
  width: 100vw;
  margin: 0;
  top: 0;
}
.ant-modal .ant-modal-content.ant-modal-content-fullscreen .ant-modal-body {
  height: calc(100vh - 110px);
}

.ant-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.ant-drawer-mask {
  position: absolute;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}
.ant-drawer-content-wrapper {
  position: absolute;
  z-index: 1000;
  transition: all 0.3s;
}
.ant-drawer-content {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  pointer-events: auto;
}
.ant-drawer-wrapper-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.ant-drawer-header {
  display: flex;
  flex: 0;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.ant-drawer-header-title {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  min-height: 0;
}
.ant-drawer-body {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 24px;
  overflow: auto;
}

.ant-drawer-content-wrapper-hidden {
  display: none;
}

.ant-drawer-top > .ant-drawer-content-wrapper {
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.0784313725), 0 9px 28px rgba(0, 0, 0, 0.0509803922), 0 12px 48px 16px rgba(0, 0, 0, 0.031372549);
}

.ant-drawer-bottom > .ant-drawer-content-wrapper {
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 -6px 16px -8px rgba(0, 0, 0, 0.0784313725), 0 -9px 28px rgba(0, 0, 0, 0.0509803922), 0 -12px 48px 16px rgba(0, 0, 0, 0.031372549);
}

.ant-drawer-left > .ant-drawer-content-wrapper {
  top: 0;
  bottom: 0;
  left: 0;
  box-shadow: 6px 0 16px -8px rgba(0, 0, 0, 0.0784313725), 9px 0 28px rgba(0, 0, 0, 0.0509803922), 12px 0 48px 16px rgba(0, 0, 0, 0.031372549);
}

.ant-drawer-right > .ant-drawer-content-wrapper {
  top: 0;
  right: 0;
  bottom: 0;
  box-shadow: -6px 0 16px -8px rgba(0, 0, 0, 0.0784313725), -9px 0 28px rgba(0, 0, 0, 0.0509803922), -12px 0 48px 16px rgba(0, 0, 0, 0.031372549);
}

.ant-close {
  display: inline-block;
  margin-right: 12px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-weight: 700;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  text-decoration: none;
  background: 0 0;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
  text-rendering: auto;
}

.anticon {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
}

.ant-drawer.ant-showing,
.ant-drawer.ant-showing:not(.hiding) {
  transform: none;
}

.ant-drawer.ant-showing,
.ant-drawer.ant-hiding,
.ant-drawer.ant-drawer-open {
  visibility: visible;
}

.ant-pagination.ant-pagination-xs .ant-pagination-total-text, .ant-pagination.ant-pagination-xs .ant-pagination-simple-pager {
  height: 16px;
  line-height: 16px;
}
.ant-pagination.ant-pagination-xs .ant-pagination-item {
  min-width: 16px;
  height: 16px;
  /*margin: 0;*/
  line-height: 14px;
}
.ant-pagination.ant-pagination-xs .ant-pagination-prev, .ant-pagination.ant-pagination-xs .ant-pagination-next {
  min-width: 16px;
  height: 16px;
  /*margin: 0;*/
  line-height: 16px;
}
.ant-pagination.ant-pagination-xs .ant-pagination-prev .ant-pagination-item-link::after, .ant-pagination.ant-pagination-xs .ant-pagination-next .ant-pagination-item-link::after {
  height: 16px;
  line-height: 16px;
}
.ant-pagination.ant-pagination-xs .ant-pagination-jump-prev, .ant-pagination.ant-pagination-xs .ant-pagination-jump-next {
  height: 16px;
  margin-right: 0;
  line-height: 16px;
}

.ant-pagination.ant-pagination-sm .ant-pagination-total-text, .ant-pagination.ant-pagination-sm .ant-pagination-simple-pager {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.ant-pagination-sm .ant-pagination-item {
  min-width: 24px;
  height: 24px;
  /*margin: 0;*/
  line-height: 22px;
}
.ant-pagination.ant-pagination-sm .ant-pagination-prev, .ant-pagination.ant-pagination-sm .ant-pagination-next {
  min-width: 24px;
  height: 24px;
  /*margin: 0;*/
  line-height: 24px;
}
.ant-pagination.ant-pagination-sm .ant-pagination-prev .ant-pagination-item-link::after, .ant-pagination.ant-pagination-sm .ant-pagination-next .ant-pagination-item-link::after {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.ant-pagination-sm .ant-pagination-jump-prev, .ant-pagination.ant-pagination-sm .ant-pagination-jump-next {
  height: 24px;
  margin-right: 0;
  line-height: 24px;
}

.ant-pagination.ant-pagination-md .ant-pagination-total-text, .ant-pagination.ant-pagination-md .ant-pagination-simple-pager {
  height: 36px;
  line-height: 36px;
}
.ant-pagination.ant-pagination-md .ant-pagination-item {
  min-width: 36px;
  height: 36px;
  /*margin: 0;*/
  line-height: 34px;
}
.ant-pagination.ant-pagination-md .ant-pagination-prev, .ant-pagination.ant-pagination-md .ant-pagination-next {
  min-width: 36px;
  height: 36px;
  /*margin: 0;*/
  line-height: 36px;
}
.ant-pagination.ant-pagination-md .ant-pagination-prev .ant-pagination-item-link::after, .ant-pagination.ant-pagination-md .ant-pagination-next .ant-pagination-item-link::after {
  height: 36px;
  line-height: 36px;
}
.ant-pagination.ant-pagination-md .ant-pagination-jump-prev, .ant-pagination.ant-pagination-md .ant-pagination-jump-next {
  height: 36px;
  margin-right: 0;
  line-height: 36px;
}

.ant-pagination.ant-pagination-lg .ant-pagination-total-text, .ant-pagination.ant-pagination-lg .ant-pagination-simple-pager {
  height: 40px;
  line-height: 40px;
}
.ant-pagination.ant-pagination-lg .ant-pagination-item {
  min-width: 40px;
  height: 40px;
  /*margin: 0;*/
  line-height: 38px;
}
.ant-pagination.ant-pagination-lg .ant-pagination-prev, .ant-pagination.ant-pagination-lg .ant-pagination-next {
  min-width: 40px;
  height: 40px;
  /*margin: 0;*/
  line-height: 40px;
}
.ant-pagination.ant-pagination-lg .ant-pagination-prev .ant-pagination-item-link::after, .ant-pagination.ant-pagination-lg .ant-pagination-next .ant-pagination-item-link::after {
  height: 40px;
  line-height: 40px;
}
.ant-pagination.ant-pagination-lg .ant-pagination-jump-prev, .ant-pagination.ant-pagination-lg .ant-pagination-jump-next {
  height: 40px;
  margin-right: 0;
  line-height: 40px;
}

.ant-pagination.ant-pagination-xl .ant-pagination-total-text, .ant-pagination.ant-pagination-xl .ant-pagination-simple-pager {
  height: 48px;
  line-height: 48px;
}
.ant-pagination.ant-pagination-xl .ant-pagination-item {
  min-width: 48px;
  height: 48px;
  /*margin: 0;*/
  line-height: 46px;
}
.ant-pagination.ant-pagination-xl .ant-pagination-prev, .ant-pagination.ant-pagination-xl .ant-pagination-next {
  min-width: 48px;
  height: 48px;
  /*margin: 0;*/
  line-height: 48px;
}
.ant-pagination.ant-pagination-xl .ant-pagination-prev .ant-pagination-item-link::after, .ant-pagination.ant-pagination-xl .ant-pagination-next .ant-pagination-item-link::after {
  height: 48px;
  line-height: 48px;
}
.ant-pagination.ant-pagination-xl .ant-pagination-jump-prev, .ant-pagination.ant-pagination-xl .ant-pagination-jump-next {
  height: 48px;
  margin-right: 0;
  line-height: 48px;
}

.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg {
  height: 1rem;
}
.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg:not(:first-child) {
  border-radius: 0;
}
.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg-xs {
  height: 0.25rem;
}
.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg-sm {
  height: 0.5rem;
}
.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg-md {
  height: 1.25rem;
}
.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg-lg {
  height: 1.5rem;
}
.ant-progress > .ant-progress-outer > .ant-progress-inner .ant-progress-bg-xl {
  height: 2rem;
}

.ant-progress-bar-striped {
  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: 1rem 1rem;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.ant-progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

.ant-progress-inner {
  display: inline-flex;
}

.ant-progress-indeterminate {
  position: relative;
}
.ant-progress-indeterminate .ant-progress-inner .ant-progress-bar-indeterminate {
  width: 100%;
  background-color: inherit !important;
}
.ant-progress-indeterminate .ant-progress-inner .ant-progress-bar-indeterminate:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #1890ff !important;
  animation: animation-indeterminate 2s ease infinite;
}
.ant-progress-indeterminate .ant-progress-inner .ant-progress-bar-indeterminate:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #1890ff !important;
  animation: animation-indeterminate-short 2s ease 0.5s infinite;
}

@keyframes animation-indeterminate {
  0% {
    left: -5%;
    width: 5%;
  }
  100% {
    left: 130%;
    width: 100%;
  }
}
@keyframes animation-indeterminate-short {
  0% {
    left: -80%;
    width: 80%;
  }
  100% {
    left: 110%;
    width: 10%;
  }
}
.b-ant-progress-text {
  text-align: center;
  display: flex;
  color: #fff;
  justify-content: center;
  flex-direction: column;
}

.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-primary {
  background-color: #1890ff;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-secondary {
  background-color: #6c757d;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-success {
  background-color: #35c613;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-info {
  background-color: #60b6f4;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-warning {
  background-color: #f7c12a;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-danger {
  background-color: #ff4d4f;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-light {
  background-color: #fafafa;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-dark {
  background-color: #343a40;
}
.b-page-progress .b-page-progress-indicator.b-page-progress-indicator-link {
  background-color: #3273dc;
}

.ant-rate:not(.ant-rate-disabled):not(.ant-rate-readonly):hover .ant-rate-star {
  cursor: pointer;
}
.ant-rate.ant-rate-disabled {
  opacity: 0.65;
}
.ant-rate .ant-rate-star {
  cursor: default;
}
.ant-rate .ant-rate-star.ant-rate-star-primary {
  color: #1890ff;
}
.ant-rate .ant-rate-star.ant-rate-star-secondary {
  color: #6c757d;
}
.ant-rate .ant-rate-star.ant-rate-star-success {
  color: #35c613;
}
.ant-rate .ant-rate-star.ant-rate-star-info {
  color: #60b6f4;
}
.ant-rate .ant-rate-star.ant-rate-star-warning {
  color: #f7c12a;
}
.ant-rate .ant-rate-star.ant-rate-star-danger {
  color: #ff4d4f;
}
.ant-rate .ant-rate-star.ant-rate-star-light {
  color: #fafafa;
}
.ant-rate .ant-rate-star.ant-rate-star-dark {
  color: #343a40;
}
.ant-rate .ant-rate-star.ant-rate-star-link {
  color: #3273dc;
}
.ant-rate .ant-rate-star.ant-rate-star-focused {
  opacity: 0.7;
}

.ant-steps-item.ant-steps-item-active.ant-steps-item-process.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
}
.ant-steps-item.ant-steps-item-active.ant-steps-item-process.ant-steps-item-finish .ant-steps-item-icon .ant-steps-icon {
  color: #fff;
}

.ant-steps-item-primary.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #1890ff;
}
.ant-steps-item-primary.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-primary.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #1890ff;
}
.ant-steps-item-primary.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-primary.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-primary.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #1890ff;
}
.ant-steps-item-primary .ant-steps-item-icon {
  border-color: #1890ff;
}
.ant-steps-item-primary .ant-steps-item-icon .ant-steps-icon {
  color: #1890ff;
}
.ant-steps-item-primary .ant-steps-item-content .ant-steps-item-title {
  color: #1890ff;
}

.ant-steps-item-secondary.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #6c757d;
}
.ant-steps-item-secondary.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #6c757d;
  color: #fff;
}
.ant-steps-item-secondary.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #6c757d;
}
.ant-steps-item-secondary.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-secondary.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-secondary.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #6c757d;
}
.ant-steps-item-secondary .ant-steps-item-icon {
  border-color: #6c757d;
}
.ant-steps-item-secondary .ant-steps-item-icon .ant-steps-icon {
  color: #6c757d;
}
.ant-steps-item-secondary .ant-steps-item-content .ant-steps-item-title {
  color: #6c757d;
}

.ant-steps-item-success.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #35c613;
}
.ant-steps-item-success.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #35c613;
  color: #fff;
}
.ant-steps-item-success.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #35c613;
}
.ant-steps-item-success.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-success.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-success.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #35c613;
}
.ant-steps-item-success .ant-steps-item-icon {
  border-color: #35c613;
}
.ant-steps-item-success .ant-steps-item-icon .ant-steps-icon {
  color: #35c613;
}
.ant-steps-item-success .ant-steps-item-content .ant-steps-item-title {
  color: #35c613;
}

.ant-steps-item-info.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #60b6f4;
}
.ant-steps-item-info.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #60b6f4;
  color: #fff;
}
.ant-steps-item-info.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #60b6f4;
}
.ant-steps-item-info.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-info.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-info.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #60b6f4;
}
.ant-steps-item-info .ant-steps-item-icon {
  border-color: #60b6f4;
}
.ant-steps-item-info .ant-steps-item-icon .ant-steps-icon {
  color: #60b6f4;
}
.ant-steps-item-info .ant-steps-item-content .ant-steps-item-title {
  color: #60b6f4;
}

.ant-steps-item-warning.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #f7c12a;
}
.ant-steps-item-warning.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #f7c12a;
  color: #fff;
}
.ant-steps-item-warning.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #f7c12a;
}
.ant-steps-item-warning.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-warning.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-warning.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #f7c12a;
}
.ant-steps-item-warning .ant-steps-item-icon {
  border-color: #f7c12a;
}
.ant-steps-item-warning .ant-steps-item-icon .ant-steps-icon {
  color: #f7c12a;
}
.ant-steps-item-warning .ant-steps-item-content .ant-steps-item-title {
  color: #f7c12a;
}

.ant-steps-item-danger.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #ff4d4f;
}
.ant-steps-item-danger.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #ff4d4f;
  color: #fff;
}
.ant-steps-item-danger.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #ff4d4f;
}
.ant-steps-item-danger.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-danger.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-danger.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #ff4d4f;
}
.ant-steps-item-danger .ant-steps-item-icon {
  border-color: #ff4d4f;
}
.ant-steps-item-danger .ant-steps-item-icon .ant-steps-icon {
  color: #ff4d4f;
}
.ant-steps-item-danger .ant-steps-item-content .ant-steps-item-title {
  color: #ff4d4f;
}

.ant-steps-item-light.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #fafafa;
}
.ant-steps-item-light.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #fafafa;
  color: #fff;
}
.ant-steps-item-light.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #fafafa;
}
.ant-steps-item-light.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-light.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-light.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #fafafa;
}
.ant-steps-item-light .ant-steps-item-icon {
  border-color: #fafafa;
}
.ant-steps-item-light .ant-steps-item-icon .ant-steps-icon {
  color: #fafafa;
}
.ant-steps-item-light .ant-steps-item-content .ant-steps-item-title {
  color: #fafafa;
}

.ant-steps-item-dark.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #343a40;
}
.ant-steps-item-dark.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #343a40;
  color: #fff;
}
.ant-steps-item-dark.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #343a40;
}
.ant-steps-item-dark.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-dark.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-dark.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #343a40;
}
.ant-steps-item-dark .ant-steps-item-icon {
  border-color: #343a40;
}
.ant-steps-item-dark .ant-steps-item-icon .ant-steps-icon {
  color: #343a40;
}
.ant-steps-item-dark .ant-steps-item-content .ant-steps-item-title {
  color: #343a40;
}

.ant-steps-item-link.ant-steps-item-finish .ant-steps-item-content .ant-steps-item-title {
  color: #3273dc;
}
.ant-steps-item-link.ant-steps-item-wait .ant-steps-item-icon {
  border-color: #3273dc;
  color: #fff;
}
.ant-steps-item-link.ant-steps-item-wait .ant-steps-item-content .ant-steps-item-title {
  color: #3273dc;
}
.ant-steps-item-link.ant-steps-item-active.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-link.ant-steps-item-active.ant-steps-item-process .ant-steps-icon {
  border-color: #1890ff;
  color: #fff;
}
.ant-steps-item-link.ant-steps-item-active.ant-steps-item-process .ant-steps-item-content .ant-steps-item-title {
  color: #3273dc;
}
.ant-steps-item-link .ant-steps-item-icon {
  border-color: #3273dc;
}
.ant-steps-item-link .ant-steps-item-icon .ant-steps-icon {
  color: #3273dc;
}
.ant-steps-item-link .ant-steps-item-content .ant-steps-item-title {
  color: #3273dc;
}

.ant-steps-content {
  margin: 1rem 0;
}
.ant-steps-content > .ant-steps-panel {
  display: none;
}
.ant-steps-content > .ant-steps-panel-active {
  display: block;
}

.ant-switch.ant-switch-primary.ant-switch-checked {
  background-color: #1890ff;
}
.ant-switch.ant-switch-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 144, 255, 0.25);
}
.ant-switch:disabled.ant-switch-primary.ant-switch-checked {
  background-color: rgba(24, 144, 255, 0.5);
}

.ant-switch.ant-switch-secondary.ant-switch-checked {
  background-color: #6c757d;
}
.ant-switch.ant-switch-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.25);
}
.ant-switch:disabled.ant-switch-secondary.ant-switch-checked {
  background-color: rgba(108, 117, 125, 0.5);
}

.ant-switch.ant-switch-success.ant-switch-checked {
  background-color: #35c613;
}
.ant-switch.ant-switch-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(53, 198, 19, 0.25);
}
.ant-switch:disabled.ant-switch-success.ant-switch-checked {
  background-color: rgba(53, 198, 19, 0.5);
}

.ant-switch.ant-switch-info.ant-switch-checked {
  background-color: #60b6f4;
}
.ant-switch.ant-switch-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(96, 182, 244, 0.25);
}
.ant-switch:disabled.ant-switch-info.ant-switch-checked {
  background-color: rgba(96, 182, 244, 0.5);
}

.ant-switch.ant-switch-warning.ant-switch-checked {
  background-color: #f7c12a;
}
.ant-switch.ant-switch-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 193, 42, 0.25);
}
.ant-switch:disabled.ant-switch-warning.ant-switch-checked {
  background-color: rgba(247, 193, 42, 0.5);
}

.ant-switch.ant-switch-danger.ant-switch-checked {
  background-color: #ff4d4f;
}
.ant-switch.ant-switch-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 77, 79, 0.25);
}
.ant-switch:disabled.ant-switch-danger.ant-switch-checked {
  background-color: rgba(255, 77, 79, 0.5);
}

.ant-switch.ant-switch-light.ant-switch-checked {
  background-color: #fafafa;
}
.ant-switch.ant-switch-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(250, 250, 250, 0.25);
}
.ant-switch:disabled.ant-switch-light.ant-switch-checked {
  background-color: rgba(250, 250, 250, 0.5);
}

.ant-switch.ant-switch-dark.ant-switch-checked {
  background-color: #343a40;
}
.ant-switch.ant-switch-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.25);
}
.ant-switch:disabled.ant-switch-dark.ant-switch-checked {
  background-color: rgba(52, 58, 64, 0.5);
}

.ant-switch.ant-switch-link.ant-switch-checked {
  background-color: #3273dc;
}
.ant-switch.ant-switch-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(50, 115, 220, 0.25);
}
.ant-switch:disabled.ant-switch-link.ant-switch-checked {
  background-color: rgba(50, 115, 220, 0.5);
}

.ant-switch-xs {
  min-width: 22px;
  height: 12px;
  line-height: 10px;
}
.ant-switch-xs .ant-switch-inner {
  margin-right: 3px;
  margin-left: 18px;
  font-size: 10px;
}
.ant-switch-xs .ant-switch-handle {
  width: 8px;
  height: 8px;
}
.ant-switch-xs::after {
  width: 8px;
  height: 8px;
}
.ant-switch-xs:active::before, .ant-switch-xs:active::after {
  width: 16px;
}
.ant-switch-xs.ant-switch-loading-icon {
  width: 8px;
  height: 8px;
}
.ant-switch-xs.ant-switch-checked .ant-switch-inner {
  margin-right: 18px;
  margin-left: 3px;
}
.ant-switch-xs.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -9px;
}
.ant-switch-xs.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 12px);
}
.ant-switch-xs.ant-switch-loading .ant-switch-loading-icon {
  font-weight: bold;
  transform: scale(0.66667);
}
.ant-switch-sm {
  min-width: 28px;
  height: 16px;
  line-height: 14px;
}
.ant-switch-sm .ant-switch-inner {
  margin-right: 3px;
  margin-left: 18px;
  font-size: 12px;
}
.ant-switch-sm .ant-switch-handle {
  width: 12px;
  height: 12px;
}
.ant-switch-sm::after {
  width: 12px;
  height: 12px;
}
.ant-switch-sm:active::before, .ant-switch-sm:active::after {
  width: 16px;
}
.ant-switch-sm.ant-switch-loading-icon {
  width: 12px;
  height: 12px;
}
.ant-switch-sm.ant-switch-checked .ant-switch-inner {
  margin-right: 18px;
  margin-left: 3px;
}
.ant-switch-sm.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -13px;
}
.ant-switch-sm.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 16px);
}
.ant-switch-sm.ant-switch-loading .ant-switch-loading-icon {
  font-weight: bold;
  transform: scale(0.66667);
}
.ant-switch-md {
  min-width: 90px;
  height: 24px;
  line-height: 22px;
}
.ant-switch-md .ant-switch-inner {
  margin-right: 3px;
  margin-left: 18px;
  font-size: 12px;
}
.ant-switch-md .ant-switch-handle {
  width: 20px;
  height: 20px;
}
.ant-switch-md::after {
  width: 20px;
  height: 20px;
}
.ant-switch-md:active::before, .ant-switch-md:active::after {
  width: 16px;
}
.ant-switch-md.ant-switch-loading-icon {
  width: 20px;
  height: 20px;
}
.ant-switch-md.ant-switch-checked .ant-switch-inner {
  margin-right: 18px;
  margin-left: 3px;
}
.ant-switch-md.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -21px;
}
.ant-switch-md.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 24px);
}
.ant-switch-md.ant-switch-loading .ant-switch-loading-icon {
  font-weight: bold;
  transform: scale(0.66667);
}
.ant-switch-lg {
  min-width: 90px;
  height: 28px;
  line-height: 26px;
}
.ant-switch-lg .ant-switch-inner {
  margin-right: 3px;
  margin-left: 18px;
  font-size: 12px;
}
.ant-switch-lg .ant-switch-handle {
  width: 24px;
  height: 24px;
}
.ant-switch-lg::after {
  width: 24px;
  height: 24px;
}
.ant-switch-lg:active::before, .ant-switch-lg:active::after {
  width: 16px;
}
.ant-switch-lg.ant-switch-loading-icon {
  width: 24px;
  height: 24px;
}
.ant-switch-lg.ant-switch-checked .ant-switch-inner {
  margin-right: 18px;
  margin-left: 3px;
}
.ant-switch-lg.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -25px;
}
.ant-switch-lg.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 28px);
}
.ant-switch-lg.ant-switch-loading .ant-switch-loading-icon {
  font-weight: bold;
  transform: scale(0.66667);
}
.ant-switch-xl {
  min-width: 160px;
  height: 32px;
  line-height: 30px;
}
.ant-switch-xl .ant-switch-inner {
  margin-right: 3px;
  margin-left: 18px;
  font-size: 12px;
}
.ant-switch-xl .ant-switch-handle {
  width: 28px;
  height: 28px;
}
.ant-switch-xl::after {
  width: 28px;
  height: 28px;
}
.ant-switch-xl:active::before, .ant-switch-xl:active::after {
  width: 16px;
}
.ant-switch-xl.ant-switch-loading-icon {
  width: 28px;
  height: 28px;
}
.ant-switch-xl.ant-switch-checked .ant-switch-inner {
  margin-right: 18px;
  margin-left: 3px;
}
.ant-switch-xl.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -29px;
}
.ant-switch-xl.ant-switch-checked .ant-switch-handle {
  left: calc(100% - 32px);
}
.ant-switch-xl.ant-switch-loading .ant-switch-loading-icon {
  font-weight: bold;
  transform: scale(0.66667);
}
.ant-switch .ant-switch-handle {
  border-radius: 1000px;
}

.b-table.ant-table table {
  position: relative;
}
.b-table.ant-table table .b-table-resizer {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  cursor: col-resize;
  user-select: none;
  z-index: 1;
}
.b-table.ant-table table .b-table-resizer:hover, .b-table.ant-table table .b-table-resizing {
  cursor: col-resize !important;
  border-right: 2px solid var(--b-theme-primary, blue);
}
.b-table.ant-table table .b-table-resizing {
  cursor: col-resize !important;
}

.ant-table-primary,
.ant-table-primary > th,
.ant-table-primary > td {
  background-color: #bee0ff;
}
.ant-table-primary th,
.ant-table-primary td,
.ant-table-primary thead th,
.ant-table-primary tbody + tbody {
  border-color: #87c5ff;
}
.ant-table-secondary,
.ant-table-secondary > th,
.ant-table-secondary > td {
  background-color: #d6d8db;
}
.ant-table-secondary th,
.ant-table-secondary td,
.ant-table-secondary thead th,
.ant-table-secondary tbody + tbody {
  border-color: #b3b7bb;
}
.ant-table-success,
.ant-table-success > th,
.ant-table-success > td {
  background-color: #c6efbd;
}
.ant-table-success th,
.ant-table-success td,
.ant-table-success thead th,
.ant-table-success tbody + tbody {
  border-color: #96e184;
}
.ant-table-info,
.ant-table-info > th,
.ant-table-info > td {
  background-color: #d2ebfc;
}
.ant-table-info th,
.ant-table-info td,
.ant-table-info thead th,
.ant-table-info tbody + tbody {
  border-color: #acd9f9;
}
.ant-table-warning,
.ant-table-warning > th,
.ant-table-warning > td {
  background-color: #fdeec3;
}
.ant-table-warning th,
.ant-table-warning td,
.ant-table-warning thead th,
.ant-table-warning tbody + tbody {
  border-color: #fbdf90;
}
.ant-table-danger,
.ant-table-danger > th,
.ant-table-danger > td {
  background-color: #ffcdce;
}
.ant-table-danger th,
.ant-table-danger td,
.ant-table-danger thead th,
.ant-table-danger tbody + tbody {
  border-color: #ffa2a3;
}
.ant-table-light,
.ant-table-light > th,
.ant-table-light > td {
  background-color: #fefefe;
}
.ant-table-light th,
.ant-table-light td,
.ant-table-light thead th,
.ant-table-light tbody + tbody {
  border-color: #fcfcfc;
}
.ant-table-dark,
.ant-table-dark > th,
.ant-table-dark > td {
  background-color: #c6c8ca;
}
.ant-table-dark th,
.ant-table-dark td,
.ant-table-dark thead th,
.ant-table-dark tbody + tbody {
  border-color: #95999c;
}
.ant-table-link,
.ant-table-link > th,
.ant-table-link > td {
  background-color: #c6d8f5;
}
.ant-table-link th,
.ant-table-link td,
.ant-table-link thead th,
.ant-table-link tbody + tbody {
  border-color: #94b6ed;
}

.ant-table-striped tbody tr:nth-of-type(odd) {
  background-color: #fbfbfb;
}
.ant-table-striped thead {
  background-color: #f1f1f1;
}

.ant-table-borderless .ant-table-tbody tr,
.ant-table-borderless .ant-table-tbody th,
.ant-table-borderless .ant-table-tbody td,
.ant-table-borderless .ant-table-tbody thead th,
.ant-table-borderless .ant-table-tbody tbody + tbody {
  border: 0;
}

.ant-table tbody > tr.ant-table-row:hover > td {
  background: unset;
}
.ant-table.ant-table-hover tbody > tr.ant-table-row:hover > td {
  background: #f5f5f5;
}
.ant-table tbody tr.ant-table-group {
  cursor: pointer;
  background-color: var(--b-theme-light, #f5f5f5);
  font-weight: 600;
}

.ant-table .ant-table-thead-dark th {
  color: var(--b-table-thead-dark-color, #fff);
  background-color: var(--b-table-thead-dark-background, #343a40);
  border-color: var(--b-table-thead-dark-border, #343a40);
}
.ant-table .ant-table-thead-light th {
  color: var(--b-table-thead-light-color, #495057);
  background-color: var(--b-table-thead-light-background, #e9ecef);
  border-color: var(--b-table-thead-light-border, #e9ecef);
}

.ant-table-row-header {
  font-weight: bold;
}

.ant-table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ant-table-responsive > .ant-table-bordered {
  border: 0;
}

.ant-table-fixed-header .ant-table-container {
  overflow-y: auto;
}
.ant-table-fixed-header .table {
  border-collapse: separate;
  border-spacing: 0;
}
.ant-table-fixed-header thead:not(.ant-table-thead-theme) th {
  background: white;
}
.ant-table-fixed-header thead tr th {
  border-top: none;
  position: sticky;
  z-index: 1;
}
.ant-table-fixed-header thead tr:nth-child(1) th {
  top: 0;
}

tr.ant-table-row.ant-table-row-selectable:focus[tabindex="0"] {
  outline: none;
}

.ant-table-fixed-columns .ant-table-container .ant-table-content {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
}
.ant-table-fixed-columns .ant-table-container .ant-table-content table {
  table-layout: fixed !important;
  overflow-x: auto;
  white-space: nowrap;
  border-collapse: separate;
  border-spacing: 0;
  border: 0;
}
.ant-table-fixed-columns .ant-table-container .ant-table-content table .ant-header-cell-fixed-start,
.ant-table-fixed-columns .ant-table-container .ant-table-content table .ant-row-header-fixed-start,
.ant-table-fixed-columns .ant-table-container .ant-table-content table .ant-row-cell-fixed-start {
  position: sticky;
  border-left: none;
  z-index: 11;
  background-color: white;
  border-inline-start-width: 0;
  left: 0;
}
.ant-table-fixed-columns .ant-table-container .ant-table-content table .ant-header-cell-fixed-end,
.ant-table-fixed-columns .ant-table-container .ant-table-content table .ant-row-header-fixed-end,
.ant-table-fixed-columns .ant-table-container .ant-table-content table .ant-row-cell-fixed-end {
  position: sticky;
  border-left: none;
  z-index: 11;
  background-color: white;
  border-inline-start-width: 0;
  right: 0;
}

td:focus {
  outline: -webkit-focus-ring-color auto 1px;
}

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  .ant-table-mobile {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  .ant-table-mobile [data-caption]:before {
    content: attr(data-caption);
  }
  .ant-table-mobile thead, .ant-table-mobile tbody, .ant-table-mobile th, .ant-table-mobile td, .ant-table-mobile tr {
    display: block;
  }
  .ant-table-mobile thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .ant-table-mobile td, .ant-table-mobile th {
    /* Behave  like a "row" */
    position: relative;
    padding-top: 1.5rem !important;
    width: 100%;
  }
  .ant-table-mobile td:before, .ant-table-mobile th:before {
    position: absolute;
    top: 0;
    white-space: nowrap;
    font-weight: bold;
  }
  .ant-table-mobile:not(.ant-table-borderless) tr {
    border-bottom: 1px solid;
  }
}
.ant-tabs.ant-tabs-fill .ant-tabs-tab {
  flex-grow: 1;
  margin-right: 0px;
  width: 100%;
  text-align: center;
}

.ant-tabs.ant-tabs-justified .ant-tabs-tab {
  flex-basis: 0;
  flex-grow: 1;
  margin-right: 0px;
  width: 100%;
  text-align: center;
}

.ant-tabs-pills .ant-tabs-bar.ant-tabs-top-bar .ant-tabs-nav > div > .ant-tabs-tab,
.ant-tabs-pills .ant-tabs-bar.ant-tabs-bottom-bar .ant-tabs-nav > div > .ant-tabs-tab {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ant-tabs.ant-tabs-top .ant-tabs-bar.ant-tabs-top-bar .ant-tabs-nav-scroll {
  overflow: hidden;
  overflow-x: auto;
}

.ant-notification-top {
  inset: 24px auto auto 50%;
  transform: translateX(-50%);
}
.ant-notification-topLeft {
  left: 0px;
  top: 24px;
  bottom: auto;
}
.ant-notification-topRight {
  right: 0px;
  top: 24px;
  bottom: auto;
}
.ant-notification-bottom {
  inset: auto auto 24px 50%;
  transform: translateX(-50%);
}
.ant-notification-bottomLeft {
  left: 0px;
  top: auto;
  bottom: 24px;
}
.ant-notification-bottomRight {
  right: 0px;
  top: auto;
  bottom: 24px;
}

.snackbar-stack {
  z-index: 1009 !important;
}

.snackbar {
  z-index: 1010 !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
.ant-vertical-align-baseline {
  vertical-align: baseline !important;
}

.ant-vertical-align-top {
  vertical-align: top !important;
}

.ant-vertical-align-middle {
  vertical-align: middle !important;
}

.ant-vertical-align-bottom {
  vertical-align: bottom !important;
}

.ant-vertical-align-text-bottom {
  vertical-align: text-bottom !important;
}

.ant-vertical-align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #1890ff !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #35c613 !important;
}

.bg-info {
  background-color: #60b6f4 !important;
}

.bg-warning {
  background-color: #f7c12a !important;
}

.bg-danger {
  background-color: #ff4d4f !important;
}

.bg-light {
  background-color: #fafafa !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-link {
  background-color: #3273dc !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.ant-border {
  border: 1px solid #adb5bd !important;
}

.ant-border-top {
  border-top: 1px solid #adb5bd !important;
}

.ant-border-right {
  border-right: 1px solid #adb5bd !important;
}

.ant-border-bottom {
  border-bottom: 1px solid #adb5bd !important;
}

.ant-border-left {
  border-left: 1px solid #adb5bd !important;
}

.ant-border-0 {
  border: 0 !important;
}

.ant-border-top-0 {
  border-top: 0 !important;
}

.ant-border-right-0 {
  border-right: 0 !important;
}

.ant-border-bottom-0 {
  border-bottom: 0 !important;
}

.ant-border-left-0 {
  border-left: 0 !important;
}

.ant-border-primary {
  border-color: #1890ff !important;
}

.ant-border-secondary {
  border-color: #6c757d !important;
}

.ant-border-success {
  border-color: #35c613 !important;
}

.ant-border-info {
  border-color: #60b6f4 !important;
}

.ant-border-warning {
  border-color: #f7c12a !important;
}

.ant-border-danger {
  border-color: #ff4d4f !important;
}

.ant-border-light {
  border-color: #fafafa !important;
}

.ant-border-dark {
  border-color: #343a40 !important;
}

.ant-border-link {
  border-color: #3273dc !important;
}

.ant-border-white {
  border-color: white !important;
}

.ant-rounded {
  border-radius: 4px !important;
}

.ant-rounded-top {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

.ant-rounded-right {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.ant-rounded-bottom {
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.ant-rounded-left {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.ant-rounded-circle {
  border-radius: 50% !important;
}

.ant-rounded-pill {
  border-radius: 50rem !important;
}

.ant-rounded-0 {
  border-radius: 0 !important;
}

.ant-border-1 {
  border: 1px solid #adb5bd !important;
}

.ant-border-primary-1 {
  border: 1px solid #1890ff !important;
}

.ant-border-secondary-1 {
  border: 1px solid #6c757d !important;
}

.ant-border-success-1 {
  border: 1px solid #35c613 !important;
}

.ant-border-info-1 {
  border: 1px solid #60b6f4 !important;
}

.ant-border-warning-1 {
  border: 1px solid #f7c12a !important;
}

.ant-border-danger-1 {
  border: 1px solid #ff4d4f !important;
}

.ant-border-light-1 {
  border: 1px solid #fafafa !important;
}

.ant-border-dark-1 {
  border: 1px solid #343a40 !important;
}

.ant-border-link-1 {
  border: 1px solid #3273dc !important;
}

.ant-border-top-1 {
  border-top: 1px solid #adb5bd !important;
}

.ant-border-primary-top-1 {
  border-top: 1px solid #1890ff !important;
}

.ant-border-secondary-top-1 {
  border-top: 1px solid #6c757d !important;
}

.ant-border-success-top-1 {
  border-top: 1px solid #35c613 !important;
}

.ant-border-info-top-1 {
  border-top: 1px solid #60b6f4 !important;
}

.ant-border-warning-top-1 {
  border-top: 1px solid #f7c12a !important;
}

.ant-border-danger-top-1 {
  border-top: 1px solid #ff4d4f !important;
}

.ant-border-light-top-1 {
  border-top: 1px solid #fafafa !important;
}

.ant-border-dark-top-1 {
  border-top: 1px solid #343a40 !important;
}

.ant-border-link-top-1 {
  border-top: 1px solid #3273dc !important;
}

.ant-border-right-1 {
  border-right: 1px solid #adb5bd !important;
}

.ant-border-primary-right-1 {
  border-right: 1px solid #1890ff !important;
}

.ant-border-secondary-right-1 {
  border-right: 1px solid #6c757d !important;
}

.ant-border-success-right-1 {
  border-right: 1px solid #35c613 !important;
}

.ant-border-info-right-1 {
  border-right: 1px solid #60b6f4 !important;
}

.ant-border-warning-right-1 {
  border-right: 1px solid #f7c12a !important;
}

.ant-border-danger-right-1 {
  border-right: 1px solid #ff4d4f !important;
}

.ant-border-light-right-1 {
  border-right: 1px solid #fafafa !important;
}

.ant-border-dark-right-1 {
  border-right: 1px solid #343a40 !important;
}

.ant-border-link-right-1 {
  border-right: 1px solid #3273dc !important;
}

.ant-border-bottom-1 {
  border-bottom: 1px solid #adb5bd !important;
}

.ant-border-primary-bottom-1 {
  border-bottom: 1px solid #1890ff !important;
}

.ant-border-secondary-bottom-1 {
  border-bottom: 1px solid #6c757d !important;
}

.ant-border-success-bottom-1 {
  border-bottom: 1px solid #35c613 !important;
}

.ant-border-info-bottom-1 {
  border-bottom: 1px solid #60b6f4 !important;
}

.ant-border-warning-bottom-1 {
  border-bottom: 1px solid #f7c12a !important;
}

.ant-border-danger-bottom-1 {
  border-bottom: 1px solid #ff4d4f !important;
}

.ant-border-light-bottom-1 {
  border-bottom: 1px solid #fafafa !important;
}

.ant-border-dark-bottom-1 {
  border-bottom: 1px solid #343a40 !important;
}

.ant-border-link-bottom-1 {
  border-bottom: 1px solid #3273dc !important;
}

.ant-border-left-1 {
  border-left: 1px solid #adb5bd !important;
}

.ant-border-primary-left-1 {
  border-left: 1px solid #1890ff !important;
}

.ant-border-secondary-left-1 {
  border-left: 1px solid #6c757d !important;
}

.ant-border-success-left-1 {
  border-left: 1px solid #35c613 !important;
}

.ant-border-info-left-1 {
  border-left: 1px solid #60b6f4 !important;
}

.ant-border-warning-left-1 {
  border-left: 1px solid #f7c12a !important;
}

.ant-border-danger-left-1 {
  border-left: 1px solid #ff4d4f !important;
}

.ant-border-light-left-1 {
  border-left: 1px solid #fafafa !important;
}

.ant-border-dark-left-1 {
  border-left: 1px solid #343a40 !important;
}

.ant-border-link-left-1 {
  border-left: 1px solid #3273dc !important;
}

.ant-border-2 {
  border: 2px solid #adb5bd !important;
}

.ant-border-primary-2 {
  border: 2px solid #1890ff !important;
}

.ant-border-secondary-2 {
  border: 2px solid #6c757d !important;
}

.ant-border-success-2 {
  border: 2px solid #35c613 !important;
}

.ant-border-info-2 {
  border: 2px solid #60b6f4 !important;
}

.ant-border-warning-2 {
  border: 2px solid #f7c12a !important;
}

.ant-border-danger-2 {
  border: 2px solid #ff4d4f !important;
}

.ant-border-light-2 {
  border: 2px solid #fafafa !important;
}

.ant-border-dark-2 {
  border: 2px solid #343a40 !important;
}

.ant-border-link-2 {
  border: 2px solid #3273dc !important;
}

.ant-border-top-2 {
  border-top: 2px solid #adb5bd !important;
}

.ant-border-primary-top-2 {
  border-top: 2px solid #1890ff !important;
}

.ant-border-secondary-top-2 {
  border-top: 2px solid #6c757d !important;
}

.ant-border-success-top-2 {
  border-top: 2px solid #35c613 !important;
}

.ant-border-info-top-2 {
  border-top: 2px solid #60b6f4 !important;
}

.ant-border-warning-top-2 {
  border-top: 2px solid #f7c12a !important;
}

.ant-border-danger-top-2 {
  border-top: 2px solid #ff4d4f !important;
}

.ant-border-light-top-2 {
  border-top: 2px solid #fafafa !important;
}

.ant-border-dark-top-2 {
  border-top: 2px solid #343a40 !important;
}

.ant-border-link-top-2 {
  border-top: 2px solid #3273dc !important;
}

.ant-border-right-2 {
  border-right: 2px solid #adb5bd !important;
}

.ant-border-primary-right-2 {
  border-right: 2px solid #1890ff !important;
}

.ant-border-secondary-right-2 {
  border-right: 2px solid #6c757d !important;
}

.ant-border-success-right-2 {
  border-right: 2px solid #35c613 !important;
}

.ant-border-info-right-2 {
  border-right: 2px solid #60b6f4 !important;
}

.ant-border-warning-right-2 {
  border-right: 2px solid #f7c12a !important;
}

.ant-border-danger-right-2 {
  border-right: 2px solid #ff4d4f !important;
}

.ant-border-light-right-2 {
  border-right: 2px solid #fafafa !important;
}

.ant-border-dark-right-2 {
  border-right: 2px solid #343a40 !important;
}

.ant-border-link-right-2 {
  border-right: 2px solid #3273dc !important;
}

.ant-border-bottom-2 {
  border-bottom: 2px solid #adb5bd !important;
}

.ant-border-primary-bottom-2 {
  border-bottom: 2px solid #1890ff !important;
}

.ant-border-secondary-bottom-2 {
  border-bottom: 2px solid #6c757d !important;
}

.ant-border-success-bottom-2 {
  border-bottom: 2px solid #35c613 !important;
}

.ant-border-info-bottom-2 {
  border-bottom: 2px solid #60b6f4 !important;
}

.ant-border-warning-bottom-2 {
  border-bottom: 2px solid #f7c12a !important;
}

.ant-border-danger-bottom-2 {
  border-bottom: 2px solid #ff4d4f !important;
}

.ant-border-light-bottom-2 {
  border-bottom: 2px solid #fafafa !important;
}

.ant-border-dark-bottom-2 {
  border-bottom: 2px solid #343a40 !important;
}

.ant-border-link-bottom-2 {
  border-bottom: 2px solid #3273dc !important;
}

.ant-border-left-2 {
  border-left: 2px solid #adb5bd !important;
}

.ant-border-primary-left-2 {
  border-left: 2px solid #1890ff !important;
}

.ant-border-secondary-left-2 {
  border-left: 2px solid #6c757d !important;
}

.ant-border-success-left-2 {
  border-left: 2px solid #35c613 !important;
}

.ant-border-info-left-2 {
  border-left: 2px solid #60b6f4 !important;
}

.ant-border-warning-left-2 {
  border-left: 2px solid #f7c12a !important;
}

.ant-border-danger-left-2 {
  border-left: 2px solid #ff4d4f !important;
}

.ant-border-light-left-2 {
  border-left: 2px solid #fafafa !important;
}

.ant-border-dark-left-2 {
  border-left: 2px solid #343a40 !important;
}

.ant-border-link-left-2 {
  border-left: 2px solid #3273dc !important;
}

.ant-border-3 {
  border: 3px solid #adb5bd !important;
}

.ant-border-primary-3 {
  border: 3px solid #1890ff !important;
}

.ant-border-secondary-3 {
  border: 3px solid #6c757d !important;
}

.ant-border-success-3 {
  border: 3px solid #35c613 !important;
}

.ant-border-info-3 {
  border: 3px solid #60b6f4 !important;
}

.ant-border-warning-3 {
  border: 3px solid #f7c12a !important;
}

.ant-border-danger-3 {
  border: 3px solid #ff4d4f !important;
}

.ant-border-light-3 {
  border: 3px solid #fafafa !important;
}

.ant-border-dark-3 {
  border: 3px solid #343a40 !important;
}

.ant-border-link-3 {
  border: 3px solid #3273dc !important;
}

.ant-border-top-3 {
  border-top: 3px solid #adb5bd !important;
}

.ant-border-primary-top-3 {
  border-top: 3px solid #1890ff !important;
}

.ant-border-secondary-top-3 {
  border-top: 3px solid #6c757d !important;
}

.ant-border-success-top-3 {
  border-top: 3px solid #35c613 !important;
}

.ant-border-info-top-3 {
  border-top: 3px solid #60b6f4 !important;
}

.ant-border-warning-top-3 {
  border-top: 3px solid #f7c12a !important;
}

.ant-border-danger-top-3 {
  border-top: 3px solid #ff4d4f !important;
}

.ant-border-light-top-3 {
  border-top: 3px solid #fafafa !important;
}

.ant-border-dark-top-3 {
  border-top: 3px solid #343a40 !important;
}

.ant-border-link-top-3 {
  border-top: 3px solid #3273dc !important;
}

.ant-border-right-3 {
  border-right: 3px solid #adb5bd !important;
}

.ant-border-primary-right-3 {
  border-right: 3px solid #1890ff !important;
}

.ant-border-secondary-right-3 {
  border-right: 3px solid #6c757d !important;
}

.ant-border-success-right-3 {
  border-right: 3px solid #35c613 !important;
}

.ant-border-info-right-3 {
  border-right: 3px solid #60b6f4 !important;
}

.ant-border-warning-right-3 {
  border-right: 3px solid #f7c12a !important;
}

.ant-border-danger-right-3 {
  border-right: 3px solid #ff4d4f !important;
}

.ant-border-light-right-3 {
  border-right: 3px solid #fafafa !important;
}

.ant-border-dark-right-3 {
  border-right: 3px solid #343a40 !important;
}

.ant-border-link-right-3 {
  border-right: 3px solid #3273dc !important;
}

.ant-border-bottom-3 {
  border-bottom: 3px solid #adb5bd !important;
}

.ant-border-primary-bottom-3 {
  border-bottom: 3px solid #1890ff !important;
}

.ant-border-secondary-bottom-3 {
  border-bottom: 3px solid #6c757d !important;
}

.ant-border-success-bottom-3 {
  border-bottom: 3px solid #35c613 !important;
}

.ant-border-info-bottom-3 {
  border-bottom: 3px solid #60b6f4 !important;
}

.ant-border-warning-bottom-3 {
  border-bottom: 3px solid #f7c12a !important;
}

.ant-border-danger-bottom-3 {
  border-bottom: 3px solid #ff4d4f !important;
}

.ant-border-light-bottom-3 {
  border-bottom: 3px solid #fafafa !important;
}

.ant-border-dark-bottom-3 {
  border-bottom: 3px solid #343a40 !important;
}

.ant-border-link-bottom-3 {
  border-bottom: 3px solid #3273dc !important;
}

.ant-border-left-3 {
  border-left: 3px solid #adb5bd !important;
}

.ant-border-primary-left-3 {
  border-left: 3px solid #1890ff !important;
}

.ant-border-secondary-left-3 {
  border-left: 3px solid #6c757d !important;
}

.ant-border-success-left-3 {
  border-left: 3px solid #35c613 !important;
}

.ant-border-info-left-3 {
  border-left: 3px solid #60b6f4 !important;
}

.ant-border-warning-left-3 {
  border-left: 3px solid #f7c12a !important;
}

.ant-border-danger-left-3 {
  border-left: 3px solid #ff4d4f !important;
}

.ant-border-light-left-3 {
  border-left: 3px solid #fafafa !important;
}

.ant-border-dark-left-3 {
  border-left: 3px solid #343a40 !important;
}

.ant-border-link-left-3 {
  border-left: 3px solid #3273dc !important;
}

.ant-border-4 {
  border: 4px solid #adb5bd !important;
}

.ant-border-primary-4 {
  border: 4px solid #1890ff !important;
}

.ant-border-secondary-4 {
  border: 4px solid #6c757d !important;
}

.ant-border-success-4 {
  border: 4px solid #35c613 !important;
}

.ant-border-info-4 {
  border: 4px solid #60b6f4 !important;
}

.ant-border-warning-4 {
  border: 4px solid #f7c12a !important;
}

.ant-border-danger-4 {
  border: 4px solid #ff4d4f !important;
}

.ant-border-light-4 {
  border: 4px solid #fafafa !important;
}

.ant-border-dark-4 {
  border: 4px solid #343a40 !important;
}

.ant-border-link-4 {
  border: 4px solid #3273dc !important;
}

.ant-border-top-4 {
  border-top: 4px solid #adb5bd !important;
}

.ant-border-primary-top-4 {
  border-top: 4px solid #1890ff !important;
}

.ant-border-secondary-top-4 {
  border-top: 4px solid #6c757d !important;
}

.ant-border-success-top-4 {
  border-top: 4px solid #35c613 !important;
}

.ant-border-info-top-4 {
  border-top: 4px solid #60b6f4 !important;
}

.ant-border-warning-top-4 {
  border-top: 4px solid #f7c12a !important;
}

.ant-border-danger-top-4 {
  border-top: 4px solid #ff4d4f !important;
}

.ant-border-light-top-4 {
  border-top: 4px solid #fafafa !important;
}

.ant-border-dark-top-4 {
  border-top: 4px solid #343a40 !important;
}

.ant-border-link-top-4 {
  border-top: 4px solid #3273dc !important;
}

.ant-border-right-4 {
  border-right: 4px solid #adb5bd !important;
}

.ant-border-primary-right-4 {
  border-right: 4px solid #1890ff !important;
}

.ant-border-secondary-right-4 {
  border-right: 4px solid #6c757d !important;
}

.ant-border-success-right-4 {
  border-right: 4px solid #35c613 !important;
}

.ant-border-info-right-4 {
  border-right: 4px solid #60b6f4 !important;
}

.ant-border-warning-right-4 {
  border-right: 4px solid #f7c12a !important;
}

.ant-border-danger-right-4 {
  border-right: 4px solid #ff4d4f !important;
}

.ant-border-light-right-4 {
  border-right: 4px solid #fafafa !important;
}

.ant-border-dark-right-4 {
  border-right: 4px solid #343a40 !important;
}

.ant-border-link-right-4 {
  border-right: 4px solid #3273dc !important;
}

.ant-border-bottom-4 {
  border-bottom: 4px solid #adb5bd !important;
}

.ant-border-primary-bottom-4 {
  border-bottom: 4px solid #1890ff !important;
}

.ant-border-secondary-bottom-4 {
  border-bottom: 4px solid #6c757d !important;
}

.ant-border-success-bottom-4 {
  border-bottom: 4px solid #35c613 !important;
}

.ant-border-info-bottom-4 {
  border-bottom: 4px solid #60b6f4 !important;
}

.ant-border-warning-bottom-4 {
  border-bottom: 4px solid #f7c12a !important;
}

.ant-border-danger-bottom-4 {
  border-bottom: 4px solid #ff4d4f !important;
}

.ant-border-light-bottom-4 {
  border-bottom: 4px solid #fafafa !important;
}

.ant-border-dark-bottom-4 {
  border-bottom: 4px solid #343a40 !important;
}

.ant-border-link-bottom-4 {
  border-bottom: 4px solid #3273dc !important;
}

.ant-border-left-4 {
  border-left: 4px solid #adb5bd !important;
}

.ant-border-primary-left-4 {
  border-left: 4px solid #1890ff !important;
}

.ant-border-secondary-left-4 {
  border-left: 4px solid #6c757d !important;
}

.ant-border-success-left-4 {
  border-left: 4px solid #35c613 !important;
}

.ant-border-info-left-4 {
  border-left: 4px solid #60b6f4 !important;
}

.ant-border-warning-left-4 {
  border-left: 4px solid #f7c12a !important;
}

.ant-border-danger-left-4 {
  border-left: 4px solid #ff4d4f !important;
}

.ant-border-light-left-4 {
  border-left: 4px solid #fafafa !important;
}

.ant-border-dark-left-4 {
  border-left: 4px solid #343a40 !important;
}

.ant-border-link-left-4 {
  border-left: 4px solid #3273dc !important;
}

.ant-border-5 {
  border: 5px solid #adb5bd !important;
}

.ant-border-primary-5 {
  border: 5px solid #1890ff !important;
}

.ant-border-secondary-5 {
  border: 5px solid #6c757d !important;
}

.ant-border-success-5 {
  border: 5px solid #35c613 !important;
}

.ant-border-info-5 {
  border: 5px solid #60b6f4 !important;
}

.ant-border-warning-5 {
  border: 5px solid #f7c12a !important;
}

.ant-border-danger-5 {
  border: 5px solid #ff4d4f !important;
}

.ant-border-light-5 {
  border: 5px solid #fafafa !important;
}

.ant-border-dark-5 {
  border: 5px solid #343a40 !important;
}

.ant-border-link-5 {
  border: 5px solid #3273dc !important;
}

.ant-border-top-5 {
  border-top: 5px solid #adb5bd !important;
}

.ant-border-primary-top-5 {
  border-top: 5px solid #1890ff !important;
}

.ant-border-secondary-top-5 {
  border-top: 5px solid #6c757d !important;
}

.ant-border-success-top-5 {
  border-top: 5px solid #35c613 !important;
}

.ant-border-info-top-5 {
  border-top: 5px solid #60b6f4 !important;
}

.ant-border-warning-top-5 {
  border-top: 5px solid #f7c12a !important;
}

.ant-border-danger-top-5 {
  border-top: 5px solid #ff4d4f !important;
}

.ant-border-light-top-5 {
  border-top: 5px solid #fafafa !important;
}

.ant-border-dark-top-5 {
  border-top: 5px solid #343a40 !important;
}

.ant-border-link-top-5 {
  border-top: 5px solid #3273dc !important;
}

.ant-border-right-5 {
  border-right: 5px solid #adb5bd !important;
}

.ant-border-primary-right-5 {
  border-right: 5px solid #1890ff !important;
}

.ant-border-secondary-right-5 {
  border-right: 5px solid #6c757d !important;
}

.ant-border-success-right-5 {
  border-right: 5px solid #35c613 !important;
}

.ant-border-info-right-5 {
  border-right: 5px solid #60b6f4 !important;
}

.ant-border-warning-right-5 {
  border-right: 5px solid #f7c12a !important;
}

.ant-border-danger-right-5 {
  border-right: 5px solid #ff4d4f !important;
}

.ant-border-light-right-5 {
  border-right: 5px solid #fafafa !important;
}

.ant-border-dark-right-5 {
  border-right: 5px solid #343a40 !important;
}

.ant-border-link-right-5 {
  border-right: 5px solid #3273dc !important;
}

.ant-border-bottom-5 {
  border-bottom: 5px solid #adb5bd !important;
}

.ant-border-primary-bottom-5 {
  border-bottom: 5px solid #1890ff !important;
}

.ant-border-secondary-bottom-5 {
  border-bottom: 5px solid #6c757d !important;
}

.ant-border-success-bottom-5 {
  border-bottom: 5px solid #35c613 !important;
}

.ant-border-info-bottom-5 {
  border-bottom: 5px solid #60b6f4 !important;
}

.ant-border-warning-bottom-5 {
  border-bottom: 5px solid #f7c12a !important;
}

.ant-border-danger-bottom-5 {
  border-bottom: 5px solid #ff4d4f !important;
}

.ant-border-light-bottom-5 {
  border-bottom: 5px solid #fafafa !important;
}

.ant-border-dark-bottom-5 {
  border-bottom: 5px solid #343a40 !important;
}

.ant-border-link-bottom-5 {
  border-bottom: 5px solid #3273dc !important;
}

.ant-border-left-5 {
  border-left: 5px solid #adb5bd !important;
}

.ant-border-primary-left-5 {
  border-left: 5px solid #1890ff !important;
}

.ant-border-secondary-left-5 {
  border-left: 5px solid #6c757d !important;
}

.ant-border-success-left-5 {
  border-left: 5px solid #35c613 !important;
}

.ant-border-info-left-5 {
  border-left: 5px solid #60b6f4 !important;
}

.ant-border-warning-left-5 {
  border-left: 5px solid #f7c12a !important;
}

.ant-border-danger-left-5 {
  border-left: 5px solid #ff4d4f !important;
}

.ant-border-light-left-5 {
  border-left: 5px solid #fafafa !important;
}

.ant-border-dark-left-5 {
  border-left: 5px solid #343a40 !important;
}

.ant-border-link-left-5 {
  border-left: 5px solid #3273dc !important;
}

.ant-cursor-pointer {
  cursor: pointer;
}

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

.ant-display-inline {
  display: inline !important;
}

.ant-display-inline-block {
  display: inline-block !important;
}

.ant-display-block {
  display: block !important;
}

.ant-display-table {
  display: table !important;
}

.ant-display-table-row {
  display: table-row !important;
}

.ant-display-table-cell {
  display: table-cell !important;
}

.ant-display-flex {
  display: flex !important;
}

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

.ant-display-table {
  display: table !important;
}

.ant-display-table-row {
  display: table-row !important;
}

.ant-display-table-cell {
  display: table-cell !important;
}

.ant-flex-row {
  flex-direction: row !important;
}

.ant-flex-column {
  flex-direction: column !important;
}

.ant-flex-row-reverse {
  flex-direction: row-reverse !important;
}

.ant-flex-column-reverse {
  flex-direction: column-reverse !important;
}

.ant-flex-direction-row {
  flex-direction: row !important;
}

.ant-flex-direction-column {
  flex-direction: column !important;
}

.ant-flex-direction-row-reverse {
  flex-direction: row-reverse !important;
}

.ant-flex-direction-column-reverse {
  flex-direction: column-reverse !important;
}

.ant-flex-wrap-wrap {
  flex-wrap: wrap !important;
}

.ant-flex-wrap-nowrap {
  flex-wrap: nowrap !important;
}

.ant-flex-wrap-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.ant-flex-fill {
  flex: 1 1 auto !important;
}

.ant-flex-grow-0 {
  flex-grow: 0 !important;
}

.ant-flex-grow-1 {
  flex-grow: 1 !important;
}

.ant-flex-shrink-0 {
  flex-shrink: 0 !important;
}

.ant-flex-shrink-1 {
  flex-shrink: 1 !important;
}

.ant-justify-content-flex-start {
  justify-content: flex-start !important;
}

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

.ant-justify-content-center {
  justify-content: center !important;
}

.ant-justify-content-space-between {
  justify-content: space-between !important;
}

.ant-justify-content-space-around {
  justify-content: space-around !important;
}

.ant-align-items-flex-start {
  align-items: flex-start !important;
}

.ant-align-items-flex-end {
  align-items: flex-end !important;
}

.ant-align-items-center {
  align-items: center !important;
}

.ant-align-items-baseline {
  align-items: baseline !important;
}

.ant-align-items-stretch {
  align-items: stretch !important;
}

.ant-align-self-auto {
  align-self: auto !important;
}

.ant-align-self-flex-start {
  align-self: flex-start !important;
}

.ant-align-self-flex-end {
  align-self: flex-end !important;
}

.ant-align-self-center {
  align-self: center !important;
}

.ant-align-self-baseline {
  align-self: baseline !important;
}

.ant-align-self-stretch {
  align-self: stretch !important;
}

.ant-align-content-flex-start {
  align-content: flex-start !important;
}

.ant-align-content-flex-end {
  align-content: flex-end !important;
}

.ant-align-content-center {
  align-content: center !important;
}

.ant-align-content-space-between {
  align-content: space-between !important;
}

.ant-align-content-space-around {
  align-content: space-around !important;
}

.ant-align-content-stretch {
  align-content: stretch !important;
}

.ant-flex-order-0 {
  order: 0;
}

.ant-flex-order-1 {
  order: 1;
}

.ant-flex-order-2 {
  order: 2;
}

.ant-flex-order-3 {
  order: 3;
}

.ant-flex-order-4 {
  order: 4;
}

.ant-flex-order-5 {
  order: 5;
}

.ant-flex-order-6 {
  order: 6;
}

.ant-flex-order-7 {
  order: 7;
}

.ant-flex-order-8 {
  order: 8;
}

.ant-flex-order-9 {
  order: 9;
}

.ant-flex-order-10 {
  order: 10;
}

.ant-flex-order-11 {
  order: 11;
}

.ant-flex-order-12 {
  order: 12;
}

@media (min-width: 576px) {
  .ant-flex-direction-xs-row {
    flex-direction: row !important;
  }
  .ant-flex-direction-xs-column {
    flex-direction: column !important;
  }
  .ant-flex-direction-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-direction-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
  .ant-flex-wrap-xs-wrap {
    flex-wrap: wrap !important;
  }
  .ant-flex-wrap-xs-nowrap {
    flex-wrap: nowrap !important;
  }
  .ant-flex-wrap-xs-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .ant-flex-xs-fill {
    flex: 1 1 auto !important;
  }
  .ant-flex-xs-grow-0 {
    flex-grow: 0 !important;
  }
  .ant-flex-xs-grow-1 {
    flex-grow: 1 !important;
  }
  .ant-flex-xs-shrink-0 {
    flex-shrink: 0 !important;
  }
  .ant-flex-xs-shrink-1 {
    flex-shrink: 1 !important;
  }
  .ant-justify-content-xs-flex-start {
    justify-content: flex-start !important;
  }
  .ant-justify-content-xs-flex-end {
    justify-content: flex-end !important;
  }
  .ant-justify-content-xs-center {
    justify-content: center !important;
  }
  .ant-justify-content-xs-space-between {
    justify-content: space-between !important;
  }
  .ant-justify-content-xs-space-around {
    justify-content: space-around !important;
  }
  .ant-align-items-xs-flex-start {
    align-items: flex-start !important;
  }
  .ant-align-items-xs-flex-end {
    align-items: flex-end !important;
  }
  .ant-align-items-xs-center {
    align-items: center !important;
  }
  .ant-align-items-xs-baseline {
    align-items: baseline !important;
  }
  .ant-align-items-xs-stretch {
    align-items: stretch !important;
  }
  .ant-align-self-xs-auto {
    align-self: auto !important;
  }
  .ant-align-self-xs-flex-start {
    align-self: flex-start !important;
  }
  .ant-align-self-xs-flex-end {
    align-self: flex-end !important;
  }
  .ant-align-self-xs-center {
    align-self: center !important;
  }
  .ant-align-self-xs-baseline {
    align-self: baseline !important;
  }
  .ant-align-self-xs-stretch {
    align-self: stretch !important;
  }
  .ant-align-content-xs-flex-start {
    align-content: flex-start !important;
  }
  .ant-align-content-xs-flex-end {
    align-content: flex-end !important;
  }
  .ant-align-content-xs-center {
    align-content: center !important;
  }
  .ant-align-content-xs-space-between {
    align-content: space-between !important;
  }
  .ant-align-content-xs-space-around {
    align-content: space-around !important;
  }
  .ant-align-content-xs-stretch {
    align-content: stretch !important;
  }
  .ant-flex-order-xs-0 {
    order: 0;
  }
  .ant-flex-order-xs-1 {
    order: 1;
  }
  .ant-flex-order-xs-2 {
    order: 2;
  }
  .ant-flex-order-xs-3 {
    order: 3;
  }
  .ant-flex-order-xs-4 {
    order: 4;
  }
  .ant-flex-order-xs-5 {
    order: 5;
  }
  .ant-flex-order-xs-6 {
    order: 6;
  }
  .ant-flex-order-xs-7 {
    order: 7;
  }
  .ant-flex-order-xs-8 {
    order: 8;
  }
  .ant-flex-order-xs-9 {
    order: 9;
  }
  .ant-flex-order-xs-10 {
    order: 10;
  }
  .ant-flex-order-xs-11 {
    order: 11;
  }
  .ant-flex-order-xs-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .ant-flex-direction-sm-row {
    flex-direction: row !important;
  }
  .ant-flex-direction-sm-column {
    flex-direction: column !important;
  }
  .ant-flex-direction-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-direction-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .ant-flex-wrap-sm-wrap {
    flex-wrap: wrap !important;
  }
  .ant-flex-wrap-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .ant-flex-wrap-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .ant-flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .ant-flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .ant-flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .ant-flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .ant-flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .ant-justify-content-sm-flex-start {
    justify-content: flex-start !important;
  }
  .ant-justify-content-sm-flex-end {
    justify-content: flex-end !important;
  }
  .ant-justify-content-sm-center {
    justify-content: center !important;
  }
  .ant-justify-content-sm-space-between {
    justify-content: space-between !important;
  }
  .ant-justify-content-sm-space-around {
    justify-content: space-around !important;
  }
  .ant-align-items-sm-flex-start {
    align-items: flex-start !important;
  }
  .ant-align-items-sm-flex-end {
    align-items: flex-end !important;
  }
  .ant-align-items-sm-center {
    align-items: center !important;
  }
  .ant-align-items-sm-baseline {
    align-items: baseline !important;
  }
  .ant-align-items-sm-stretch {
    align-items: stretch !important;
  }
  .ant-align-self-sm-auto {
    align-self: auto !important;
  }
  .ant-align-self-sm-flex-start {
    align-self: flex-start !important;
  }
  .ant-align-self-sm-flex-end {
    align-self: flex-end !important;
  }
  .ant-align-self-sm-center {
    align-self: center !important;
  }
  .ant-align-self-sm-baseline {
    align-self: baseline !important;
  }
  .ant-align-self-sm-stretch {
    align-self: stretch !important;
  }
  .ant-align-content-sm-flex-start {
    align-content: flex-start !important;
  }
  .ant-align-content-sm-flex-end {
    align-content: flex-end !important;
  }
  .ant-align-content-sm-center {
    align-content: center !important;
  }
  .ant-align-content-sm-space-between {
    align-content: space-between !important;
  }
  .ant-align-content-sm-space-around {
    align-content: space-around !important;
  }
  .ant-align-content-sm-stretch {
    align-content: stretch !important;
  }
  .ant-flex-order-sm-0 {
    order: 0;
  }
  .ant-flex-order-sm-1 {
    order: 1;
  }
  .ant-flex-order-sm-2 {
    order: 2;
  }
  .ant-flex-order-sm-3 {
    order: 3;
  }
  .ant-flex-order-sm-4 {
    order: 4;
  }
  .ant-flex-order-sm-5 {
    order: 5;
  }
  .ant-flex-order-sm-6 {
    order: 6;
  }
  .ant-flex-order-sm-7 {
    order: 7;
  }
  .ant-flex-order-sm-8 {
    order: 8;
  }
  .ant-flex-order-sm-9 {
    order: 9;
  }
  .ant-flex-order-sm-10 {
    order: 10;
  }
  .ant-flex-order-sm-11 {
    order: 11;
  }
  .ant-flex-order-sm-12 {
    order: 12;
  }
}
@media (min-width: 992px) {
  .ant-flex-direction-md-row {
    flex-direction: row !important;
  }
  .ant-flex-direction-md-column {
    flex-direction: column !important;
  }
  .ant-flex-direction-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-direction-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .ant-flex-wrap-md-wrap {
    flex-wrap: wrap !important;
  }
  .ant-flex-wrap-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .ant-flex-wrap-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .ant-flex-md-fill {
    flex: 1 1 auto !important;
  }
  .ant-flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .ant-flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .ant-flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .ant-flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .ant-justify-content-md-flex-start {
    justify-content: flex-start !important;
  }
  .ant-justify-content-md-flex-end {
    justify-content: flex-end !important;
  }
  .ant-justify-content-md-center {
    justify-content: center !important;
  }
  .ant-justify-content-md-space-between {
    justify-content: space-between !important;
  }
  .ant-justify-content-md-space-around {
    justify-content: space-around !important;
  }
  .ant-align-items-md-flex-start {
    align-items: flex-start !important;
  }
  .ant-align-items-md-flex-end {
    align-items: flex-end !important;
  }
  .ant-align-items-md-center {
    align-items: center !important;
  }
  .ant-align-items-md-baseline {
    align-items: baseline !important;
  }
  .ant-align-items-md-stretch {
    align-items: stretch !important;
  }
  .ant-align-self-md-auto {
    align-self: auto !important;
  }
  .ant-align-self-md-flex-start {
    align-self: flex-start !important;
  }
  .ant-align-self-md-flex-end {
    align-self: flex-end !important;
  }
  .ant-align-self-md-center {
    align-self: center !important;
  }
  .ant-align-self-md-baseline {
    align-self: baseline !important;
  }
  .ant-align-self-md-stretch {
    align-self: stretch !important;
  }
  .ant-align-content-md-flex-start {
    align-content: flex-start !important;
  }
  .ant-align-content-md-flex-end {
    align-content: flex-end !important;
  }
  .ant-align-content-md-center {
    align-content: center !important;
  }
  .ant-align-content-md-space-between {
    align-content: space-between !important;
  }
  .ant-align-content-md-space-around {
    align-content: space-around !important;
  }
  .ant-align-content-md-stretch {
    align-content: stretch !important;
  }
  .ant-flex-order-md-0 {
    order: 0;
  }
  .ant-flex-order-md-1 {
    order: 1;
  }
  .ant-flex-order-md-2 {
    order: 2;
  }
  .ant-flex-order-md-3 {
    order: 3;
  }
  .ant-flex-order-md-4 {
    order: 4;
  }
  .ant-flex-order-md-5 {
    order: 5;
  }
  .ant-flex-order-md-6 {
    order: 6;
  }
  .ant-flex-order-md-7 {
    order: 7;
  }
  .ant-flex-order-md-8 {
    order: 8;
  }
  .ant-flex-order-md-9 {
    order: 9;
  }
  .ant-flex-order-md-10 {
    order: 10;
  }
  .ant-flex-order-md-11 {
    order: 11;
  }
  .ant-flex-order-md-12 {
    order: 12;
  }
}
@media (min-width: 1200px) {
  .ant-flex-direction-lg-row {
    flex-direction: row !important;
  }
  .ant-flex-direction-lg-column {
    flex-direction: column !important;
  }
  .ant-flex-direction-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-direction-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .ant-flex-wrap-lg-wrap {
    flex-wrap: wrap !important;
  }
  .ant-flex-wrap-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .ant-flex-wrap-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .ant-flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .ant-flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .ant-flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .ant-flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .ant-flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .ant-justify-content-lg-flex-start {
    justify-content: flex-start !important;
  }
  .ant-justify-content-lg-flex-end {
    justify-content: flex-end !important;
  }
  .ant-justify-content-lg-center {
    justify-content: center !important;
  }
  .ant-justify-content-lg-space-between {
    justify-content: space-between !important;
  }
  .ant-justify-content-lg-space-around {
    justify-content: space-around !important;
  }
  .ant-align-items-lg-flex-start {
    align-items: flex-start !important;
  }
  .ant-align-items-lg-flex-end {
    align-items: flex-end !important;
  }
  .ant-align-items-lg-center {
    align-items: center !important;
  }
  .ant-align-items-lg-baseline {
    align-items: baseline !important;
  }
  .ant-align-items-lg-stretch {
    align-items: stretch !important;
  }
  .ant-align-self-lg-auto {
    align-self: auto !important;
  }
  .ant-align-self-lg-flex-start {
    align-self: flex-start !important;
  }
  .ant-align-self-lg-flex-end {
    align-self: flex-end !important;
  }
  .ant-align-self-lg-center {
    align-self: center !important;
  }
  .ant-align-self-lg-baseline {
    align-self: baseline !important;
  }
  .ant-align-self-lg-stretch {
    align-self: stretch !important;
  }
  .ant-align-content-lg-flex-start {
    align-content: flex-start !important;
  }
  .ant-align-content-lg-flex-end {
    align-content: flex-end !important;
  }
  .ant-align-content-lg-center {
    align-content: center !important;
  }
  .ant-align-content-lg-space-between {
    align-content: space-between !important;
  }
  .ant-align-content-lg-space-around {
    align-content: space-around !important;
  }
  .ant-align-content-lg-stretch {
    align-content: stretch !important;
  }
  .ant-flex-order-lg-0 {
    order: 0;
  }
  .ant-flex-order-lg-1 {
    order: 1;
  }
  .ant-flex-order-lg-2 {
    order: 2;
  }
  .ant-flex-order-lg-3 {
    order: 3;
  }
  .ant-flex-order-lg-4 {
    order: 4;
  }
  .ant-flex-order-lg-5 {
    order: 5;
  }
  .ant-flex-order-lg-6 {
    order: 6;
  }
  .ant-flex-order-lg-7 {
    order: 7;
  }
  .ant-flex-order-lg-8 {
    order: 8;
  }
  .ant-flex-order-lg-9 {
    order: 9;
  }
  .ant-flex-order-lg-10 {
    order: 10;
  }
  .ant-flex-order-lg-11 {
    order: 11;
  }
  .ant-flex-order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1600px) {
  .ant-flex-direction-xl-row {
    flex-direction: row !important;
  }
  .ant-flex-direction-xl-column {
    flex-direction: column !important;
  }
  .ant-flex-direction-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-direction-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .ant-flex-wrap-xl-wrap {
    flex-wrap: wrap !important;
  }
  .ant-flex-wrap-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .ant-flex-wrap-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .ant-flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .ant-flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .ant-flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .ant-flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .ant-flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .ant-justify-content-xl-flex-start {
    justify-content: flex-start !important;
  }
  .ant-justify-content-xl-flex-end {
    justify-content: flex-end !important;
  }
  .ant-justify-content-xl-center {
    justify-content: center !important;
  }
  .ant-justify-content-xl-space-between {
    justify-content: space-between !important;
  }
  .ant-justify-content-xl-space-around {
    justify-content: space-around !important;
  }
  .ant-align-items-xl-flex-start {
    align-items: flex-start !important;
  }
  .ant-align-items-xl-flex-end {
    align-items: flex-end !important;
  }
  .ant-align-items-xl-center {
    align-items: center !important;
  }
  .ant-align-items-xl-baseline {
    align-items: baseline !important;
  }
  .ant-align-items-xl-stretch {
    align-items: stretch !important;
  }
  .ant-align-self-xl-auto {
    align-self: auto !important;
  }
  .ant-align-self-xl-flex-start {
    align-self: flex-start !important;
  }
  .ant-align-self-xl-flex-end {
    align-self: flex-end !important;
  }
  .ant-align-self-xl-center {
    align-self: center !important;
  }
  .ant-align-self-xl-baseline {
    align-self: baseline !important;
  }
  .ant-align-self-xl-stretch {
    align-self: stretch !important;
  }
  .ant-align-content-xl-flex-start {
    align-content: flex-start !important;
  }
  .ant-align-content-xl-flex-end {
    align-content: flex-end !important;
  }
  .ant-align-content-xl-center {
    align-content: center !important;
  }
  .ant-align-content-xl-space-between {
    align-content: space-between !important;
  }
  .ant-align-content-xl-space-around {
    align-content: space-around !important;
  }
  .ant-align-content-xl-stretch {
    align-content: stretch !important;
  }
  .ant-flex-order-xl-0 {
    order: 0;
  }
  .ant-flex-order-xl-1 {
    order: 1;
  }
  .ant-flex-order-xl-2 {
    order: 2;
  }
  .ant-flex-order-xl-3 {
    order: 3;
  }
  .ant-flex-order-xl-4 {
    order: 4;
  }
  .ant-flex-order-xl-5 {
    order: 5;
  }
  .ant-flex-order-xl-6 {
    order: 6;
  }
  .ant-flex-order-xl-7 {
    order: 7;
  }
  .ant-flex-order-xl-8 {
    order: 8;
  }
  .ant-flex-order-xl-9 {
    order: 9;
  }
  .ant-flex-order-xl-10 {
    order: 10;
  }
  .ant-flex-order-xl-11 {
    order: 11;
  }
  .ant-flex-order-xl-12 {
    order: 12;
  }
}
.ant-row {
  margin-left: -8px;
  margin-right: -8px;
}
.ant-row > .ant-col {
  flex-grow: 1;
  padding-left: 8px;
  padding-right: 8px;
}

.ant-container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .ant-container, .ant-container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .ant-container, .ant-container-sm, .ant-container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .ant-container, .ant-container-sm, .ant-container-md, .ant-container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .ant-container, .ant-container-sm, .ant-container-md, .ant-container-lg, .ant-container-xl {
    max-width: 1140px;
  }
}
.ant-container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.ant-row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.ant-row-no-gutters > .ant-col,
.ant-row-no-gutters > [class*=ant-col-] {
  padding-right: 0;
  padding-left: 0;
}

.ant-row-columns-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.ant-row-columns-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.ant-row-columns-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.ant-row-columns-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.ant-row-columns-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.ant-row-columns-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

@media (min-width: 576px) {
  .ant-row-columns-xs-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-row-columns-xs-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-row-columns-xs-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ant-row-columns-xs-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-row-columns-xs-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ant-row-columns-xs-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .ant-row-columns-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-row-columns-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-row-columns-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ant-row-columns-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-row-columns-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ant-row-columns-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .ant-row-columns-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-row-columns-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-row-columns-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ant-row-columns-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-row-columns-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ant-row-columns-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .ant-row-columns-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-row-columns-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-row-columns-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ant-row-columns-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-row-columns-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ant-row-columns-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
@media (min-width: 1600px) {
  .ant-row-columns-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ant-row-columns-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ant-row-columns-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ant-row-columns-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-row-columns-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ant-row-columns-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
}
.ant-grid {
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.ant-grid.ant-grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.ant-grid.ant-grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.ant-grid.ant-grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.ant-grid.ant-grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.ant-grid.ant-grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}
.ant-grid.ant-grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-13 {
  grid-template-columns: repeat(13, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-14 {
  grid-template-columns: repeat(14, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-15 {
  grid-template-columns: repeat(15, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-16 {
  grid-template-columns: repeat(16, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-17 {
  grid-template-columns: repeat(17, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-18 {
  grid-template-columns: repeat(18, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-19 {
  grid-template-columns: repeat(19, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-20 {
  grid-template-columns: repeat(20, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-21 {
  grid-template-columns: repeat(21, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-22 {
  grid-template-columns: repeat(22, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-23 {
  grid-template-columns: repeat(23, minmax(0, 1fr));
}
.ant-grid.ant-grid-cols-24 {
  grid-template-columns: repeat(24, minmax(0, 1fr));
}
@media (min-width: 576px) {
  .ant-grid.ant-grid-rows-xs-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xs-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xs-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xs-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xs-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xs-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xs-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .ant-grid.ant-grid-rows-sm-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-sm-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-sm-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-sm-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-sm-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-sm-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-sm-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .ant-grid.ant-grid-rows-md-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-md-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-md-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-md-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-md-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-md-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-md-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .ant-grid.ant-grid-rows-lg-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-lg-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-lg-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-lg-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-lg-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-lg-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-lg-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
@media (min-width: 1600px) {
  .ant-grid.ant-grid-rows-xl-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xl-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xl-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xl-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xl-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-rows-xl-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-13 {
    grid-template-columns: repeat(13, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-16 {
    grid-template-columns: repeat(16, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-17 {
    grid-template-columns: repeat(17, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-18 {
    grid-template-columns: repeat(18, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-19 {
    grid-template-columns: repeat(19, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-21 {
    grid-template-columns: repeat(21, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-22 {
    grid-template-columns: repeat(22, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-23 {
    grid-template-columns: repeat(23, minmax(0, 1fr));
  }
  .ant-grid.ant-grid-cols-xl-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
}
.ant-grid .ant-grid-col-1 {
  grid-column: auto/span 0.5;
}
.ant-grid .ant-grid-col-2 {
  grid-column: auto/span 1;
}
.ant-grid .ant-grid-col-3 {
  grid-column: auto/span 1.5;
}
.ant-grid .ant-grid-col-4 {
  grid-column: auto/span 2;
}
.ant-grid .ant-grid-col-5 {
  grid-column: auto/span 2.5;
}
.ant-grid .ant-grid-col-6 {
  grid-column: auto/span 3;
}
.ant-grid .ant-grid-col-7 {
  grid-column: auto/span 3.5;
}
.ant-grid .ant-grid-col-8 {
  grid-column: auto/span 4;
}
.ant-grid .ant-grid-col-9 {
  grid-column: auto/span 4.5;
}
.ant-grid .ant-grid-col-10 {
  grid-column: auto/span 5;
}
.ant-grid .ant-grid-col-11 {
  grid-column: auto/span 5.5;
}
.ant-grid .ant-grid-col-12 {
  grid-column: auto/span 6;
}
.ant-grid .ant-grid-col-13 {
  grid-column: auto/span 6.5;
}
.ant-grid .ant-grid-col-14 {
  grid-column: auto/span 7;
}
.ant-grid .ant-grid-col-15 {
  grid-column: auto/span 7.5;
}
.ant-grid .ant-grid-col-16 {
  grid-column: auto/span 8;
}
.ant-grid .ant-grid-col-17 {
  grid-column: auto/span 8.5;
}
.ant-grid .ant-grid-col-18 {
  grid-column: auto/span 9;
}
.ant-grid .ant-grid-col-19 {
  grid-column: auto/span 9.5;
}
.ant-grid .ant-grid-col-20 {
  grid-column: auto/span 10;
}
.ant-grid .ant-grid-col-21 {
  grid-column: auto/span 10.5;
}
.ant-grid .ant-grid-col-22 {
  grid-column: auto/span 11;
}
.ant-grid .ant-grid-col-23 {
  grid-column: auto/span 11.5;
}
.ant-grid .ant-grid-col-24 {
  grid-column: auto/span 12;
}
@media (min-width: 576px) {
  .ant-grid .ant-grid-col-xs-1 {
    grid-column: auto/span 0.5;
  }
  .ant-grid .ant-grid-col-xs-2 {
    grid-column: auto/span 1;
  }
  .ant-grid .ant-grid-col-xs-3 {
    grid-column: auto/span 1.5;
  }
  .ant-grid .ant-grid-col-xs-4 {
    grid-column: auto/span 2;
  }
  .ant-grid .ant-grid-col-xs-5 {
    grid-column: auto/span 2.5;
  }
  .ant-grid .ant-grid-col-xs-6 {
    grid-column: auto/span 3;
  }
  .ant-grid .ant-grid-col-xs-7 {
    grid-column: auto/span 3.5;
  }
  .ant-grid .ant-grid-col-xs-8 {
    grid-column: auto/span 4;
  }
  .ant-grid .ant-grid-col-xs-9 {
    grid-column: auto/span 4.5;
  }
  .ant-grid .ant-grid-col-xs-10 {
    grid-column: auto/span 5;
  }
  .ant-grid .ant-grid-col-xs-11 {
    grid-column: auto/span 5.5;
  }
  .ant-grid .ant-grid-col-xs-12 {
    grid-column: auto/span 6;
  }
  .ant-grid .ant-grid-col-xs-13 {
    grid-column: auto/span 6.5;
  }
  .ant-grid .ant-grid-col-xs-14 {
    grid-column: auto/span 7;
  }
  .ant-grid .ant-grid-col-xs-15 {
    grid-column: auto/span 7.5;
  }
  .ant-grid .ant-grid-col-xs-16 {
    grid-column: auto/span 8;
  }
  .ant-grid .ant-grid-col-xs-17 {
    grid-column: auto/span 8.5;
  }
  .ant-grid .ant-grid-col-xs-18 {
    grid-column: auto/span 9;
  }
  .ant-grid .ant-grid-col-xs-19 {
    grid-column: auto/span 9.5;
  }
  .ant-grid .ant-grid-col-xs-20 {
    grid-column: auto/span 10;
  }
  .ant-grid .ant-grid-col-xs-21 {
    grid-column: auto/span 10.5;
  }
  .ant-grid .ant-grid-col-xs-22 {
    grid-column: auto/span 11;
  }
  .ant-grid .ant-grid-col-xs-23 {
    grid-column: auto/span 11.5;
  }
  .ant-grid .ant-grid-col-xs-24 {
    grid-column: auto/span 12;
  }
}
@media (min-width: 768px) {
  .ant-grid .ant-grid-col-sm-1 {
    grid-column: auto/span 0.5;
  }
  .ant-grid .ant-grid-col-sm-2 {
    grid-column: auto/span 1;
  }
  .ant-grid .ant-grid-col-sm-3 {
    grid-column: auto/span 1.5;
  }
  .ant-grid .ant-grid-col-sm-4 {
    grid-column: auto/span 2;
  }
  .ant-grid .ant-grid-col-sm-5 {
    grid-column: auto/span 2.5;
  }
  .ant-grid .ant-grid-col-sm-6 {
    grid-column: auto/span 3;
  }
  .ant-grid .ant-grid-col-sm-7 {
    grid-column: auto/span 3.5;
  }
  .ant-grid .ant-grid-col-sm-8 {
    grid-column: auto/span 4;
  }
  .ant-grid .ant-grid-col-sm-9 {
    grid-column: auto/span 4.5;
  }
  .ant-grid .ant-grid-col-sm-10 {
    grid-column: auto/span 5;
  }
  .ant-grid .ant-grid-col-sm-11 {
    grid-column: auto/span 5.5;
  }
  .ant-grid .ant-grid-col-sm-12 {
    grid-column: auto/span 6;
  }
  .ant-grid .ant-grid-col-sm-13 {
    grid-column: auto/span 6.5;
  }
  .ant-grid .ant-grid-col-sm-14 {
    grid-column: auto/span 7;
  }
  .ant-grid .ant-grid-col-sm-15 {
    grid-column: auto/span 7.5;
  }
  .ant-grid .ant-grid-col-sm-16 {
    grid-column: auto/span 8;
  }
  .ant-grid .ant-grid-col-sm-17 {
    grid-column: auto/span 8.5;
  }
  .ant-grid .ant-grid-col-sm-18 {
    grid-column: auto/span 9;
  }
  .ant-grid .ant-grid-col-sm-19 {
    grid-column: auto/span 9.5;
  }
  .ant-grid .ant-grid-col-sm-20 {
    grid-column: auto/span 10;
  }
  .ant-grid .ant-grid-col-sm-21 {
    grid-column: auto/span 10.5;
  }
  .ant-grid .ant-grid-col-sm-22 {
    grid-column: auto/span 11;
  }
  .ant-grid .ant-grid-col-sm-23 {
    grid-column: auto/span 11.5;
  }
  .ant-grid .ant-grid-col-sm-24 {
    grid-column: auto/span 12;
  }
}
@media (min-width: 992px) {
  .ant-grid .ant-grid-col-md-1 {
    grid-column: auto/span 0.5;
  }
  .ant-grid .ant-grid-col-md-2 {
    grid-column: auto/span 1;
  }
  .ant-grid .ant-grid-col-md-3 {
    grid-column: auto/span 1.5;
  }
  .ant-grid .ant-grid-col-md-4 {
    grid-column: auto/span 2;
  }
  .ant-grid .ant-grid-col-md-5 {
    grid-column: auto/span 2.5;
  }
  .ant-grid .ant-grid-col-md-6 {
    grid-column: auto/span 3;
  }
  .ant-grid .ant-grid-col-md-7 {
    grid-column: auto/span 3.5;
  }
  .ant-grid .ant-grid-col-md-8 {
    grid-column: auto/span 4;
  }
  .ant-grid .ant-grid-col-md-9 {
    grid-column: auto/span 4.5;
  }
  .ant-grid .ant-grid-col-md-10 {
    grid-column: auto/span 5;
  }
  .ant-grid .ant-grid-col-md-11 {
    grid-column: auto/span 5.5;
  }
  .ant-grid .ant-grid-col-md-12 {
    grid-column: auto/span 6;
  }
  .ant-grid .ant-grid-col-md-13 {
    grid-column: auto/span 6.5;
  }
  .ant-grid .ant-grid-col-md-14 {
    grid-column: auto/span 7;
  }
  .ant-grid .ant-grid-col-md-15 {
    grid-column: auto/span 7.5;
  }
  .ant-grid .ant-grid-col-md-16 {
    grid-column: auto/span 8;
  }
  .ant-grid .ant-grid-col-md-17 {
    grid-column: auto/span 8.5;
  }
  .ant-grid .ant-grid-col-md-18 {
    grid-column: auto/span 9;
  }
  .ant-grid .ant-grid-col-md-19 {
    grid-column: auto/span 9.5;
  }
  .ant-grid .ant-grid-col-md-20 {
    grid-column: auto/span 10;
  }
  .ant-grid .ant-grid-col-md-21 {
    grid-column: auto/span 10.5;
  }
  .ant-grid .ant-grid-col-md-22 {
    grid-column: auto/span 11;
  }
  .ant-grid .ant-grid-col-md-23 {
    grid-column: auto/span 11.5;
  }
  .ant-grid .ant-grid-col-md-24 {
    grid-column: auto/span 12;
  }
}
@media (min-width: 1200px) {
  .ant-grid .ant-grid-col-lg-1 {
    grid-column: auto/span 0.5;
  }
  .ant-grid .ant-grid-col-lg-2 {
    grid-column: auto/span 1;
  }
  .ant-grid .ant-grid-col-lg-3 {
    grid-column: auto/span 1.5;
  }
  .ant-grid .ant-grid-col-lg-4 {
    grid-column: auto/span 2;
  }
  .ant-grid .ant-grid-col-lg-5 {
    grid-column: auto/span 2.5;
  }
  .ant-grid .ant-grid-col-lg-6 {
    grid-column: auto/span 3;
  }
  .ant-grid .ant-grid-col-lg-7 {
    grid-column: auto/span 3.5;
  }
  .ant-grid .ant-grid-col-lg-8 {
    grid-column: auto/span 4;
  }
  .ant-grid .ant-grid-col-lg-9 {
    grid-column: auto/span 4.5;
  }
  .ant-grid .ant-grid-col-lg-10 {
    grid-column: auto/span 5;
  }
  .ant-grid .ant-grid-col-lg-11 {
    grid-column: auto/span 5.5;
  }
  .ant-grid .ant-grid-col-lg-12 {
    grid-column: auto/span 6;
  }
  .ant-grid .ant-grid-col-lg-13 {
    grid-column: auto/span 6.5;
  }
  .ant-grid .ant-grid-col-lg-14 {
    grid-column: auto/span 7;
  }
  .ant-grid .ant-grid-col-lg-15 {
    grid-column: auto/span 7.5;
  }
  .ant-grid .ant-grid-col-lg-16 {
    grid-column: auto/span 8;
  }
  .ant-grid .ant-grid-col-lg-17 {
    grid-column: auto/span 8.5;
  }
  .ant-grid .ant-grid-col-lg-18 {
    grid-column: auto/span 9;
  }
  .ant-grid .ant-grid-col-lg-19 {
    grid-column: auto/span 9.5;
  }
  .ant-grid .ant-grid-col-lg-20 {
    grid-column: auto/span 10;
  }
  .ant-grid .ant-grid-col-lg-21 {
    grid-column: auto/span 10.5;
  }
  .ant-grid .ant-grid-col-lg-22 {
    grid-column: auto/span 11;
  }
  .ant-grid .ant-grid-col-lg-23 {
    grid-column: auto/span 11.5;
  }
  .ant-grid .ant-grid-col-lg-24 {
    grid-column: auto/span 12;
  }
}
@media (min-width: 1600px) {
  .ant-grid .ant-grid-col-xl-1 {
    grid-column: auto/span 0.5;
  }
  .ant-grid .ant-grid-col-xl-2 {
    grid-column: auto/span 1;
  }
  .ant-grid .ant-grid-col-xl-3 {
    grid-column: auto/span 1.5;
  }
  .ant-grid .ant-grid-col-xl-4 {
    grid-column: auto/span 2;
  }
  .ant-grid .ant-grid-col-xl-5 {
    grid-column: auto/span 2.5;
  }
  .ant-grid .ant-grid-col-xl-6 {
    grid-column: auto/span 3;
  }
  .ant-grid .ant-grid-col-xl-7 {
    grid-column: auto/span 3.5;
  }
  .ant-grid .ant-grid-col-xl-8 {
    grid-column: auto/span 4;
  }
  .ant-grid .ant-grid-col-xl-9 {
    grid-column: auto/span 4.5;
  }
  .ant-grid .ant-grid-col-xl-10 {
    grid-column: auto/span 5;
  }
  .ant-grid .ant-grid-col-xl-11 {
    grid-column: auto/span 5.5;
  }
  .ant-grid .ant-grid-col-xl-12 {
    grid-column: auto/span 6;
  }
  .ant-grid .ant-grid-col-xl-13 {
    grid-column: auto/span 6.5;
  }
  .ant-grid .ant-grid-col-xl-14 {
    grid-column: auto/span 7;
  }
  .ant-grid .ant-grid-col-xl-15 {
    grid-column: auto/span 7.5;
  }
  .ant-grid .ant-grid-col-xl-16 {
    grid-column: auto/span 8;
  }
  .ant-grid .ant-grid-col-xl-17 {
    grid-column: auto/span 8.5;
  }
  .ant-grid .ant-grid-col-xl-18 {
    grid-column: auto/span 9;
  }
  .ant-grid .ant-grid-col-xl-19 {
    grid-column: auto/span 9.5;
  }
  .ant-grid .ant-grid-col-xl-20 {
    grid-column: auto/span 10;
  }
  .ant-grid .ant-grid-col-xl-21 {
    grid-column: auto/span 10.5;
  }
  .ant-grid .ant-grid-col-xl-22 {
    grid-column: auto/span 11;
  }
  .ant-grid .ant-grid-col-xl-23 {
    grid-column: auto/span 11.5;
  }
  .ant-grid .ant-grid-col-xl-24 {
    grid-column: auto/span 12;
  }
}

.ant-image-img-fluid {
  width: 100%;
  height: auto;
}

.ant-overflow-auto {
  overflow: auto !important;
}

.ant-overflow-auto-auto {
  overflow: auto auto !important;
}

.ant-overflow-auto-hidden {
  overflow: auto hidden !important;
}

.ant-overflow-auto-visible {
  overflow: auto visible !important;
}

.ant-overflow-auto-scroll {
  overflow: auto scroll !important;
}

.ant-overflow-hidden {
  overflow: hidden !important;
}

.ant-overflow-hidden-auto {
  overflow: hidden auto !important;
}

.ant-overflow-hidden-hidden {
  overflow: hidden hidden !important;
}

.ant-overflow-hidden-visible {
  overflow: hidden visible !important;
}

.ant-overflow-hidden-scroll {
  overflow: hidden scroll !important;
}

.ant-overflow-visible {
  overflow: visible !important;
}

.ant-overflow-visible-auto {
  overflow: visible auto !important;
}

.ant-overflow-visible-hidden {
  overflow: visible hidden !important;
}

.ant-overflow-visible-visible {
  overflow: visible visible !important;
}

.ant-overflow-visible-scroll {
  overflow: visible scroll !important;
}

.ant-overflow-scroll {
  overflow: scroll !important;
}

.ant-overflow-scroll-auto {
  overflow: scroll auto !important;
}

.ant-overflow-scroll-hidden {
  overflow: scroll hidden !important;
}

.ant-overflow-scroll-visible {
  overflow: scroll visible !important;
}

.ant-overflow-scroll-scroll {
  overflow: scroll scroll !important;
}

.ant-position-static {
  position: static !important;
}
.ant-position-relative {
  position: relative !important;
}
.ant-position-absolute {
  position: absolute !important;
}
.ant-position-fixed {
  position: fixed !important;
}
.ant-position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.ant-top-0 {
  top: 0 !important;
}

.ant-bottom-0 {
  bottom: 0 !important;
}

.ant-left-0 {
  left: 0 !important;
}

.ant-right-0 {
  right: 0 !important;
}

.ant-top-50 {
  top: 50% !important;
}

.ant-bottom-50 {
  bottom: 50% !important;
}

.ant-left-50 {
  left: 50% !important;
}

.ant-right-50 {
  right: 50% !important;
}

.ant-top-100 {
  top: 100% !important;
}

.ant-bottom-100 {
  bottom: 100% !important;
}

.ant-left-100 {
  left: 100% !important;
}

.ant-right-100 {
  right: 100% !important;
}

.ant-translate-middle {
  transform: translate(-50%, -50%) !important;
}

.ant-translate-middle-x {
  transform: translateX(-50%) !important;
}

.ant-translate-middle-y {
  transform: translateY(-50%) !important;
}

.ant-shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.ant-shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.ant-shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.ant-shadow-none {
  box-shadow: none !important;
}

.ant-width-25 {
  width: 25% !important;
}

.ant-width-33 {
  width: 33.333333% !important;
}

.ant-width-50 {
  width: 50% !important;
}

.ant-width-66 {
  width: 66.666667% !important;
}

.ant-width-75 {
  width: 75% !important;
}

.ant-width-100 {
  width: 100% !important;
}

.ant-width-auto {
  width: auto !important;
}

.ant-height-25 {
  height: 25% !important;
}

.ant-height-33 {
  height: 33.333333% !important;
}

.ant-height-50 {
  height: 50% !important;
}

.ant-height-66 {
  height: 66.666667% !important;
}

.ant-height-75 {
  height: 75% !important;
}

.ant-height-100 {
  height: 100% !important;
}

.ant-height-auto {
  height: auto !important;
}

.ant-max-width-100 {
  max-width: 100% !important;
}

.ant-max-height-100 {
  max-height: 100% !important;
}

.ant-min-viewport-width-100 {
  min-width: 100vw !important;
}

.ant-min-viewport-height-100 {
  min-height: 100vh !important;
}

.ant-viewport-width-100 {
  width: 100vw !important;
}

.ant-viewport-height-100 {
  height: 100vh !important;
}

@media (min-width: 576px) {
  .ant-width-xs-25 {
    width: 25% !important;
  }
  .ant-width-xs-33 {
    width: 33.333333% !important;
  }
  .ant-width-xs-50 {
    width: 50% !important;
  }
  .ant-width-xs-66 {
    width: 66.666667% !important;
  }
  .ant-width-xs-75 {
    width: 75% !important;
  }
  .ant-width-xs-100 {
    width: 100% !important;
  }
  .ant-width-xs-auto {
    width: auto !important;
  }
  .ant-height-xs-25 {
    height: 25% !important;
  }
  .ant-height-xs-33 {
    height: 33.333333% !important;
  }
  .ant-height-xs-50 {
    height: 50% !important;
  }
  .ant-height-xs-66 {
    height: 66.666667% !important;
  }
  .ant-height-xs-75 {
    height: 75% !important;
  }
  .ant-height-xs-100 {
    height: 100% !important;
  }
  .ant-height-xs-auto {
    height: auto !important;
  }
  .ant-max-width-xs-100 {
    max-width: 100% !important;
  }
  .ant-max-height-xs-100 {
    max-height: 100% !important;
  }
  .ant-min-viewport-width-xs-100 {
    min-width: 100vw !important;
  }
  .ant-min-viewport-height-xs-100 {
    min-height: 100vh !important;
  }
  .ant-viewport-width-xs-100 {
    width: 100vw !important;
  }
  .ant-viewport-height-xs-100 {
    height: 100vh !important;
  }
}
@media (min-width: 768px) {
  .ant-width-sm-25 {
    width: 25% !important;
  }
  .ant-width-sm-33 {
    width: 33.333333% !important;
  }
  .ant-width-sm-50 {
    width: 50% !important;
  }
  .ant-width-sm-66 {
    width: 66.666667% !important;
  }
  .ant-width-sm-75 {
    width: 75% !important;
  }
  .ant-width-sm-100 {
    width: 100% !important;
  }
  .ant-width-sm-auto {
    width: auto !important;
  }
  .ant-height-sm-25 {
    height: 25% !important;
  }
  .ant-height-sm-33 {
    height: 33.333333% !important;
  }
  .ant-height-sm-50 {
    height: 50% !important;
  }
  .ant-height-sm-66 {
    height: 66.666667% !important;
  }
  .ant-height-sm-75 {
    height: 75% !important;
  }
  .ant-height-sm-100 {
    height: 100% !important;
  }
  .ant-height-sm-auto {
    height: auto !important;
  }
  .ant-max-width-sm-100 {
    max-width: 100% !important;
  }
  .ant-max-height-sm-100 {
    max-height: 100% !important;
  }
  .ant-min-viewport-width-sm-100 {
    min-width: 100vw !important;
  }
  .ant-min-viewport-height-sm-100 {
    min-height: 100vh !important;
  }
  .ant-viewport-width-sm-100 {
    width: 100vw !important;
  }
  .ant-viewport-height-sm-100 {
    height: 100vh !important;
  }
}
@media (min-width: 992px) {
  .ant-width-md-25 {
    width: 25% !important;
  }
  .ant-width-md-33 {
    width: 33.333333% !important;
  }
  .ant-width-md-50 {
    width: 50% !important;
  }
  .ant-width-md-66 {
    width: 66.666667% !important;
  }
  .ant-width-md-75 {
    width: 75% !important;
  }
  .ant-width-md-100 {
    width: 100% !important;
  }
  .ant-width-md-auto {
    width: auto !important;
  }
  .ant-height-md-25 {
    height: 25% !important;
  }
  .ant-height-md-33 {
    height: 33.333333% !important;
  }
  .ant-height-md-50 {
    height: 50% !important;
  }
  .ant-height-md-66 {
    height: 66.666667% !important;
  }
  .ant-height-md-75 {
    height: 75% !important;
  }
  .ant-height-md-100 {
    height: 100% !important;
  }
  .ant-height-md-auto {
    height: auto !important;
  }
  .ant-max-width-md-100 {
    max-width: 100% !important;
  }
  .ant-max-height-md-100 {
    max-height: 100% !important;
  }
  .ant-min-viewport-width-md-100 {
    min-width: 100vw !important;
  }
  .ant-min-viewport-height-md-100 {
    min-height: 100vh !important;
  }
  .ant-viewport-width-md-100 {
    width: 100vw !important;
  }
  .ant-viewport-height-md-100 {
    height: 100vh !important;
  }
}
@media (min-width: 1200px) {
  .ant-width-lg-25 {
    width: 25% !important;
  }
  .ant-width-lg-33 {
    width: 33.333333% !important;
  }
  .ant-width-lg-50 {
    width: 50% !important;
  }
  .ant-width-lg-66 {
    width: 66.666667% !important;
  }
  .ant-width-lg-75 {
    width: 75% !important;
  }
  .ant-width-lg-100 {
    width: 100% !important;
  }
  .ant-width-lg-auto {
    width: auto !important;
  }
  .ant-height-lg-25 {
    height: 25% !important;
  }
  .ant-height-lg-33 {
    height: 33.333333% !important;
  }
  .ant-height-lg-50 {
    height: 50% !important;
  }
  .ant-height-lg-66 {
    height: 66.666667% !important;
  }
  .ant-height-lg-75 {
    height: 75% !important;
  }
  .ant-height-lg-100 {
    height: 100% !important;
  }
  .ant-height-lg-auto {
    height: auto !important;
  }
  .ant-max-width-lg-100 {
    max-width: 100% !important;
  }
  .ant-max-height-lg-100 {
    max-height: 100% !important;
  }
  .ant-min-viewport-width-lg-100 {
    min-width: 100vw !important;
  }
  .ant-min-viewport-height-lg-100 {
    min-height: 100vh !important;
  }
  .ant-viewport-width-lg-100 {
    width: 100vw !important;
  }
  .ant-viewport-height-lg-100 {
    height: 100vh !important;
  }
}
@media (min-width: 1600px) {
  .ant-width-xl-25 {
    width: 25% !important;
  }
  .ant-width-xl-33 {
    width: 33.333333% !important;
  }
  .ant-width-xl-50 {
    width: 50% !important;
  }
  .ant-width-xl-66 {
    width: 66.666667% !important;
  }
  .ant-width-xl-75 {
    width: 75% !important;
  }
  .ant-width-xl-100 {
    width: 100% !important;
  }
  .ant-width-xl-auto {
    width: auto !important;
  }
  .ant-height-xl-25 {
    height: 25% !important;
  }
  .ant-height-xl-33 {
    height: 33.333333% !important;
  }
  .ant-height-xl-50 {
    height: 50% !important;
  }
  .ant-height-xl-66 {
    height: 66.666667% !important;
  }
  .ant-height-xl-75 {
    height: 75% !important;
  }
  .ant-height-xl-100 {
    height: 100% !important;
  }
  .ant-height-xl-auto {
    height: auto !important;
  }
  .ant-max-width-xl-100 {
    max-width: 100% !important;
  }
  .ant-max-height-xl-100 {
    max-height: 100% !important;
  }
  .ant-min-viewport-width-xl-100 {
    min-width: 100vw !important;
  }
  .ant-min-viewport-height-xl-100 {
    min-height: 100vh !important;
  }
  .ant-viewport-width-xl-100 {
    width: 100vw !important;
  }
  .ant-viewport-height-xl-100 {
    height: 100vh !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.ant-display-inline {
  display: inline !important;
}

.ant-display-inline-block {
  display: inline-block !important;
}

.ant-display-block {
  display: block !important;
}

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

.ant-display-flex {
  display: flex !important;
}

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

.ant-flex-row {
  flex-direction: row !important;
}

.ant-flex-column {
  flex-direction: column !important;
}

.ant-flex-row-reverse {
  flex-direction: row-reverse !important;
}

.ant-flex-column-reverse {
  flex-direction: column-reverse !important;
}

@media (min-width: 576px) {
  .m-xs-0 {
    margin: 0 !important;
  }
  .mt-xs-0,
  .my-xs-0 {
    margin-top: 0 !important;
  }
  .mr-xs-0,
  .mx-xs-0 {
    margin-right: 0 !important;
  }
  .mb-xs-0,
  .my-xs-0 {
    margin-bottom: 0 !important;
  }
  .ml-xs-0,
  .mx-xs-0 {
    margin-left: 0 !important;
  }
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  .mt-xs-1,
  .my-xs-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xs-1,
  .mx-xs-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xs-1,
  .my-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xs-1,
  .mx-xs-1 {
    margin-left: 0.25rem !important;
  }
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  .mt-xs-2,
  .my-xs-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xs-2,
  .mx-xs-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xs-2,
  .my-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xs-2,
  .mx-xs-2 {
    margin-left: 0.5rem !important;
  }
  .m-xs-3 {
    margin: 1rem !important;
  }
  .mt-xs-3,
  .my-xs-3 {
    margin-top: 1rem !important;
  }
  .mr-xs-3,
  .mx-xs-3 {
    margin-right: 1rem !important;
  }
  .mb-xs-3,
  .my-xs-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xs-3,
  .mx-xs-3 {
    margin-left: 1rem !important;
  }
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  .mt-xs-4,
  .my-xs-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xs-4,
  .mx-xs-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xs-4,
  .my-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xs-4,
  .mx-xs-4 {
    margin-left: 1.5rem !important;
  }
  .m-xs-5 {
    margin: 3rem !important;
  }
  .mt-xs-5,
  .my-xs-5 {
    margin-top: 3rem !important;
  }
  .mr-xs-5,
  .mx-xs-5 {
    margin-right: 3rem !important;
  }
  .mb-xs-5,
  .my-xs-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xs-5,
  .mx-xs-5 {
    margin-left: 3rem !important;
  }
  .p-xs-0 {
    padding: 0 !important;
  }
  .pt-xs-0,
  .py-xs-0 {
    padding-top: 0 !important;
  }
  .pr-xs-0,
  .px-xs-0 {
    padding-right: 0 !important;
  }
  .pb-xs-0,
  .py-xs-0 {
    padding-bottom: 0 !important;
  }
  .pl-xs-0,
  .px-xs-0 {
    padding-left: 0 !important;
  }
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  .pt-xs-1,
  .py-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xs-1,
  .px-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xs-1,
  .py-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xs-1,
  .px-xs-1 {
    padding-left: 0.25rem !important;
  }
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  .pt-xs-2,
  .py-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xs-2,
  .px-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xs-2,
  .py-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xs-2,
  .px-xs-2 {
    padding-left: 0.5rem !important;
  }
  .p-xs-3 {
    padding: 1rem !important;
  }
  .pt-xs-3,
  .py-xs-3 {
    padding-top: 1rem !important;
  }
  .pr-xs-3,
  .px-xs-3 {
    padding-right: 1rem !important;
  }
  .pb-xs-3,
  .py-xs-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xs-3,
  .px-xs-3 {
    padding-left: 1rem !important;
  }
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  .pt-xs-4,
  .py-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xs-4,
  .px-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xs-4,
  .py-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xs-4,
  .px-xs-4 {
    padding-left: 1.5rem !important;
  }
  .p-xs-5 {
    padding: 3rem !important;
  }
  .pt-xs-5,
  .py-xs-5 {
    padding-top: 3rem !important;
  }
  .pr-xs-5,
  .px-xs-5 {
    padding-right: 3rem !important;
  }
  .pb-xs-5,
  .py-xs-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xs-5,
  .px-xs-5 {
    padding-left: 3rem !important;
  }
  .m-xs-n1 {
    margin: -0.25rem !important;
  }
  .mt-xs-n1,
  .my-xs-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xs-n1,
  .mx-xs-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xs-n1,
  .my-xs-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xs-n1,
  .mx-xs-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xs-n2 {
    margin: -0.5rem !important;
  }
  .mt-xs-n2,
  .my-xs-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xs-n2,
  .mx-xs-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xs-n2,
  .my-xs-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xs-n2,
  .mx-xs-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xs-n3 {
    margin: -1rem !important;
  }
  .mt-xs-n3,
  .my-xs-n3 {
    margin-top: -1rem !important;
  }
  .mr-xs-n3,
  .mx-xs-n3 {
    margin-right: -1rem !important;
  }
  .mb-xs-n3,
  .my-xs-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xs-n3,
  .mx-xs-n3 {
    margin-left: -1rem !important;
  }
  .m-xs-n4 {
    margin: -1.5rem !important;
  }
  .mt-xs-n4,
  .my-xs-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xs-n4,
  .mx-xs-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xs-n4,
  .my-xs-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xs-n4,
  .mx-xs-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xs-n5 {
    margin: -3rem !important;
  }
  .mt-xs-n5,
  .my-xs-n5 {
    margin-top: -3rem !important;
  }
  .mr-xs-n5,
  .mx-xs-n5 {
    margin-right: -3rem !important;
  }
  .mb-xs-n5,
  .my-xs-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xs-n5,
  .mx-xs-n5 {
    margin-left: -3rem !important;
  }
  .m-xs-auto {
    margin: auto !important;
  }
  .mt-xs-auto,
  .my-xs-auto {
    margin-top: auto !important;
  }
  .mr-xs-auto,
  .mx-xs-auto {
    margin-right: auto !important;
  }
  .mb-xs-auto,
  .my-xs-auto {
    margin-bottom: auto !important;
  }
  .ml-xs-auto,
  .mx-xs-auto {
    margin-left: auto !important;
  }
  .ant-display-xs-inline {
    display: inline !important;
  }
  .ant-display-xs-inline-block {
    display: inline-block !important;
  }
  .ant-display-xs-block {
    display: block !important;
  }
  .ant-display-xs-none {
    display: none !important;
  }
  .ant-display-xs-flex {
    display: flex !important;
  }
  .ant-display-xs-inline-flex {
    display: inline-flex !important;
  }
  .ant-flex-xs-row {
    flex-direction: row !important;
  }
  .ant-flex-xs-column {
    flex-direction: column !important;
  }
  .ant-flex-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 768px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
  .ant-display-sm-inline {
    display: inline !important;
  }
  .ant-display-sm-inline-block {
    display: inline-block !important;
  }
  .ant-display-sm-block {
    display: block !important;
  }
  .ant-display-sm-none {
    display: none !important;
  }
  .ant-display-sm-flex {
    display: flex !important;
  }
  .ant-display-sm-inline-flex {
    display: inline-flex !important;
  }
  .ant-flex-sm-row {
    flex-direction: row !important;
  }
  .ant-flex-sm-column {
    flex-direction: column !important;
  }
  .ant-flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 992px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
  .ant-display-md-inline {
    display: inline !important;
  }
  .ant-display-md-inline-block {
    display: inline-block !important;
  }
  .ant-display-md-block {
    display: block !important;
  }
  .ant-display-md-none {
    display: none !important;
  }
  .ant-display-md-flex {
    display: flex !important;
  }
  .ant-display-md-inline-flex {
    display: inline-flex !important;
  }
  .ant-flex-md-row {
    flex-direction: row !important;
  }
  .ant-flex-md-column {
    flex-direction: column !important;
  }
  .ant-flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 1200px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
  .ant-display-lg-inline {
    display: inline !important;
  }
  .ant-display-lg-inline-block {
    display: inline-block !important;
  }
  .ant-display-lg-block {
    display: block !important;
  }
  .ant-display-lg-none {
    display: none !important;
  }
  .ant-display-lg-flex {
    display: flex !important;
  }
  .ant-display-lg-inline-flex {
    display: inline-flex !important;
  }
  .ant-flex-lg-row {
    flex-direction: row !important;
  }
  .ant-flex-lg-column {
    flex-direction: column !important;
  }
  .ant-flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 1600px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
  .ant-display-xl-inline {
    display: inline !important;
  }
  .ant-display-xl-inline-block {
    display: inline-block !important;
  }
  .ant-display-xl-block {
    display: block !important;
  }
  .ant-display-xl-none {
    display: none !important;
  }
  .ant-display-xl-flex {
    display: flex !important;
  }
  .ant-display-xl-inline-flex {
    display: inline-flex !important;
  }
  .ant-flex-xl-row {
    flex-direction: row !important;
  }
  .ant-flex-xl-column {
    flex-direction: column !important;
  }
  .ant-flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .ant-flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
}
.gap-0 {
  gap: 0 !important;
}

.gap-y-0 {
  row-gap: 0 !important;
}

.gap-x-0 {
  column-gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-y-1 {
  row-gap: 0.25rem !important;
}

.gap-x-1 {
  column-gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-y-2 {
  row-gap: 0.5rem !important;
}

.gap-x-2 {
  column-gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-y-3 {
  row-gap: 1rem !important;
}

.gap-x-3 {
  column-gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-y-4 {
  row-gap: 1.5rem !important;
}

.gap-x-4 {
  column-gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-y-5 {
  row-gap: 3rem !important;
}

.gap-x-5 {
  column-gap: 3rem !important;
}

.ant-display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.ant-display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.ant-display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.ant-display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.ant-typography-white {
  color: #fff !important;
}

.ant-typography-primary {
  color: #1890ff !important;
}

.ant-typography-secondary {
  color: #6c757d !important;
}

.ant-typography-success {
  color: #35c613 !important;
}

.ant-typography-info {
  color: #60b6f4 !important;
}

.ant-typography-warning {
  color: #f7c12a !important;
}

.ant-typography-danger {
  color: #ff4d4f !important;
}

.ant-typography-light {
  color: #fafafa !important;
}

.ant-typography-dark {
  color: #343a40 !important;
}

.ant-typography-link {
  color: #3273dc !important;
}

.ant-typography-body {
  color: #212529 !important;
}

.ant-typography-muted {
  color: #6c757d !important;
}

.ant-typography-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.ant-typography-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.ant-blockquote {
  margin-bottom: 1rem;
  font-size: 20px;
}

.ant-blockquote-footer {
  display: block;
  font-size: 12px;
  color: #6c757d;
}
.ant-blockquote-footer::before {
  content: "— ";
}

.ant-typography-left {
  text-align: left !important;
}
.ant-typography-right {
  text-align: right !important;
}
.ant-typography-center {
  text-align: center !important;
}
.ant-typography-justify {
  text-align: justify !important;
}

.ant-lead {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.ant-font-size-xs {
  font-size: 10px;
  line-height: 18px;
}

.ant-font-size-sm {
  font-size: 12px;
  line-height: 20px;
}

.ant-font-size-md {
  font-size: 16px;
  line-height: 24px;
}

.ant-font-size-lg {
  font-size: 20px;
  line-height: 28px;
}

.ant-font-size-xl {
  font-size: 24px;
  line-height: 32px;
}

.ant-font-size-1 {
  font-size: 38px;
  line-height: 46px;
}

.ant-font-size-2 {
  font-size: 30px;
  line-height: 38px;
}

.ant-font-size-3 {
  font-size: 24px;
  line-height: 32px;
}

.ant-font-size-4 {
  font-size: 20px;
  line-height: 28px;
}

.ant-font-size-5 {
  font-size: 16px;
  line-height: 24px;
}

.ant-font-size-6 {
  font-size: 14px;
  line-height: 22px;
}

@media (min-width: 576px) {
  .ant-font-size-xs-xs {
    font-size: 10px;
    line-height: 18px;
  }
  .ant-font-size-xs-sm {
    font-size: 12px;
    line-height: 20px;
  }
  .ant-font-size-xs-md {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-xs-lg {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-xs-xl {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-xs-1 {
    font-size: 38px;
    line-height: 46px;
  }
  .ant-font-size-xs-2 {
    font-size: 30px;
    line-height: 38px;
  }
  .ant-font-size-xs-3 {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-xs-4 {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-xs-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-xs-6 {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 768px) {
  .ant-font-size-sm-xs {
    font-size: 10px;
    line-height: 18px;
  }
  .ant-font-size-sm-sm {
    font-size: 12px;
    line-height: 20px;
  }
  .ant-font-size-sm-md {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-sm-lg {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-sm-xl {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-sm-1 {
    font-size: 38px;
    line-height: 46px;
  }
  .ant-font-size-sm-2 {
    font-size: 30px;
    line-height: 38px;
  }
  .ant-font-size-sm-3 {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-sm-4 {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-sm-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-sm-6 {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .ant-font-size-md-xs {
    font-size: 10px;
    line-height: 18px;
  }
  .ant-font-size-md-sm {
    font-size: 12px;
    line-height: 20px;
  }
  .ant-font-size-md-md {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-md-lg {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-md-xl {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-md-1 {
    font-size: 38px;
    line-height: 46px;
  }
  .ant-font-size-md-2 {
    font-size: 30px;
    line-height: 38px;
  }
  .ant-font-size-md-3 {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-md-4 {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-md-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-md-6 {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .ant-font-size-lg-xs {
    font-size: 10px;
    line-height: 18px;
  }
  .ant-font-size-lg-sm {
    font-size: 12px;
    line-height: 20px;
  }
  .ant-font-size-lg-md {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-lg-lg {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-lg-xl {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-lg-1 {
    font-size: 38px;
    line-height: 46px;
  }
  .ant-font-size-lg-2 {
    font-size: 30px;
    line-height: 38px;
  }
  .ant-font-size-lg-3 {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-lg-4 {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-lg-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-lg-6 {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (min-width: 1600px) {
  .ant-font-size-xl-xs {
    font-size: 10px;
    line-height: 18px;
  }
  .ant-font-size-xl-sm {
    font-size: 12px;
    line-height: 20px;
  }
  .ant-font-size-xl-md {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-xl-lg {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-xl-xl {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-xl-1 {
    font-size: 38px;
    line-height: 46px;
  }
  .ant-font-size-xl-2 {
    font-size: 30px;
    line-height: 38px;
  }
  .ant-font-size-xl-3 {
    font-size: 24px;
    line-height: 32px;
  }
  .ant-font-size-xl-4 {
    font-size: 20px;
    line-height: 28px;
  }
  .ant-font-size-xl-5 {
    font-size: 16px;
    line-height: 24px;
  }
  .ant-font-size-xl-6 {
    font-size: 14px;
    line-height: 22px;
  }
}
.ant-typography-wrap {
  white-space: normal !important;
}

.ant-typography-nowrap {
  white-space: nowrap !important;
}

.ant-typography-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ant-unordered-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.ant-typography-lowercase {
  text-transform: lowercase !important;
}

.ant-typography-uppercase {
  text-transform: uppercase !important;
}

.ant-typography-capitalize {
  text-transform: capitalize !important;
}

.ant-typography-italic {
  font-style: italic !important;
}

ol.ant-ordered-list-unstyled {
  padding-left: 0;
  list-style: none;
}
ol.ant-ordered-list-lower-alpha {
  list-style-type: lower-alpha;
}
ol.ant-ordered-list-lower-roman {
  list-style-type: lower-roman;
}
ol.ant-ordered-list-upper-alpha {
  list-style-type: upper-alpha;
}
ol.ant-ordered-list-upper-roman {
  list-style-type: upper-roman;
}

.ant-font-weight-bold {
  font-weight: 700;
}
.ant-font-weight-semibold {
  font-weight: 600;
}
.ant-font-weight-normal {
  font-weight: 400;
}
.ant-font-weight-default {
  font-weight: 400;
}
.ant-font-weight-light {
  font-weight: 300;
}

.ant-visible {
  visibility: visible !important;
}

.ant-invisible {
  visibility: hidden !important;
}

.flatpickr-months {
  margin: 0.5rem 0;
}
.flatpickr-months .flatpickr-month, .flatpickr-months .flatpickr-next-month, .flatpickr-months .flatpickr-prev-month {
  height: auto;
  position: relative;
}
.flatpickr-months .flatpickr-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg, .flatpickr-months .flatpickr-prev-month:hover svg {
  fill: #1890ff;
}
.flatpickr-months .flatpickr-month {
  color: #212529;
}

.flatpickr-current-month {
  padding: 13px 0 0 0;
  font-size: 115%;
}
.flatpickr-current-month span.cur-month {
  font-weight: 700;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(24, 144, 255, 0.15);
}

.numInputWrapper:hover {
  background: rgba(24, 144, 255, 0.15);
}

.flatpickr-day {
  border-radius: 0;
  font-weight: 500;
  color: #212529;
}
.flatpickr-day.today {
  border-color: #1890ff;
}
.flatpickr-day.today:hover {
  background: #1890ff;
  border-color: #1890ff;
}
.flatpickr-day:hover {
  background: rgba(24, 144, 255, 0.1);
  border-color: rgba(0, 0, 0, 0);
}

span.flatpickr-weekday {
  color: #212529;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #1890ff;
  border-color: #1890ff;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #1890ff;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 0;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0;
}

.flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-month:focus {
  background: rgba(24, 144, 255, 0.1);
}

.flatpickr-monthSelect-month.selected {
  background-color: #1890ff;
}
