/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-rsc {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.flex-rcs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.flex-rcc {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-rbs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-rbc {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flex-rec {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.flex-res {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-ccc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-ccs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flex-csc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.flex-cec {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.flex-cbs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-cbc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.flex-cbb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
}

.flex-gap-5 {
  gap: 5px;
}

.flex-gap-10 {
  gap: 10px;
}

.flex-gap-20 {
  gap: 20px;
}

.flex-gap-30 {
  gap: 30px;
}

.flex-rr {
  flex-direction: row-reverse;
}

.flex-cr {
  flex-direction: column-reverse;
}

.separator {
  width: 100%;
  height: 1px;
  display: block;
  background: #5575a6;
}

.disabled {
  pointer-events: none !important;
}

.italic {
  font-style: italic;
}

/*
* Customized checkbox
*/
/* Customize the label (the container) */
.styled-checkbox-container {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

/* Hide the browser's information checkbox */
.styled-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.styled-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.styled-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 3px;
  position: relative;
  vertical-align: middle;
  box-sizing: border-box;
  border: 1px solid #2b5390;
  transition: border-color 90ms cubic-bezier(0, 0, 0.2, 0.1), background-color 90ms cubic-bezier(0, 0, 0.2, 0);
}
.styled-checkbox.checked:after {
  top: 4px;
  left: 3px;
  width: 8px;
  opacity: 1;
  content: "";
  height: 4px;
  position: absolute;
  box-sizing: content-box;
  transform: rotate(-45deg);
  border-left: 2px solid #2b5390;
  border-bottom: 2px solid #2b5390;
  border-bottom: 2px solid currentColor;
  transition: opacity 90ms cubic-bezier(0, 0, 0.2, 0.1);
}
.styled-checkbox input {
  opacity: 0;
}

/*Checkbox as switch*/
.switch {
  width: 32px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.switch input {
  display: none;
}

.slider {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  cursor: pointer;
  position: absolute;
  background: #e4e4e4;
}

.slider:before {
  left: 2px;
  bottom: 2px;
  width: 12px;
  content: "";
  height: 12px;
  transition: 0.4s;
  position: absolute;
  background-color: #fff;
}

input:checked + .slider {
  background: #6bb130;
}

input:checked + .slider:before {
  transform: translateX(16px);
}

.slider.round {
  border-radius: 15px;
}

.slider.round:before {
  border-radius: 50%;
}

/**

MARKETPLACE - HEADER

*/
.marketplace-header {
  padding-top: 0;
  position: relative;
  margin-bottom: 32px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  top: 0;
}
.marketplace-header h3 {
  color: #2b5390;
  margin-bottom: 0;
}

.horizontal-line {
  width: 80%;
  background-color: #e4e4e4;
  height: 1px;
  border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.ag-full-width-height {
  width: 100%;
  height: 100%;
}

.rounded-with-shadow {
  border: 1px solid #f1f1f1;
  box-shadow: 0px 3px 5px rgba(69, 69, 69, 0.2);
  border-radius: 4px;
}

.container-with-side-bar-shrinked {
  width: calc(100% - 31px);
  left: 31px;
  transition: all 0.2s ease-in-out 0.2s;
}

.container-with-side-bar-opened {
  position: relative;
  width: calc(100% - 230px);
  left: 230px;
  transition: all 0.1s ease-in-out 0.1s;
}

.ci-check-circle-32-f {
  color: #6bb130;
}

.tb-hourglass {
  color: gray;
}

.datepicker-with-tooltip tr > td:first-of-type > .datepicker-tooltip .datepicker-tooltip-text {
  left: 0;
  margin-left: 0;
}
.datepicker-with-tooltip tr > td:nth-of-type(7) > .datepicker-tooltip .datepicker-tooltip-text,
.datepicker-with-tooltip tr:first-of-type > td:last-of-type > .datepicker-tooltip .datepicker-tooltip-text {
  right: 0;
  margin-left: 0;
  left: auto;
}
.datepicker-with-tooltip .datepicker-tooltip .datepicker-tooltip-text {
  visibility: hidden;
  background-color: #1b3359;
  color: white;
  text-align: center;
  border-radius: 2px;
  padding: 8px 12px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  font-size: 13px;
  width: max-content;
}
.datepicker-with-tooltip .datepicker-tooltip:hover::after {
  content: "";
  position: absolute;
  top: -25%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #1b3359 transparent transparent transparent;
}
.datepicker-with-tooltip .datepicker-tooltip:hover .datepicker-tooltip-text {
  visibility: visible;
}

.autodetection-classes-count-img {
  margin-right: 10px;
  height: 16px;
  width: 16px;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.pl-5 {
  padding-left: 5px;
}

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

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

.pr-10 {
  padding-right: 10px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

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

.pb-10 {
  padding-bottom: 10px;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.ml-5 {
  margin-left: 5px;
}

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

.mr-5 {
  margin-right: 5px;
}

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

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

.mt-10 {
  margin-top: 10px;
}

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

.mb-10 {
  margin-bottom: 10px;
}

.gap-10 {
  gap: 10px;
}

.h-500 {
  height: 500px;
}

.map {
  width: 100%;
  height: 100%;
}
.map .ol-custom-overviewmap,
.map .ol-custom-overviewmap.ol-uncollapsible {
  bottom: auto;
  left: auto;
  right: 33px;
  top: 33px;
  background-color: #181818 !important;
}
.map .ol-custom-overviewmap .ol-overviewmap-map {
  border: 2px solid silver;
  width: 230px;
  height: 230px;
  box-sizing: content-box;
}
.map .ol-custom-overviewmap .ol-overviewmap-box {
  border: 2px solid #fe9e2f;
}
.map .ol-custom-overviewmap:not(.ol-collapsed) button {
  display: none;
}

.map-tools {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.map-drawer {
  position: absolute;
  right: 40px;
  top: 0;
  background-color: white;
  border-right: 1px solid #e4e4e4;
  z-index: 10;
}

.darkBackground {
  background-color: #181818;
}

.pano-image {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}

.hidden {
  visibility: hidden;
  z-index: -1;
}

.alignImageryCenter {
  margin-left: -460px !important;
}

.switcher-labels {
  padding: 12px;
  box-sizing: border-box;
  width: 230px;
  max-height: 700px;
  overflow-x: hidden;
  border: 2px solid #224273;
  border-radius: 0 0 2px 2px;
}
.switcher-labels-header {
  margin-bottom: 10px;
}
.switcher-labels h4 {
  font-weight: bold;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.0025em;
  color: #181818;
  margin: 2px 0 0 0;
}
.switcher-labels-item {
  line-height: 26px;
}
.switcher-labels-item p {
  font-weight: 400;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.004em;
  color: #181818;
  height: 30px;
  display: flex;
  align-items: center;
}
.switcher-labels-item p .zoom-information {
  color: silver;
  margin-left: 5px;
}

.pano-image-dialog .mat-dialog-container,
.pano-image-dialog .mat-dialog-actions {
  padding: 0;
}
.pano-image-dialog .psv-notification {
  bottom: 0;
}
.pano-image-dialog .psv-compass {
  position: absolute;
  z-index: 100;
  top: 20px;
  left: 20px;
}
.pano-image-dialog .psv-compass svg {
  position: absolute;
}

.ortho-dialog .mat-dialog-container {
  padding-bottom: 0;
  width: 1200px;
  height: 100%;
}

.drone-imagery-date {
  background: #f4f6f9 !important;
  font-weight: 700;
}

.map .drag-box {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid white;
}
.map .ol-control button {
  color: transparent !important;
}
.map .ol-control button::before, .map .ol-control button::after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 0;
  height: 0;
  clear: both;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}
.map .ol-control button::before {
  left: -14px !important;
  transform: rotate(90deg) !important;
}
.map .ol-control button::after {
  left: 17px !important;
  transform: rotate(-90deg) !important;
}
.map .ol-swipe {
  background-color: transparent !important;
}
.map .ol-swipe::before {
  width: 2px;
  transform: translate(-1px, 0);
}
.map .ol-swipe::after {
  background-color: transparent !important;
}
.map .ol-swipe:active button::after,
.map .ol-swipe:active button::before {
  content: none !important;
}
.map .ol-swipe button {
  background-color: transparent !important;
}
.map .ol-swipe button:hover {
  outline: none !important;
}

.logistics-output-table-data-slicer-container {
  padding: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  border: 1px solid #f1f1f1;
  flex-wrap: wrap;
  row-gap: 10px;
}
.logistics-output-table-data-slicer-container .data-slicer-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  width: 100px;
  margin-right: 25px;
}
.logistics-output-table-data-slicer-container .data-slicer-title {
  display: flex;
  column-gap: 10px;
  margin-right: 10px;
}
.logistics-output-table-data-slicer-container .input-container {
  display: flex;
  column-gap: 10px;
  margin-right: 10px;
  width: calc(100% - 120px);
}
.logistics-output-table-data-slicer-container .input-container tbs-select,
.logistics-output-table-data-slicer-container .input-container tbs-datepicker {
  padding-bottom: 0;
}
.logistics-output-table-data-slicer-container .input-container .search-shipment-wrapper,
.logistics-output-table-data-slicer-container .input-container .search-pallet-id-wrapper,
.logistics-output-table-data-slicer-container .input-container .delivered-select-wrapper {
  width: 15%;
  max-width: 240px;
}
.logistics-output-table-data-slicer-container .input-container .datepicker-container {
  width: 250px;
}
.logistics-output-table-data-slicer-container .input-container .mat-calendar-icon {
  font-size: 24px;
  color: #454545;
}
.logistics-output-table-data-slicer-container .actions-container {
  display: flex;
}
.logistics-output-table-data-slicer-container .actions-container button {
  width: 124px;
}
.logistics-output-table-data-slicer-container .actions-container .tbs-ghost-button {
  margin-right: 10px;
}

.logistic-output-table-note-container {
  margin-top: 15px;
  margin-bottom: 30px;
}

.logistic-output-table-breadcrumb-container {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  column-gap: 8px;
  margin-bottom: 10px;
  padding: 0 14px;
}
.logistic-output-table-breadcrumb-container span:nth-child(odd) {
  cursor: pointer;
}
.logistic-output-table-breadcrumb-container span:first-child {
  text-transform: uppercase;
}
.logistic-output-table-breadcrumb-container span:last-child {
  color: #2b5390;
}

.logistic-output-table-container .tb-flag {
  visibility: hidden;
}
.logistic-output-table-container .ag-row-hover .tb-flag {
  font-size: 20px;
  visibility: visible;
  cursor: pointer;
}
.logistic-output-table-container .ag-row-hover .tb-flag:hover {
  color: #f25037;
}
.logistic-output-table-container .icon-text-cell-container .mat-icon {
  margin-top: 10px;
  color: #f25037;
  cursor: pointer;
}
.logistic-output-table-container .shipment-output-cell {
  display: flex;
  align-items: center;
}
.logistic-output-table-container .ag-header-container,
.logistic-output-table-container .ag-floating-top-container,
.logistic-output-table-container .ag-floating-bottom-container,
.logistic-output-table-container .ag-sticky-top-container {
  background: #f9f9f9;
}
.logistic-output-table-container .ag-header-cell-comp-wrapper .ag-cell-label-container .ag-header-cell-label {
  display: flex;
  padding: 11px 16px;
}
.logistic-output-table-container .ag-header-cell-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.logistic-output-table-container .ag-cell {
  padding-left: 10px !important;
}
.logistic-output-table-container .ag-cell .ag-cell-wrapper .ag-cell-value {
  text-align: center;
}
.logistic-output-table-container .ag-floating-filter-button .ag-floating-filter-button-button .ag-icon-filter {
  background: transparent url("/assets/images/icons/common/filter.svg") center/contain no-repeat;
  color: transparent;
  height: 12px;
  width: 12px;
}
.logistic-output-table-container .ag-ltr .ag-floating-filter-button {
  margin-left: calc(var(--ag-grid-size) * 2);
}
.logistic-output-table-container .ag-root-wrapper {
  border: solid 0px;
  border-color: var(--ag-border-color);
}
.logistic-output-table-container .ag-floating-filter .ag-floating-filter-body .ag-floating-filter-input .ag-text-field .ag-text-field-input-wrapper .ag-text-field-input {
  border: 1px solid silver;
  border-radius: 3px;
  background-color: white;
  height: 24px;
}
.logistic-output-table-container .ag-floating-filter:first-child .ag-floating-filter-body .ag-floating-filter-input .ag-text-field .ag-text-field-input-wrapper .ag-text-field-input {
  display: none;
}
.logistic-output-table-container .shipment-actual-cell {
  display: flex;
  align-items: center;
}
.logistic-output-table-container .ag-checkbox-input-wrapper.ag-checked::after {
  color: #2b5390;
}
.logistic-output-table-container .flag-cell .icon-text-cell-container {
  height: 100%;
  display: flex;
  align-items: center;
}
.logistic-output-table-container .flag-cell .icon-text-cell-container .tb-flag-f {
  font-size: 20px;
  visibility: visible;
  cursor: pointer;
  color: #f25037;
}
.logistic-output-table-container .ag-row-hover {
  background-color: #f4f6f9;
  cursor: pointer;
}
.logistic-output-table-container .ag-row-odd {
  background-color: #f9f9f9;
}
.logistic-output-table-container .ag-cell-focus {
  border-color: #8098bc;
}
.logistic-output-table-container .ag-cell-focus:focus-within {
  border-color: #8098bc !important;
}
.logistic-output-table-container .ag-root-wrapper-body {
  border: 1px solid;
  border-color: var(--ag-border-color);
  min-height: 600px;
}
.logistic-output-table-container .ag-theme-material .ag-layout-auto-height .ag-center-cols-clipper,
.logistic-output-table-container .ag-theme-material .ag-layout-auto-height .ag-center-cols-container,
.logistic-output-table-container .ag-theme-material .ag-layout-print .ag-center-cols-clipper,
.logistic-output-table-container .ag-theme-material .ag-layout-print .ag-center-cols-container {
  min-height: 600px;
}
.logistic-output-table-container .ag-theme-material .ag-status-bar {
  border: 0;
}
.logistic-output-table-container .ag-theme-material input[class^=ag-]:not([type]),
.logistic-output-table-container .ag-theme-material input[class^=ag-][type=text],
.logistic-output-table-container .ag-theme-material input[class^=ag-][type=number],
.logistic-output-table-container .ag-theme-material input[class^=ag-][type=tel],
.logistic-output-table-container .ag-theme-material input[class^=ag-][type=date],
.logistic-output-table-container .ag-theme-material input[class^=ag-][type=datetime-local],
.logistic-output-table-container .ag-theme-material textarea[class^=ag-] {
  padding-bottom: 0;
}

.ag-grid-sort-icon {
  font-size: 17px;
  color: gray;
}
.ag-grid-sort-icon:hover {
  color: #181818;
}

.version {
  position: fixed;
  bottom: 5px;
  left: 5px;
  z-index: 3000;
  color: darkgrey;
  font-size: x-small;
}

.sidenav-container .mat-drawer-inner-container {
  overflow: hidden !important;
}

.mat-sidenav {
  display: flex;
  flex-direction: column;
  --mat-sidenav-container-background-color: #1b3359;
}

.mat-divider {
  border-top-color: #e4e4e4;
}

.core-radio-button.mat-radio-button .mat-radio-checked .mat-radio-inner-circle {
  transition: none;
  background: #2b5390 !important;
}
.core-radio-button.mat-radio-button .mat-radio-inner-circle {
  background: #2b5390 !important;
}
.core-radio-button.mat-radio-button .mat-radio-outer-circle {
  border-width: 1px;
  border-color: #2b5390 !important;
}
.core-radio-button.mat-radio-button .mat-radio-ripple {
  display: none;
}

.data-slicer-popup .mat-tab-nav-bar,
.data-slicer-popup .mat-tab-header {
  border-bottom: none;
}
.data-slicer-popup .mat-tab-body-content {
  min-height: 150px;
}
.data-slicer-popup .mat-tab-label {
  margin-bottom: 7px;
}
.data-slicer-popup .mat-tab-label {
  min-width: 42px;
  max-width: 100px;
  padding: 3px 8px;
  border-radius: 2px;
  margin-right: 15px;
  height: 20px;
  color: gray;
  background-color: #f1f1f1;
}
.data-slicer-popup .mat-tab-label-active {
  color: #224273;
  background: #d5dde9;
}
.data-slicer-popup .mat-tab-group.mat-primary .mat-ink-bar,
.data-slicer-popup .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  display: none;
}

.project-verification .c--core-input-label {
  text-align: left;
}

.mat-paginator-container {
  justify-content: space-between !important;
}
.mat-paginator-container .tbs-option-text {
  font-size: 15px !important;
}
.mat-paginator-container .mat-select-panel-wrap .mat-select-panel {
  margin-top: -50px !important;
}

.mat-paginator-page-size-label,
.mat-paginator-range-label {
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.001em;
  color: gray;
}

.mat-select-value-text {
  color: #181818;
  font-size: 15px;
}

.mat-form-field-underline {
  height: 0 !important;
}

.cdk-overlay-dark-backdrop {
  background: rgba(24, 24, 24, 0.8);
}

a {
  color: #2b5390;
}

.pano-modal .mat-dialog-container {
  padding: 0;
}

.cdk-overlay-pane .tb-notification {
  right: 5px !important;
}

.toggleLayerButton {
  cursor: pointer;
  margin-right: 3px;
}

.toggleLayerButton:hover {
  background-color: rgb(170, 170, 170);
}

.viewer-overlay {
  position: fixed;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  padding: 5px;
  margin: 32px;
}

.viewer-overlay-container {
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.viewer-overlay::-webkit-scrollbar {
  display: none;
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./node_modules/@ngx-terabase/ui/styles.scss?ngGlobalStyle ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
  --tbs-gutter-x: 1rem;
  padding-right: var(--tbs-gutter-x);
  padding-left: var(--tbs-gutter-x);
}

.g-0 {
  --tbs-gutter-x: 0rem;
}

.g-1 {
  --tbs-gutter-x: 1rem;
}

.g-2 {
  --tbs-gutter-x: 2rem;
}

.g-3 {
  --tbs-gutter-x: 3rem;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.container {
  --tbs-gutter-x: 0.5rem;
  width: 100%;
  padding-right: var(--tbs-gutter-x, 0.75rem);
  padding-left: var(--tbs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --tbs-gutter-x: -0.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-right: var(--tbs-gutter-x);
  margin-left: var(--tbs-gutter-x);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  max-width: 100%;
  padding-right: calc(var(--tbs-gutter-x) * 0.5);
  padding-left: calc(var(--tbs-gutter-x) * 0.5);
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: calc(var(--tbs-gutter-x) * 0.5);
  padding-left: calc(var(--tbs-gutter-x) * 0.5);
}

.grid-row {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: space-between;
}

.grid-item-grow {
  flex: 1;
}

.grid-item-1 {
  width: calc(8.3333333333% * 1 - 8px);
}

.grid-item-2 {
  width: calc(8.3333333333% * 2 - 8px);
}

.grid-item-3 {
  width: calc(8.3333333333% * 3 - 8px);
}

.grid-item-4 {
  width: calc(8.3333333333% * 4 - 8px);
}

.grid-item-5 {
  width: calc(8.3333333333% * 5 - 8px);
}

.grid-item-6 {
  width: calc(8.3333333333% * 6 - 8px);
}

.grid-item-7 {
  width: calc(8.3333333333% * 7 - 8px);
}

.grid-item-8 {
  width: calc(8.3333333333% * 8 - 8px);
}

.grid-item-9 {
  width: calc(8.3333333333% * 9 - 8px);
}

.grid-item-10 {
  width: calc(8.3333333333% * 10 - 8px);
}

.grid-item-11 {
  width: calc(8.3333333333% * 11 - 8px);
}

.grid-item-12 {
  width: calc(8.3333333333% * 12 - 8px);
}

.grid-item-12 {
  width: 100%;
}

.tb-headline-1 {
  font: normal 400 100px / 120px "Arimo", sans-serif;
}

.tb-headline-2 {
  font: normal 400 60px / 72px "Arimo", sans-serif;
}

.tb-headline-3 {
  font: normal 400 50px / 67px "Arimo", sans-serif;
}

.tb-headline-4 {
  font: normal 400 36px / 43px "Arimo", sans-serif;
}

.tb-headline-5 {
  font: normal 400 25px / 33px "Arimo", sans-serif;
}

.tb-headline-6 {
  font: normal 400 20px / 24px "Arimo", sans-serif;
}

.tb-subtitle-primary {
  font: normal 400 17px / 24px "Arimo", sans-serif;
}

.tb-subtitle-secondary {
  font: normal 400 15px / 20px "Arimo", sans-serif;
}

.tb-body-primary {
  font: normal 400 15px / 22px "Arimo", sans-serif;
}

.tb-body-secondary {
  font: normal 400 13px / 19px "Arimo", sans-serif;
}

.tb-caption {
  font: normal 400 11px / 15px "Arimo", sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar:hover {
  background-color: var(--tbs-neutral-400);
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  background-color: var(--tbs-neutral-800);
  border-radius: 4px;
  min-height: 30px;
  border: 1px solid var(--tbs-neutral-400);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--tbs-neutral-1000);
  border: 0px;
}

.m-1 {
  margin: 8px;
}

.mt-1 {
  margin-top: 8px;
}

.mr-1 {
  margin-right: 8px;
}

.mb-1 {
  margin-bottom: 8px;
}

.ml-1 {
  margin-left: 8px;
}

.m-2 {
  margin: 16px;
}

.mt-2 {
  margin-top: 16px;
}

.mr-2 {
  margin-right: 16px;
}

.mb-2 {
  margin-bottom: 16px;
}

.ml-2 {
  margin-left: 16px;
}

.m-3 {
  margin: 24px;
}

.mt-3 {
  margin-top: 24px;
}

.mr-3 {
  margin-right: 24px;
}

.mb-3 {
  margin-bottom: 24px;
}

.ml-3 {
  margin-left: 24px;
}

.m-4 {
  margin: 32px;
}

.mt-4 {
  margin-top: 32px;
}

.mr-4 {
  margin-right: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}

.ml-4 {
  margin-left: 32px;
}

.m-5 {
  margin: 40px;
}

.mt-5 {
  margin-top: 40px;
}

.mr-5 {
  margin-right: 40px;
}

.mb-5 {
  margin-bottom: 40px;
}

.ml-5 {
  margin-left: 40px;
}

.p-1 {
  padding: 8px;
}

.pt-1 {
  padding-top: 8px;
}

.pr-1 {
  padding-right: 8px;
}

.pb-1 {
  padding-bottom: 8px;
}

.pl-1 {
  padding-left: 8px;
}

.p-2 {
  padding: 16px;
}

.pt-2 {
  padding-top: 16px;
}

.pr-2 {
  padding-right: 16px;
}

.pb-2 {
  padding-bottom: 16px;
}

.pl-2 {
  padding-left: 16px;
}

.p-3 {
  padding: 24px;
}

.pt-3 {
  padding-top: 24px;
}

.pr-3 {
  padding-right: 24px;
}

.pb-3 {
  padding-bottom: 24px;
}

.pl-3 {
  padding-left: 24px;
}

.p-4 {
  padding: 32px;
}

.pt-4 {
  padding-top: 32px;
}

.pr-4 {
  padding-right: 32px;
}

.pb-4 {
  padding-bottom: 32px;
}

.pl-4 {
  padding-left: 32px;
}

.p-5 {
  padding: 40px;
}

.pt-5 {
  padding-top: 40px;
}

.pr-5 {
  padding-right: 40px;
}

.pb-5 {
  padding-bottom: 40px;
}

.pl-5 {
  padding-left: 40px;
}

.cdk-overlay-container {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
}

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.cdk-overlay-backdrop {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  position: absolute;
  pointer-events: auto;
  z-index: 1000;
}

.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  z-index: 1000;
}

.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}

.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.cdk-global-scrollblock body {
  overflow-x: visible;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

div {
  box-sizing: border-box;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  outline: none;
  background-color: transparent;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button {
  outline: none;
  border: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
  outline: none;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the information vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Removing padding from lists, paragraphs and menu
 */
menu,
ol,
ul,
p {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "terabase-icons";
  src: url('terabase-icons.eot?lkqn55');
  src: url('terabase-icons.eot?lkqn55#iefix') format("embedded-opentype"), url('terabase-icons.ttf?lkqn55') format("truetype"), url('terabase-icons.woff?lkqn55') format("woff"), url('terabase-icons.svg?lkqn55#terabase-icons') format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i[class^=tb-],
i[class*=" tb-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "terabase-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tb-stock:before {
  content: "\e907";
}

.tb-warehouse:before {
  content: "\e908";
}

.tb-delivery:before {
  content: "\e909";
}

.tb-pin:before {
  content: "\e905";
}

.tb-pin-plus:before {
  content: "\e904";
}

.tb-wind:before {
  content: "\e900";
}

.tb-flag:before {
  content: "\e901";
}

.tb-flag-f:before {
  content: "\e902";
}

.tb-solar:before {
  content: "\e903";
}

.tb-drone:before {
  content: "\e949";
}

.tb-turn-off:before {
  content: "\e970";
}

@font-face {
  font-family: "calcite-ui";
  src: url('calcite-ui.eot?942dg');
  src: url('calcite-ui.eot?942dg#iefix') format("embedded-opentype"), url('calcite-ui.ttf?942dg') format("truetype"), url('calcite-ui.woff?942dg') format("woff"), url('calcite-ui.svg?942dg#calcite-ui') format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i[class^=ci-],
i[class*=" ci-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "calcite-ui" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ci-x-16:before {
  content: "\e900";
}

.ci-x-24:before {
  content: "\e901";
}

.ci-x-32:before {
  content: "\e902";
}

.ci-2x-16:before {
  content: "\e972";
}

.ci-2x-24:before {
  content: "\e973";
}

.ci-2x-32:before {
  content: "\e974";
}

.ci-4x-16:before {
  content: "\e975";
}

.ci-4x-24:before {
  content: "\e976";
}

.ci-4x-32:before {
  content: "\e977";
}

.ci-8x-16:before {
  content: "\e978";
}

.ci-8x-24:before {
  content: "\e979";
}

.ci-8x-32:before {
  content: "\e97a";
}

.ci-x-160:before {
  content: "\e97b";
}

.ci-x-240:before {
  content: "\e97c";
}

.ci-x-320:before {
  content: "\e97d";
}

.ci-d-explore-16:before {
  content: "\e97e";
}

.ci-d-explore-24:before {
  content: "\e97f";
}

.ci-d-explore-32:before {
  content: "\e980";
}

.ci-x-161:before {
  content: "\e981";
}

.ci-x-241:before {
  content: "\e982";
}

.ci-x-321:before {
  content: "\e983";
}

.ci-d-glasses-16:before {
  content: "\e984";
}

.ci-d-glasses-24:before {
  content: "\e985";
}

.ci-d-glasses-32:before {
  content: "\e986";
}

.ci-x-162:before {
  content: "\e987";
}

.ci-x-242:before {
  content: "\e988";
}

.ci-x-322:before {
  content: "\e989";
}

.ci-x-163:before {
  content: "\e98a";
}

.ci-x-243:before {
  content: "\e98b";
}

.ci-x-323:before {
  content: "\e98c";
}

.ci-view-16:before {
  content: "\e98d";
}

.ci-view-24:before {
  content: "\e98e";
}

.ci-view-32:before {
  content: "\e98f";
}

.ci-access-string-results-16:before {
  content: "\e990";
}

.ci-access-string-results-24:before {
  content: "\e991";
}

.ci-access-string-results-32:before {
  content: "\e992";
}

.ci-activity-monitor-16:before {
  content: "\e993";
}

.ci-activity-monitor-24:before {
  content: "\e994";
}

.ci-activity-monitor-32:before {
  content: "\e995";
}

.ci-actual-size-16:before {
  content: "\e996";
}

.ci-actual-size-24:before {
  content: "\e997";
}

.ci-actual-size-32:before {
  content: "\e998";
}

.ci-add-in-16:before {
  content: "\e999";
}

.ci-add-in-24:before {
  content: "\e99a";
}

.ci-add-in-32:before {
  content: "\e99b";
}

.ci-add-in-edit-16:before {
  content: "\e99c";
}

.ci-add-in-edit-24:before {
  content: "\e99d";
}

.ci-add-in-edit-32:before {
  content: "\e99e";
}

.ci-add-in-new-16:before {
  content: "\e99f";
}

.ci-add-in-new-24:before {
  content: "\e9a0";
}

.ci-add-in-new-32:before {
  content: "\e9a1";
}

.ci-add-layer-16:before {
  content: "\e9a2";
}

.ci-add-layer-24:before {
  content: "\e9a3";
}

.ci-add-layer-32:before {
  content: "\e9a4";
}

.ci-address-book-16:before {
  content: "\e9a5";
}

.ci-address-book-24:before {
  content: "\e9a6";
}

.ci-address-book-32:before {
  content: "\e9a7";
}

.ci-add-text-16:before {
  content: "\e9a8";
}

.ci-add-text-24:before {
  content: "\e9a9";
}

.ci-add-text-32:before {
  content: "\e9aa";
}

.ci-all-servers-16:before {
  content: "\e9ab";
}

.ci-all-servers-24:before {
  content: "\e9ac";
}

.ci-all-servers-32:before {
  content: "\e9ad";
}

.ci-altitude-16:before {
  content: "\e9ae";
}

.ci-altitude-24:before {
  content: "\e9af";
}

.ci-altitude-32:before {
  content: "\e9b0";
}

.ci-analysis-16:before {
  content: "\e9b1";
}

.ci-analysis-24:before {
  content: "\e9b2";
}

.ci-analysis-32:before {
  content: "\e9b3";
}

.ci-analysis-overlay-16:before {
  content: "\e9b4";
}

.ci-analysis-overlay-24:before {
  content: "\e9b5";
}

.ci-analysis-overlay-32:before {
  content: "\e9b6";
}

.ci-annotate-tool-16:before {
  content: "\e9b7";
}

.ci-annotate-tool-24:before {
  content: "\e9b8";
}

.ci-annotate-tool-32:before {
  content: "\e9b9";
}

.ci-antenna-height-16:before {
  content: "\e9ba";
}

.ci-antenna-height-24:before {
  content: "\e9bb";
}

.ci-antenna-height-32:before {
  content: "\e9bc";
}

.ci-app-gear-16:before {
  content: "\e9bd";
}

.ci-app-gear-24:before {
  content: "\e9be";
}

.ci-app-gear-32:before {
  content: "\e9bf";
}

.ci-app-launcher-16:before {
  content: "\e9c0";
}

.ci-app-launcher-24:before {
  content: "\e9c1";
}

.ci-app-launcher-32:before {
  content: "\e9c2";
}

.ci-applications-16:before {
  content: "\e9c3";
}

.ci-applications-24:before {
  content: "\e9c4";
}

.ci-applications-32:before {
  content: "\e9c5";
}

.ci-app-run-16:before {
  content: "\e9c6";
}

.ci-app-run-24:before {
  content: "\e9c7";
}

.ci-app-run-32:before {
  content: "\e9c8";
}

.ci-apps-16:before {
  content: "\e9c9";
}

.ci-apps-24:before {
  content: "\e9ca";
}

.ci-apps-32:before {
  content: "\e9cb";
}

.ci-app-update-16:before {
  content: "\e9cc";
}

.ci-app-update-24:before {
  content: "\e9cd";
}

.ci-app-update-32:before {
  content: "\e9ce";
}

.ci-arcgis-online-16:before {
  content: "\e9cf";
}

.ci-arcgis-online-24:before {
  content: "\e9d0";
}

.ci-arcgis-online-32:before {
  content: "\e9d1";
}

.ci-arrow-bold-down-16:before {
  content: "\e9d2";
}

.ci-arrow-bold-down-24:before {
  content: "\e9d3";
}

.ci-arrow-bold-down-32:before {
  content: "\e9d4";
}

.ci-arrow-bold-left-16:before {
  content: "\e9d5";
}

.ci-arrow-bold-left-24:before {
  content: "\e9d6";
}

.ci-arrow-bold-left-32:before {
  content: "\e9d7";
}

.ci-arrow-bold-right-16:before {
  content: "\e9d8";
}

.ci-arrow-bold-right-24:before {
  content: "\e9d9";
}

.ci-arrow-bold-right-32:before {
  content: "\e9da";
}

.ci-arrow-bold-up-16:before {
  content: "\e9db";
}

.ci-arrow-bold-up-24:before {
  content: "\e9dc";
}

.ci-arrow-bold-up-32:before {
  content: "\e9dd";
}

.ci-arrow-double-diagonal-1-16:before {
  content: "\e9de";
}

.ci-arrow-double-diagonal-1-24:before {
  content: "\e9df";
}

.ci-arrow-double-diagonal-1-32:before {
  content: "\e9e0";
}

.ci-arrow-double-diagonal-2-16:before {
  content: "\e9e1";
}

.ci-arrow-double-diagonal-2-24:before {
  content: "\e9e2";
}

.ci-arrow-double-diagonal-2-32:before {
  content: "\e9e3";
}

.ci-arrow-double-horizontal-16:before {
  content: "\e9e4";
}

.ci-arrow-double-horizontal-24:before {
  content: "\e9e5";
}

.ci-arrow-double-horizontal-32:before {
  content: "\e9e6";
}

.ci-arrow-double-vertical-16:before {
  content: "\e9e7";
}

.ci-arrow-double-vertical-24:before {
  content: "\e9e8";
}

.ci-arrow-double-vertical-32:before {
  content: "\e9e9";
}

.ci-arrow-down-16:before {
  content: "\e9ea";
}

.ci-arrow-down-24:before {
  content: "\e9eb";
}

.ci-arrow-down-32:before {
  content: "\e9ec";
}

.ci-arrow-down-left-16:before {
  content: "\e9ed";
}

.ci-arrow-down-left-24:before {
  content: "\e9ee";
}

.ci-arrow-down-left-32:before {
  content: "\e9ef";
}

.ci-arrow-down-right-16:before {
  content: "\e9f0";
}

.ci-arrow-down-right-24:before {
  content: "\e9f1";
}

.ci-arrow-down-right-32:before {
  content: "\e9f2";
}

.ci-arrow-left-16:before {
  content: "\e9f3";
}

.ci-arrow-left-24:before {
  content: "\e9f4";
}

.ci-arrow-left-32:before {
  content: "\e9f5";
}

.ci-arrow-right-16:before {
  content: "\e9f6";
}

.ci-arrow-right-24:before {
  content: "\e9f7";
}

.ci-arrow-right-32:before {
  content: "\e9f8";
}

.ci-arrow-right-left-16:before {
  content: "\e9f9";
}

.ci-arrow-right-left-24:before {
  content: "\e9fa";
}

.ci-arrow-right-left-32:before {
  content: "\e9fb";
}

.ci-arrow-up-16:before {
  content: "\e9fc";
}

.ci-arrow-up-24:before {
  content: "\e9fd";
}

.ci-arrow-up-32:before {
  content: "\e9fe";
}

.ci-arrow-up-down-16:before {
  content: "\e9ff";
}

.ci-arrow-up-down-24:before {
  content: "\ea00";
}

.ci-arrow-up-down-32:before {
  content: "\ea01";
}

.ci-arrow-up-left-16:before {
  content: "\ea02";
}

.ci-arrow-up-left-24:before {
  content: "\ea03";
}

.ci-arrow-up-left-32:before {
  content: "\ea04";
}

.ci-arrow-up-right-16:before {
  content: "\ea05";
}

.ci-arrow-up-right-24:before {
  content: "\ea06";
}

.ci-arrow-up-right-32:before {
  content: "\ea07";
}

.ci-article-16:before {
  content: "\ea08";
}

.ci-article-24:before {
  content: "\ea09";
}

.ci-article-32:before {
  content: "\ea0a";
}

.ci-attachment-16:before {
  content: "\ea0b";
}

.ci-attachment-24:before {
  content: "\ea0c";
}

.ci-attachment-32:before {
  content: "\ea0d";
}

.ci-attachment-plus-16:before {
  content: "\ea0e";
}

.ci-attachment-plus-24:before {
  content: "\ea0f";
}

.ci-attachment-plus-32:before {
  content: "\ea10";
}

.ci-automation-16:before {
  content: "\ea11";
}

.ci-automation-24:before {
  content: "\ea12";
}

.ci-automation-32:before {
  content: "\ea13";
}

.ci-a-z-16:before {
  content: "\ea14";
}

.ci-a-z-24:before {
  content: "\ea15";
}

.ci-a-z-32:before {
  content: "\ea16";
}

.ci-a-z-down-16:before {
  content: "\ea17";
}

.ci-a-z-down-24:before {
  content: "\ea18";
}

.ci-a-z-down-32:before {
  content: "\ea19";
}

.ci-a-z-up-16:before {
  content: "\ea1a";
}

.ci-a-z-up-24:before {
  content: "\ea1b";
}

.ci-a-z-up-32:before {
  content: "\ea1c";
}

.ci-banana-16:before {
  content: "\ea1d";
}

.ci-banana-24:before {
  content: "\ea1e";
}

.ci-banana-32:before {
  content: "\ea1f";
}

.ci-basemap-16:before {
  content: "\ea20";
}

.ci-basemap-24:before {
  content: "\ea21";
}

.ci-basemap-32:before {
  content: "\ea22";
}

.ci-battery-1-16:before {
  content: "\ea23";
}

.ci-battery-1-24:before {
  content: "\ea24";
}

.ci-battery-1-32:before {
  content: "\ea25";
}

.ci-battery-2-16:before {
  content: "\ea26";
}

.ci-battery-2-24:before {
  content: "\ea27";
}

.ci-battery-2-32:before {
  content: "\ea28";
}

.ci-battery-3-16:before {
  content: "\ea29";
}

.ci-battery-3-24:before {
  content: "\ea2a";
}

.ci-battery-3-32:before {
  content: "\ea2b";
}

.ci-battery-4-16:before {
  content: "\ea2c";
}

.ci-battery-4-24:before {
  content: "\ea2d";
}

.ci-battery-4-32:before {
  content: "\ea2e";
}

.ci-battery-charging-16:before {
  content: "\ea2f";
}

.ci-battery-charging-24:before {
  content: "\ea30";
}

.ci-battery-charging-32:before {
  content: "\ea31";
}

.ci-beacon-16:before {
  content: "\ea32";
}

.ci-beacon-24:before {
  content: "\ea33";
}

.ci-beacon-32:before {
  content: "\ea34";
}

.ci-beaker-16:before {
  content: "\ea35";
}

.ci-beaker-24:before {
  content: "\ea36";
}

.ci-beaker-32:before {
  content: "\ea37";
}

.ci-bear-left-16:before {
  content: "\ea38";
}

.ci-bear-left-24:before {
  content: "\ea39";
}

.ci-bear-left-32:before {
  content: "\ea3a";
}

.ci-bear-right-16:before {
  content: "\ea3b";
}

.ci-bear-right-24:before {
  content: "\ea3c";
}

.ci-bear-right-32:before {
  content: "\ea3d";
}

.ci-beginning-16:before {
  content: "\ea3e";
}

.ci-beginning-16-f:before {
  content: "\ea3f";
}

.ci-beginning-24:before {
  content: "\ea40";
}

.ci-beginning-24-f:before {
  content: "\ea41";
}

.ci-beginning-32:before {
  content: "\ea42";
}

.ci-beginning-32-f:before {
  content: "\ea43";
}

.ci-bell-16:before {
  content: "\ea44";
}

.ci-bell-16-f:before {
  content: "\ea45";
}

.ci-bell-24:before {
  content: "\ea46";
}

.ci-bell-24-f:before {
  content: "\ea47";
}

.ci-bell-32:before {
  content: "\ea48";
}

.ci-bell-32-f:before {
  content: "\ea49";
}

.ci-bell-off-16:before {
  content: "\ea4a";
}

.ci-bell-off-24:before {
  content: "\ea4b";
}

.ci-bell-off-32:before {
  content: "\ea4c";
}

.ci-beta-16:before {
  content: "\ea4d";
}

.ci-beta-24:before {
  content: "\ea4e";
}

.ci-beta-32:before {
  content: "\ea4f";
}

.ci-biking-16:before {
  content: "\ea50";
}

.ci-biking-24:before {
  content: "\ea51";
}

.ci-biking-32:before {
  content: "\ea52";
}

.ci-blank-16:before {
  content: "\ea53";
}

.ci-blank-24:before {
  content: "\ea54";
}

.ci-blank-32:before {
  content: "\ea55";
}

.ci-blog-16:before {
  content: "\ea56";
}

.ci-blog-24:before {
  content: "\ea57";
}

.ci-blog-32:before {
  content: "\ea58";
}

.ci-bluetooth-16:before {
  content: "\ea59";
}

.ci-bluetooth-24:before {
  content: "\ea5a";
}

.ci-bluetooth-32:before {
  content: "\ea5b";
}

.ci-bold-16:before {
  content: "\ea5c";
}

.ci-bold-24:before {
  content: "\ea5d";
}

.ci-bold-32:before {
  content: "\ea5e";
}

.ci-book-16:before {
  content: "\ea5f";
}

.ci-book-24:before {
  content: "\ea60";
}

.ci-book-32:before {
  content: "\ea61";
}

.ci-bookmark-16:before {
  content: "\ea62";
}

.ci-bookmark-16-f:before {
  content: "\ea63";
}

.ci-bookmark-24:before {
  content: "\ea64";
}

.ci-bookmark-24-f:before {
  content: "\ea65";
}

.ci-bookmark-32:before {
  content: "\ea66";
}

.ci-bookmark-32-f:before {
  content: "\ea67";
}

.ci-boolean-16:before {
  content: "\ea68";
}

.ci-boolean-24:before {
  content: "\ea69";
}

.ci-boolean-32:before {
  content: "\ea6a";
}

.ci-border-radius-fully-rounded-16:before {
  content: "\ea6b";
}

.ci-border-radius-fully-rounded-24:before {
  content: "\ea6c";
}

.ci-border-radius-fully-rounded-32:before {
  content: "\ea6d";
}

.ci-border-radius-rounded-16:before {
  content: "\ea6e";
}

.ci-border-radius-rounded-24:before {
  content: "\ea6f";
}

.ci-border-radius-rounded-32:before {
  content: "\ea70";
}

.ci-border-radius-sharp-16:before {
  content: "\ea71";
}

.ci-border-radius-sharp-24:before {
  content: "\ea72";
}

.ci-border-radius-sharp-32:before {
  content: "\ea73";
}

.ci-box-chart-16:before {
  content: "\ea74";
}

.ci-box-chart-24:before {
  content: "\ea75";
}

.ci-box-chart-32:before {
  content: "\ea76";
}

.ci-brackets-curly-16:before {
  content: "\ea77";
}

.ci-brackets-curly-24:before {
  content: "\ea78";
}

.ci-brackets-curly-32:before {
  content: "\ea79";
}

.ci-brightness-16:before {
  content: "\ea7a";
}

.ci-brightness-24:before {
  content: "\ea7b";
}

.ci-brightness-32:before {
  content: "\ea7c";
}

.ci-bring-forward-16:before {
  content: "\ea7d";
}

.ci-bring-forward-24:before {
  content: "\ea7e";
}

.ci-bring-forward-32:before {
  content: "\ea7f";
}

.ci-bring-to-front-16:before {
  content: "\ea80";
}

.ci-bring-to-front-24:before {
  content: "\ea81";
}

.ci-bring-to-front-32:before {
  content: "\ea82";
}

.ci-browser-16:before {
  content: "\ea83";
}

.ci-browser-24:before {
  content: "\ea84";
}

.ci-browser-32:before {
  content: "\ea85";
}

.ci-browser-map-16:before {
  content: "\ea86";
}

.ci-browser-map-24:before {
  content: "\ea87";
}

.ci-browser-map-32:before {
  content: "\ea88";
}

.ci-brush-mark-16:before {
  content: "\ea89";
}

.ci-brush-mark-24:before {
  content: "\ea8a";
}

.ci-brush-mark-32:before {
  content: "\ea8b";
}

.ci-brush-mark-plus-16:before {
  content: "\ea8c";
}

.ci-brush-mark-plus-24:before {
  content: "\ea8d";
}

.ci-brush-mark-plus-32:before {
  content: "\ea8e";
}

.ci-brush-tip-16:before {
  content: "\ea8f";
}

.ci-brush-tip-24:before {
  content: "\ea90";
}

.ci-brush-tip-32:before {
  content: "\ea91";
}

.ci-bullet-point-16:before {
  content: "\ea92";
}

.ci-bullet-point-24:before {
  content: "\ea93";
}

.ci-bullet-point-32:before {
  content: "\ea94";
}

.ci-button-16:before {
  content: "\ea95";
}

.ci-button-24:before {
  content: "\ea96";
}

.ci-button-32:before {
  content: "\ea97";
}

.ci-calculator-16:before {
  content: "\ea98";
}

.ci-calculator-24:before {
  content: "\ea99";
}

.ci-calculator-32:before {
  content: "\ea9a";
}

.ci-calendar-16:before {
  content: "\ea9b";
}

.ci-calendar-24:before {
  content: "\ea9c";
}

.ci-calendar-32:before {
  content: "\ea9d";
}

.ci-camera-16:before {
  content: "\ea9e";
}

.ci-camera-24:before {
  content: "\ea9f";
}

.ci-camera-32:before {
  content: "\eaa0";
}

.ci-camera-flash-off-16:before {
  content: "\eaa1";
}

.ci-camera-flash-off-24:before {
  content: "\eaa2";
}

.ci-camera-flash-off-32:before {
  content: "\eaa3";
}

.ci-camera-flash-on-16:before {
  content: "\eaa4";
}

.ci-camera-flash-on-24:before {
  content: "\eaa5";
}

.ci-camera-flash-on-32:before {
  content: "\eaa6";
}

.ci-camera-plus-16:before {
  content: "\eaa7";
}

.ci-camera-plus-24:before {
  content: "\eaa8";
}

.ci-camera-plus-32:before {
  content: "\eaa9";
}

.ci-camera-switch-front-back-16:before {
  content: "\eaaa";
}

.ci-camera-switch-front-back-24:before {
  content: "\eaab";
}

.ci-camera-switch-front-back-32:before {
  content: "\eaac";
}

.ci-camera-unlock-16:before {
  content: "\eaad";
}

.ci-camera-unlock-24:before {
  content: "\eaae";
}

.ci-camera-unlock-32:before {
  content: "\eaaf";
}

.ci-car-16:before {
  content: "\eab0";
}

.ci-car-24:before {
  content: "\eab1";
}

.ci-car-32:before {
  content: "\eab2";
}

.ci-caret-double-horizontal-16:before {
  content: "\eab3";
}

.ci-caret-double-horizontal-24:before {
  content: "\eab4";
}

.ci-caret-double-horizontal-32:before {
  content: "\eab5";
}

.ci-caret-double-vertical-16:before {
  content: "\eab6";
}

.ci-caret-double-vertical-24:before {
  content: "\eab7";
}

.ci-caret-double-vertical-32:before {
  content: "\eab8";
}

.ci-caret-down-16:before {
  content: "\eab9";
}

.ci-caret-down-24:before {
  content: "\eaba";
}

.ci-caret-down-32:before {
  content: "\eabb";
}

.ci-caret-left-16:before {
  content: "\eabc";
}

.ci-caret-left-24:before {
  content: "\eabd";
}

.ci-caret-left-32:before {
  content: "\eabe";
}

.ci-caret-right-16:before {
  content: "\eabf";
}

.ci-caret-right-24:before {
  content: "\eac0";
}

.ci-caret-right-32:before {
  content: "\eac1";
}

.ci-caret-square-down-16:before {
  content: "\eac2";
}

.ci-caret-square-down-24:before {
  content: "\eac3";
}

.ci-caret-square-down-32:before {
  content: "\eac4";
}

.ci-caret-square-left-16:before {
  content: "\eac5";
}

.ci-caret-square-left-24:before {
  content: "\eac6";
}

.ci-caret-square-left-32:before {
  content: "\eac7";
}

.ci-caret-square-right-16:before {
  content: "\eac8";
}

.ci-caret-square-right-24:before {
  content: "\eac9";
}

.ci-caret-square-right-32:before {
  content: "\eaca";
}

.ci-caret-square-up-16:before {
  content: "\eacb";
}

.ci-caret-square-up-24:before {
  content: "\eacc";
}

.ci-caret-square-up-32:before {
  content: "\eacd";
}

.ci-caret-up-16:before {
  content: "\eace";
}

.ci-caret-up-24:before {
  content: "\eacf";
}

.ci-caret-up-32:before {
  content: "\ead0";
}

.ci-center-align-16:before {
  content: "\ead1";
}

.ci-center-align-24:before {
  content: "\ead2";
}

.ci-center-align-32:before {
  content: "\ead3";
}

.ci-center-horizontal-16:before {
  content: "\ead4";
}

.ci-center-horizontal-24:before {
  content: "\ead5";
}

.ci-center-horizontal-32:before {
  content: "\ead6";
}

.ci-center-vertical-16:before {
  content: "\ead7";
}

.ci-center-vertical-24:before {
  content: "\ead8";
}

.ci-center-vertical-32:before {
  content: "\ead9";
}

.ci-certificate-16:before {
  content: "\eada";
}

.ci-certificate-24:before {
  content: "\eadb";
}

.ci-certificate-32:before {
  content: "\eadc";
}

.ci-change-font-size-16:before {
  content: "\eae9";
}

.ci-change-font-size-24:before {
  content: "\eaea";
}

.ci-change-font-size-32:before {
  content: "\eaeb";
}

.ci-chart-gear-16:before {
  content: "\eaec";
}

.ci-chart-gear-24:before {
  content: "\eaed";
}

.ci-chart-gear-32:before {
  content: "\eaee";
}

.ci-chart-magnifying-glass-16:before {
  content: "\eaef";
}

.ci-chart-magnifying-glass-24:before {
  content: "\eaf0";
}

.ci-chart-magnifying-glass-32:before {
  content: "\eaf1";
}

.ci-check-16:before {
  content: "\eaf2";
}

.ci-check-24:before {
  content: "\eaf3";
}

.ci-check-32:before {
  content: "\eaf4";
}

.ci-check-circle-16:before {
  content: "\eaf5";
}

.ci-check-circle-16-f:before {
  content: "\eaf6";
}

.ci-check-circle-24:before {
  content: "\eaf7";
}

.ci-check-circle-24-f:before {
  content: "\eaf8";
}

.ci-check-circle-32:before {
  content: "\eaf9";
}

.ci-check-circle-32-f:before {
  content: "\eafa";
}

.ci-check-extent-16:before {
  content: "\eafb";
}

.ci-check-extent-24:before {
  content: "\eafc";
}

.ci-check-extent-32:before {
  content: "\eafd";
}

.ci-check-layer-16:before {
  content: "\eafe";
}

.ci-check-layer-24:before {
  content: "\eaff";
}

.ci-check-layer-32:before {
  content: "\eb00";
}

.ci-check-shield-16:before {
  content: "\eb01";
}

.ci-check-shield-24:before {
  content: "\eb02";
}

.ci-check-shield-32:before {
  content: "\eb03";
}

.ci-check-square-16:before {
  content: "\eb04";
}

.ci-check-square-16-f:before {
  content: "\eb05";
}

.ci-check-square-24:before {
  content: "\eb06";
}

.ci-check-square-24-f:before {
  content: "\eb07";
}

.ci-check-square-32:before {
  content: "\eb08";
}

.ci-check-square-32-f:before {
  content: "\eb09";
}

.ci-chevron-down-16:before {
  content: "\eb0a";
}

.ci-chevron-down-24:before {
  content: "\eb0b";
}

.ci-chevron-down-32:before {
  content: "\eb0c";
}

.ci-chevron-left-16:before {
  content: "\eb0d";
}

.ci-chevron-left-24:before {
  content: "\eb0e";
}

.ci-chevron-left-32:before {
  content: "\eb0f";
}

.ci-chevron-right-16:before {
  content: "\eb10";
}

.ci-chevron-right-24:before {
  content: "\eb11";
}

.ci-chevron-right-32:before {
  content: "\eb12";
}

.ci-chevrons-down-16:before {
  content: "\eb13";
}

.ci-chevrons-down-24:before {
  content: "\eb14";
}

.ci-chevrons-down-32:before {
  content: "\eb15";
}

.ci-chevrons-left-16:before {
  content: "\eb16";
}

.ci-chevrons-left-24:before {
  content: "\eb17";
}

.ci-chevrons-left-32:before {
  content: "\eb18";
}

.ci-chevrons-right-16:before {
  content: "\eb19";
}

.ci-chevrons-right-24:before {
  content: "\eb1a";
}

.ci-chevrons-right-32:before {
  content: "\eb1b";
}

.ci-chevrons-up-16:before {
  content: "\eb1c";
}

.ci-chevrons-up-24:before {
  content: "\eb1d";
}

.ci-chevrons-up-32:before {
  content: "\eb1e";
}

.ci-chevron-up-16:before {
  content: "\eb1f";
}

.ci-chevron-up-24:before {
  content: "\eb20";
}

.ci-chevron-up-32:before {
  content: "\eb21";
}

.ci-chord-diagram-16:before {
  content: "\eb22";
}

.ci-chord-diagram-24:before {
  content: "\eb23";
}

.ci-chord-diagram-32:before {
  content: "\eb24";
}

.ci-circle-16:before {
  content: "\eb25";
}

.ci-circle-16-f:before {
  content: "\eb26";
}

.ci-circle-24:before {
  content: "\eb27";
}

.ci-circle-24-f:before {
  content: "\eb28";
}

.ci-circle-32:before {
  content: "\eb29";
}

.ci-circle-32-f:before {
  content: "\eb2a";
}

.ci-circle-disallowed-16:before {
  content: "\eb31";
}

.ci-circle-disallowed-24:before {
  content: "\eb32";
}

.ci-circle-disallowed-32:before {
  content: "\eb33";
}

.ci-classify-objects-16:before {
  content: "\eb34";
}

.ci-classify-objects-24:before {
  content: "\eb35";
}

.ci-classify-objects-32:before {
  content: "\eb36";
}

.ci-clipboard-16:before {
  content: "\eb43";
}

.ci-clipboard-24:before {
  content: "\eb44";
}

.ci-clipboard-32:before {
  content: "\eb45";
}

.ci-clock-16:before {
  content: "\eb46";
}

.ci-clock-24:before {
  content: "\eb47";
}

.ci-clock-32:before {
  content: "\eb48";
}

.ci-clock-down-16:before {
  content: "\eb49";
}

.ci-clock-down-24:before {
  content: "\eb4a";
}

.ci-clock-down-32:before {
  content: "\eb4b";
}

.ci-clock-forward-16:before {
  content: "\eb4c";
}

.ci-clock-forward-24:before {
  content: "\eb4d";
}

.ci-clock-forward-32:before {
  content: "\eb4e";
}

.ci-clock-up-16:before {
  content: "\eb4f";
}

.ci-clock-up-24:before {
  content: "\eb50";
}

.ci-clock-up-32:before {
  content: "\eb51";
}

.ci-cloud-16:before {
  content: "\eb52";
}

.ci-cloud-24:before {
  content: "\eb53";
}

.ci-cloud-32:before {
  content: "\eb54";
}

.ci-cloudy-16:before {
  content: "\eb55";
}

.ci-cloudy-24:before {
  content: "\eb56";
}

.ci-cloudy-32:before {
  content: "\eb57";
}

.ci-code-16:before {
  content: "\eb61";
}

.ci-code-24:before {
  content: "\eb62";
}

.ci-code-32:before {
  content: "\eb63";
}

.ci-collaboration-16:before {
  content: "\eb64";
}

.ci-collaboration-24:before {
  content: "\eb65";
}

.ci-collaboration-32:before {
  content: "\eb66";
}

.ci-collaboration-distributed-16:before {
  content: "\eb67";
}

.ci-collaboration-distributed-24:before {
  content: "\eb68";
}

.ci-collaboration-distributed-32:before {
  content: "\eb69";
}

.ci-collection-16:before {
  content: "\eb6a";
}

.ci-collection-24:before {
  content: "\eb6b";
}

.ci-collection-32:before {
  content: "\eb6c";
}

.ci-compactness-16:before {
  content: "\eb82";
}

.ci-compactness-24:before {
  content: "\eb83";
}

.ci-compactness-32:before {
  content: "\eb84";
}

.ci-compare-16:before {
  content: "\eb85";
}

.ci-compare-24:before {
  content: "\eb86";
}

.ci-compare-32:before {
  content: "\eb87";
}

.ci-compass-16:before {
  content: "\eb88";
}

.ci-compass-24:before {
  content: "\eb89";
}

.ci-compass-32:before {
  content: "\eb8a";
}

.ci-compass-needle-16:before {
  content: "\eb8b";
}

.ci-compass-needle-24:before {
  content: "\eb8c";
}

.ci-compass-needle-32:before {
  content: "\eb8d";
}

.ci-compass-north-circle-16:before {
  content: "\eb8e";
}

.ci-compass-north-circle-24:before {
  content: "\eb8f";
}

.ci-compass-north-circle-32:before {
  content: "\eb90";
}

.ci-conditional-rules-16:before {
  content: "\eb91";
}

.ci-conditional-rules-24:before {
  content: "\eb92";
}

.ci-conditional-rules-32:before {
  content: "\eb93";
}

.ci-conditional-rules-path-16:before {
  content: "\eb94";
}

.ci-conditional-rules-path-24:before {
  content: "\eb95";
}

.ci-conditional-rules-path-32:before {
  content: "\eb96";
}

.ci-conference-room-16:before {
  content: "\eb97";
}

.ci-conference-room-24:before {
  content: "\eb98";
}

.ci-conference-room-32:before {
  content: "\eb99";
}

.ci-configure-16:before {
  content: "\eb9a";
}

.ci-configure-24:before {
  content: "\eb9b";
}

.ci-configure-32:before {
  content: "\eb9c";
}

.ci-configure-popup-16:before {
  content: "\eb9d";
}

.ci-configure-popup-24:before {
  content: "\eb9e";
}

.ci-configure-popup-32:before {
  content: "\eb9f";
}

.ci-console-16:before {
  content: "\eba0";
}

.ci-console-24:before {
  content: "\eba1";
}

.ci-console-32:before {
  content: "\eba2";
}

.ci-content-full-16:before {
  content: "\eba3";
}

.ci-content-full-24:before {
  content: "\eba4";
}

.ci-content-full-32:before {
  content: "\eba5";
}

.ci-content-inline-16:before {
  content: "\eba6";
}

.ci-content-inline-24:before {
  content: "\eba7";
}

.ci-content-inline-32:before {
  content: "\eba8";
}

.ci-content-large-16:before {
  content: "\eba9";
}

.ci-content-large-24:before {
  content: "\ebaa";
}

.ci-content-large-32:before {
  content: "\ebab";
}

.ci-content-medium-16:before {
  content: "\ebac";
}

.ci-content-medium-24:before {
  content: "\ebad";
}

.ci-content-medium-32:before {
  content: "\ebae";
}

.ci-content-minimal-16:before {
  content: "\ebaf";
}

.ci-content-minimal-24:before {
  content: "\ebb0";
}

.ci-content-minimal-32:before {
  content: "\ebb1";
}

.ci-content-none-16:before {
  content: "\ebb2";
}

.ci-content-none-24:before {
  content: "\ebb3";
}

.ci-content-none-32:before {
  content: "\ebb4";
}

.ci-content-side-by-side-16:before {
  content: "\ebb5";
}

.ci-content-side-by-side-24:before {
  content: "\ebb6";
}

.ci-content-side-by-side-32:before {
  content: "\ebb7";
}

.ci-content-small-16:before {
  content: "\ebb8";
}

.ci-content-small-24:before {
  content: "\ebb9";
}

.ci-content-small-32:before {
  content: "\ebba";
}

.ci-contingent-values-16:before {
  content: "\ebbb";
}

.ci-contingent-values-24:before {
  content: "\ebbc";
}

.ci-contingent-values-32:before {
  content: "\ebbd";
}

.ci-contract-16:before {
  content: "\ebbe";
}

.ci-contract-24:before {
  content: "\ebbf";
}

.ci-contract-32:before {
  content: "\ebc0";
}

.ci-contrast-16:before {
  content: "\ebc1";
}

.ci-contrast-24:before {
  content: "\ebc2";
}

.ci-contrast-32:before {
  content: "\ebc3";
}

.ci-convert-16:before {
  content: "\ebc4";
}

.ci-convert-24:before {
  content: "\ebc5";
}

.ci-convert-32:before {
  content: "\ebc6";
}

.ci-coordinate-system-16:before {
  content: "\ebc7";
}

.ci-coordinate-system-24:before {
  content: "\ebc8";
}

.ci-coordinate-system-32:before {
  content: "\ebc9";
}

.ci-copy-16:before {
  content: "\ebca";
}

.ci-copy-24:before {
  content: "\ebcb";
}

.ci-copy-32:before {
  content: "\ebcc";
}

.ci-copy-to-clipboard-16:before {
  content: "\ebcd";
}

.ci-copy-to-clipboard-24:before {
  content: "\ebce";
}

.ci-copy-to-clipboard-32:before {
  content: "\ebcf";
}

.ci-credit-card-16:before {
  content: "\ebd0";
}

.ci-credit-card-24:before {
  content: "\ebd1";
}

.ci-credit-card-32:before {
  content: "\ebd2";
}

.ci-credits-16:before {
  content: "\ebd3";
}

.ci-credits-24:before {
  content: "\ebd4";
}

.ci-credits-32:before {
  content: "\ebd5";
}

.ci-crop-16:before {
  content: "\ebd6";
}

.ci-crop-24:before {
  content: "\ebd7";
}

.ci-crop-32:before {
  content: "\ebd8";
}

.ci-cube-16:before {
  content: "\ebd9";
}

.ci-cube-24:before {
  content: "\ebda";
}

.ci-cube-32:before {
  content: "\ebdb";
}

.ci-cursor-16:before {
  content: "\ebdc";
}

.ci-cursor-24:before {
  content: "\ebdd";
}

.ci-cursor-32:before {
  content: "\ebde";
}

.ci-cursor-click-16:before {
  content: "\ebdf";
}

.ci-cursor-click-24:before {
  content: "\ebe0";
}

.ci-cursor-click-32:before {
  content: "\ebe1";
}

.ci-cursor-lock-16:before {
  content: "\ebe2";
}

.ci-cursor-lock-24:before {
  content: "\ebe3";
}

.ci-cursor-lock-32:before {
  content: "\ebe4";
}

.ci-cursor-marquee-16:before {
  content: "\ebe5";
}

.ci-cursor-marquee-24:before {
  content: "\ebe6";
}

.ci-cursor-marquee-32:before {
  content: "\ebe7";
}

.ci-cursor-plus-16:before {
  content: "\ebe8";
}

.ci-cursor-plus-24:before {
  content: "\ebe9";
}

.ci-cursor-plus-32:before {
  content: "\ebea";
}

.ci-cut-and-fill-volume-calculation-16:before {
  content: "\ebf1";
}

.ci-cut-and-fill-volume-calculation-24:before {
  content: "\ebf2";
}

.ci-cut-and-fill-volume-calculation-32:before {
  content: "\ebf3";
}

.ci-dashboard-16:before {
  content: "\ebf4";
}

.ci-dashboard-24:before {
  content: "\ebf5";
}

.ci-dashboard-32:before {
  content: "\ebf6";
}

.ci-data-16:before {
  content: "\ebf7";
}

.ci-data-24:before {
  content: "\ebf8";
}

.ci-data-32:before {
  content: "\ebf9";
}

.ci-data-check-16:before {
  content: "\ebfa";
}

.ci-data-check-24:before {
  content: "\ebfb";
}

.ci-data-check-32:before {
  content: "\ebfc";
}

.ci-data-clock-chart-16:before {
  content: "\ebfd";
}

.ci-data-clock-chart-24:before {
  content: "\ebfe";
}

.ci-data-clock-chart-32:before {
  content: "\ebff";
}

.ci-data-cloud-16:before {
  content: "\ec00";
}

.ci-data-cloud-24:before {
  content: "\ec01";
}

.ci-data-cloud-32:before {
  content: "\ec02";
}

.ci-data-folder-16:before {
  content: "\ec03";
}

.ci-data-folder-24:before {
  content: "\ec04";
}

.ci-data-folder-32:before {
  content: "\ec05";
}

.ci-data-magnifying-glass-16:before {
  content: "\ec06";
}

.ci-data-magnifying-glass-24:before {
  content: "\ec07";
}

.ci-data-magnifying-glass-32:before {
  content: "\ec08";
}

.ci-debug-16:before {
  content: "\ec12";
}

.ci-debug-24:before {
  content: "\ec13";
}

.ci-debug-32:before {
  content: "\ec14";
}

.ci-debug-script-16:before {
  content: "\ec15";
}

.ci-debug-script-24:before {
  content: "\ec16";
}

.ci-debug-script-32:before {
  content: "\ec17";
}

.ci-decrease-link-chart-symbol-size-16:before {
  content: "\ec18";
}

.ci-decrease-link-chart-symbol-size-24:before {
  content: "\ec19";
}

.ci-decrease-link-chart-symbol-size-32:before {
  content: "\ec1a";
}

.ci-deep-learning-16:before {
  content: "\ec1b";
}

.ci-deep-learning-24:before {
  content: "\ec1c";
}

.ci-deep-learning-32:before {
  content: "\ec1d";
}

.ci-deep-learning-project-16:before {
  content: "\ec1e";
}

.ci-deep-learning-project-24:before {
  content: "\ec1f";
}

.ci-deep-learning-project-32:before {
  content: "\ec20";
}

.ci-description-16:before {
  content: "\ec21";
}

.ci-description-24:before {
  content: "\ec22";
}

.ci-description-32:before {
  content: "\ec23";
}

.ci-desk-16:before {
  content: "\ec24";
}

.ci-desk-24:before {
  content: "\ec25";
}

.ci-desk-32:before {
  content: "\ec26";
}

.ci-desktop-16:before {
  content: "\ec27";
}

.ci-desktop-24:before {
  content: "\ec28";
}

.ci-desktop-32:before {
  content: "\ec29";
}

.ci-diamond-16:before {
  content: "\ec2a";
}

.ci-diamond-24:before {
  content: "\ec2b";
}

.ci-diamond-32:before {
  content: "\ec2c";
}

.ci-dimensions-16:before {
  content: "\ec2d";
}

.ci-dimensions-24:before {
  content: "\ec2e";
}

.ci-dimensions-32:before {
  content: "\ec2f";
}

.ci-discard-16:before {
  content: "\ec30";
}

.ci-discard-24:before {
  content: "\ec31";
}

.ci-discard-32:before {
  content: "\ec32";
}

.ci-disembark-16:before {
  content: "\ec33";
}

.ci-disembark-24:before {
  content: "\ec34";
}

.ci-disembark-32:before {
  content: "\ec35";
}

.ci-dissolve-features-16:before {
  content: "\ec42";
}

.ci-dissolve-features-24:before {
  content: "\ec43";
}

.ci-dissolve-features-32:before {
  content: "\ec44";
}

.ci-distance-type-16:before {
  content: "\ec45";
}

.ci-distance-type-24:before {
  content: "\ec46";
}

.ci-distance-type-32:before {
  content: "\ec47";
}

.ci-distribute-height-evenly-16:before {
  content: "\ec48";
}

.ci-distribute-height-evenly-24:before {
  content: "\ec49";
}

.ci-distribute-height-evenly-32:before {
  content: "\ec4a";
}

.ci-distribute-width-evenly-16:before {
  content: "\ec4b";
}

.ci-distribute-width-evenly-24:before {
  content: "\ec4c";
}

.ci-distribute-width-evenly-32:before {
  content: "\ec4d";
}

.ci-dock-bottom-16:before {
  content: "\ec4e";
}

.ci-dock-bottom-24:before {
  content: "\ec4f";
}

.ci-dock-bottom-32:before {
  content: "\ec50";
}

.ci-dock-left-16:before {
  content: "\ec51";
}

.ci-dock-left-24:before {
  content: "\ec52";
}

.ci-dock-left-32:before {
  content: "\ec53";
}

.ci-dock-right-16:before {
  content: "\ec54";
}

.ci-dock-right-24:before {
  content: "\ec55";
}

.ci-dock-right-32:before {
  content: "\ec56";
}

.ci-download-16:before {
  content: "\ec57";
}

.ci-download-24:before {
  content: "\ec58";
}

.ci-download-32:before {
  content: "\ec59";
}

.ci-download-to-16:before {
  content: "\ec5a";
}

.ci-download-to-24:before {
  content: "\ec5b";
}

.ci-download-to-32:before {
  content: "\ec5c";
}

.ci-drag-16:before {
  content: "\ec5d";
}

.ci-drag-24:before {
  content: "\ec5e";
}

.ci-drag-32:before {
  content: "\ec5f";
}

.ci-drive-time-16:before {
  content: "\ec60";
}

.ci-drive-time-24:before {
  content: "\ec61";
}

.ci-drive-time-32:before {
  content: "\ec62";
}

.ci-drive-time-largest-16:before {
  content: "\ec63";
}

.ci-drive-time-largest-24:before {
  content: "\ec64";
}

.ci-drive-time-largest-32:before {
  content: "\ec65";
}

.ci-drive-time-smallest-16:before {
  content: "\ec66";
}

.ci-drive-time-smallest-24:before {
  content: "\ec67";
}

.ci-drive-time-smallest-32:before {
  content: "\ec68";
}

.ci-drive-time-threshold-16:before {
  content: "\ec69";
}

.ci-drive-time-threshold-24:before {
  content: "\ec6a";
}

.ci-drive-time-threshold-32:before {
  content: "\ec6b";
}

.ci-drive-time-x-bar-16:before {
  content: "\ec6c";
}

.ci-drive-time-x-bar-24:before {
  content: "\ec6d";
}

.ci-drive-time-x-bar-32:before {
  content: "\ec6e";
}

.ci-driving-distance-16:before {
  content: "\ec6f";
}

.ci-driving-distance-24:before {
  content: "\ec70";
}

.ci-driving-distance-32:before {
  content: "\ec71";
}

.ci-driving-time-16:before {
  content: "\ec72";
}

.ci-driving-time-24:before {
  content: "\ec73";
}

.ci-driving-time-32:before {
  content: "\ec74";
}

.ci-drone-fixed-wing-16:before {
  content: "\ec75";
}

.ci-drone-fixed-wing-24:before {
  content: "\ec76";
}

.ci-drone-fixed-wing-32:before {
  content: "\ec77";
}

.ci-drone-flying-wing-16:before {
  content: "\ec78";
}

.ci-drone-flying-wing-24:before {
  content: "\ec79";
}

.ci-drone-flying-wing-32:before {
  content: "\ec7a";
}

.ci-drone-quadcopter-16:before {
  content: "\ec7b";
}

.ci-drone-quadcopter-24:before {
  content: "\ec7c";
}

.ci-drone-quadcopter-32:before {
  content: "\ec7d";
}

.ci-drone-quadcopter-top-16:before {
  content: "\ec7e";
}

.ci-drone-quadcopter-top-24:before {
  content: "\ec7f";
}

.ci-drone-quadcopter-top-32:before {
  content: "\ec80";
}

.ci-duplicate-16:before {
  content: "\ec81";
}

.ci-duplicate-24:before {
  content: "\ec82";
}

.ci-duplicate-32:before {
  content: "\ec83";
}

.ci-edit-attributes-16:before {
  content: "\ec84";
}

.ci-edit-attributes-24:before {
  content: "\ec85";
}

.ci-edit-attributes-32:before {
  content: "\ec86";
}

.ci-education-16:before {
  content: "\ec87";
}

.ci-education-24:before {
  content: "\ec88";
}

.ci-education-32:before {
  content: "\ec89";
}

.ci-effects-16:before {
  content: "\ec8a";
}

.ci-effects-24:before {
  content: "\ec8b";
}

.ci-effects-32:before {
  content: "\ec8c";
}

.ci-elevator-16:before {
  content: "\ec8d";
}

.ci-elevator-24:before {
  content: "\ec8e";
}

.ci-elevator-32:before {
  content: "\ec8f";
}

.ci-ellipse-16:before {
  content: "\ec90";
}

.ci-ellipse-24:before {
  content: "\ec91";
}

.ci-ellipse-32:before {
  content: "\ec92";
}

.ci-ellipsis-16:before {
  content: "\ec93";
}

.ci-ellipsis-24:before {
  content: "\ec94";
}

.ci-ellipsis-32:before {
  content: "\ec95";
}

.ci-ellipsis-circle-16:before {
  content: "\ec96";
}

.ci-ellipsis-circle-24:before {
  content: "\ec97";
}

.ci-ellipsis-circle-32:before {
  content: "\ec98";
}

.ci-email-address-16:before {
  content: "\ec99";
}

.ci-email-address-24:before {
  content: "\ec9a";
}

.ci-email-address-32:before {
  content: "\ec9b";
}

.ci-embark-16:before {
  content: "\ec9c";
}

.ci-embark-24:before {
  content: "\ec9d";
}

.ci-embark-32:before {
  content: "\ec9e";
}

.ci-embedded-card-16:before {
  content: "\ec9f";
}

.ci-embedded-card-24:before {
  content: "\eca0";
}

.ci-embedded-card-32:before {
  content: "\eca1";
}

.ci-embedded-content-16:before {
  content: "\eca2";
}

.ci-embedded-content-24:before {
  content: "\eca3";
}

.ci-embedded-content-32:before {
  content: "\eca4";
}

.ci-embedded-live-content-16:before {
  content: "\eca5";
}

.ci-embedded-live-content-24:before {
  content: "\eca6";
}

.ci-embedded-live-content-32:before {
  content: "\eca7";
}

.ci-end-16:before {
  content: "\eca8";
}

.ci-end-16-f:before {
  content: "\eca9";
}

.ci-end-24:before {
  content: "\ecaa";
}

.ci-end-24-f:before {
  content: "\ecab";
}

.ci-end-32:before {
  content: "\ecac";
}

.ci-end-32-f:before {
  content: "\ecad";
}

.ci-envelope-16:before {
  content: "\ecae";
}

.ci-envelope-24:before {
  content: "\ecaf";
}

.ci-envelope-32:before {
  content: "\ecb0";
}

.ci-erase-16:before {
  content: "\ecb1";
}

.ci-erase-24:before {
  content: "\ecb2";
}

.ci-erase-32:before {
  content: "\ecb3";
}

.ci-escalator-16:before {
  content: "\ecb4";
}

.ci-escalator-24:before {
  content: "\ecb5";
}

.ci-escalator-32:before {
  content: "\ecb6";
}

.ci-event-16:before {
  content: "\ecb7";
}

.ci-event-24:before {
  content: "\ecb8";
}

.ci-event-32:before {
  content: "\ecb9";
}

.ci-exclamation-mark-circle-16:before {
  content: "\ecba";
}

.ci-exclamation-mark-circle-16-f:before {
  content: "\ecbb";
}

.ci-exclamation-mark-circle-24:before {
  content: "\ecbc";
}

.ci-exclamation-mark-circle-24-f:before {
  content: "\ecbd";
}

.ci-exclamation-mark-circle-32:before {
  content: "\ecbe";
}

.ci-exclamation-mark-circle-32-f:before {
  content: "\ecbf";
}

.ci-exclamation-mark-triangle-16:before {
  content: "\ecc0";
}

.ci-exclamation-mark-triangle-16-f:before {
  content: "\ecc1";
}

.ci-exclamation-mark-triangle-24:before {
  content: "\ecc2";
}

.ci-exclamation-mark-triangle-24-f:before {
  content: "\ecc3";
}

.ci-exclamation-mark-triangle-32:before {
  content: "\ecc4";
}

.ci-exclamation-mark-triangle-32-f:before {
  content: "\ecc5";
}

.ci-exit-highway-left-16:before {
  content: "\ecc6";
}

.ci-exit-highway-left-24:before {
  content: "\ecc7";
}

.ci-exit-highway-left-32:before {
  content: "\ecc8";
}

.ci-exit-highway-right-16:before {
  content: "\ecc9";
}

.ci-exit-highway-right-24:before {
  content: "\ecca";
}

.ci-exit-highway-right-32:before {
  content: "\eccb";
}

.ci-expand-16:before {
  content: "\eccc";
}

.ci-expand-24:before {
  content: "\eccd";
}

.ci-expand-32:before {
  content: "\ecce";
}

.ci-explore-16:before {
  content: "\eccf";
}

.ci-explore-24:before {
  content: "\ecd0";
}

.ci-explore-32:before {
  content: "\ecd1";
}

.ci-export-16:before {
  content: "\ecd2";
}

.ci-export-24:before {
  content: "\ecd3";
}

.ci-export-32:before {
  content: "\ecd4";
}

.ci-extent-16:before {
  content: "\ecd5";
}

.ci-extent-24:before {
  content: "\ecd6";
}

.ci-extent-32:before {
  content: "\ecd7";
}

.ci-extent-filter-16:before {
  content: "\ecd8";
}

.ci-extent-filter-24:before {
  content: "\ecd9";
}

.ci-extent-filter-32:before {
  content: "\ecda";
}

.ci-eyedropper-16:before {
  content: "\ecdb";
}

.ci-eyedropper-24:before {
  content: "\ecdc";
}

.ci-eyedropper-32:before {
  content: "\ecdd";
}

.ci-face-id-16:before {
  content: "\ecde";
}

.ci-face-id-24:before {
  content: "\ecdf";
}

.ci-face-id-32:before {
  content: "\ece0";
}

.ci-feature-details-16:before {
  content: "\ece1";
}

.ci-feature-details-24:before {
  content: "\ece2";
}

.ci-feature-details-32:before {
  content: "\ece3";
}

.ci-feature-layer-16:before {
  content: "\ece4";
}

.ci-feature-layer-24:before {
  content: "\ece5";
}

.ci-feature-layer-32:before {
  content: "\ece6";
}

.ci-file-16:before {
  content: "\ece7";
}

.ci-file-24:before {
  content: "\ece8";
}

.ci-file-32:before {
  content: "\ece9";
}

.ci-file-archive-16:before {
  content: "\ecea";
}

.ci-file-archive-24:before {
  content: "\eceb";
}

.ci-file-archive-32:before {
  content: "\ecec";
}

.ci-file-cad-16:before {
  content: "\eced";
}

.ci-file-cad-24:before {
  content: "\ecee";
}

.ci-file-cad-32:before {
  content: "\ecef";
}

.ci-file-code-16:before {
  content: "\ecf0";
}

.ci-file-code-24:before {
  content: "\ecf1";
}

.ci-file-code-32:before {
  content: "\ecf2";
}

.ci-file-csv-16:before {
  content: "\ecf3";
}

.ci-file-csv-24:before {
  content: "\ecf4";
}

.ci-file-csv-32:before {
  content: "\ecf5";
}

.ci-file-data-16:before {
  content: "\ecf6";
}

.ci-file-data-24:before {
  content: "\ecf7";
}

.ci-file-data-32:before {
  content: "\ecf8";
}

.ci-file-ecd-16:before {
  content: "\ecf9";
}

.ci-file-ecd-24:before {
  content: "\ecfa";
}

.ci-file-ecd-32:before {
  content: "\ecfb";
}

.ci-file-excel-16:before {
  content: "\ecfc";
}

.ci-file-excel-24:before {
  content: "\ecfd";
}

.ci-file-excel-32:before {
  content: "\ecfe";
}

.ci-file-gpx-16:before {
  content: "\ecff";
}

.ci-file-gpx-24:before {
  content: "\ed00";
}

.ci-file-gpx-32:before {
  content: "\ed01";
}

.ci-file-image-16:before {
  content: "\ed02";
}

.ci-file-image-24:before {
  content: "\ed03";
}

.ci-file-image-32:before {
  content: "\ed04";
}

.ci-file-kml-16:before {
  content: "\ed05";
}

.ci-file-kml-24:before {
  content: "\ed06";
}

.ci-file-kml-32:before {
  content: "\ed07";
}

.ci-file-magnifying-glass-16:before {
  content: "\ed08";
}

.ci-file-magnifying-glass-24:before {
  content: "\ed09";
}

.ci-file-magnifying-glass-32:before {
  content: "\ed0a";
}

.ci-file-pdf-16:before {
  content: "\ed0b";
}

.ci-file-pdf-24:before {
  content: "\ed0c";
}

.ci-file-pdf-32:before {
  content: "\ed0d";
}

.ci-file-pdf-plus-16:before {
  content: "\ed0e";
}

.ci-file-pdf-plus-24:before {
  content: "\ed0f";
}

.ci-file-pdf-plus-32:before {
  content: "\ed10";
}

.ci-file-pitemx-16:before {
  content: "\ed11";
}

.ci-file-pitemx-24:before {
  content: "\ed12";
}

.ci-file-pitemx-32:before {
  content: "\ed13";
}

.ci-file-ppt-16:before {
  content: "\ed14";
}

.ci-file-ppt-24:before {
  content: "\ed15";
}

.ci-file-ppt-32:before {
  content: "\ed16";
}

.ci-file-report-16:before {
  content: "\ed17";
}

.ci-file-report-24:before {
  content: "\ed18";
}

.ci-file-report-32:before {
  content: "\ed19";
}

.ci-files-16:before {
  content: "\ed1a";
}

.ci-files-24:before {
  content: "\ed1b";
}

.ci-files-32:before {
  content: "\ed1c";
}

.ci-files-csv-collection-16:before {
  content: "\ed1d";
}

.ci-files-csv-collection-24:before {
  content: "\ed1e";
}

.ci-files-csv-collection-32:before {
  content: "\ed1f";
}

.ci-file-shape-16:before {
  content: "\ed20";
}

.ci-file-shape-24:before {
  content: "\ed21";
}

.ci-file-shape-32:before {
  content: "\ed22";
}

.ci-file-sound-16:before {
  content: "\ed23";
}

.ci-file-sound-24:before {
  content: "\ed24";
}

.ci-file-sound-32:before {
  content: "\ed25";
}

.ci-file-sqlite-16:before {
  content: "\ed26";
}

.ci-file-sqlite-24:before {
  content: "\ed27";
}

.ci-file-sqlite-32:before {
  content: "\ed28";
}

.ci-file-text-16:before {
  content: "\ed29";
}

.ci-file-text-24:before {
  content: "\ed2a";
}

.ci-file-text-32:before {
  content: "\ed2b";
}

.ci-file-video-16:before {
  content: "\ed2c";
}

.ci-file-video-24:before {
  content: "\ed2d";
}

.ci-file-video-32:before {
  content: "\ed2e";
}

.ci-file-word-16:before {
  content: "\ed2f";
}

.ci-file-word-24:before {
  content: "\ed30";
}

.ci-file-word-32:before {
  content: "\ed31";
}

.ci-file-zip-16:before {
  content: "\ed32";
}

.ci-file-zip-24:before {
  content: "\ed33";
}

.ci-file-zip-32:before {
  content: "\ed34";
}

.ci-filter-16:before {
  content: "\ed35";
}

.ci-filter-24:before {
  content: "\ed36";
}

.ci-filter-32:before {
  content: "\ed37";
}

.ci-fingerprint-16:before {
  content: "\ed3e";
}

.ci-fingerprint-24:before {
  content: "\ed3f";
}

.ci-fingerprint-32:before {
  content: "\ed40";
}

.ci-flash-16:before {
  content: "\ed41";
}

.ci-flash-24:before {
  content: "\ed42";
}

.ci-flash-32:before {
  content: "\ed43";
}

.ci-flip-16:before {
  content: "\ed44";
}

.ci-flip-24:before {
  content: "\ed45";
}

.ci-flip-32:before {
  content: "\ed46";
}

.ci-floor-plan-16:before {
  content: "\ed47";
}

.ci-floor-plan-24:before {
  content: "\ed48";
}

.ci-floor-plan-32:before {
  content: "\ed49";
}

.ci-fog-16:before {
  content: "\ed4a";
}

.ci-fog-24:before {
  content: "\ed4b";
}

.ci-fog-32:before {
  content: "\ed4c";
}

.ci-folder-16:before {
  content: "\ed4d";
}

.ci-folder-24:before {
  content: "\ed4e";
}

.ci-folder-32:before {
  content: "\ed4f";
}

.ci-folder-archive-16:before {
  content: "\ed50";
}

.ci-folder-archive-24:before {
  content: "\ed51";
}

.ci-folder-archive-32:before {
  content: "\ed52";
}

.ci-folder-move-16:before {
  content: "\ed53";
}

.ci-folder-move-24:before {
  content: "\ed54";
}

.ci-folder-move-32:before {
  content: "\ed55";
}

.ci-folder-new-16:before {
  content: "\ed56";
}

.ci-folder-new-24:before {
  content: "\ed57";
}

.ci-folder-new-32:before {
  content: "\ed58";
}

.ci-folder-open-16:before {
  content: "\ed59";
}

.ci-folder-open-24:before {
  content: "\ed5a";
}

.ci-folder-open-32:before {
  content: "\ed5b";
}

.ci-folder-plus-16:before {
  content: "\ed5c";
}

.ci-folder-plus-24:before {
  content: "\ed5d";
}

.ci-folder-plus-32:before {
  content: "\ed5e";
}

.ci-folders-16:before {
  content: "\ed5f";
}

.ci-folders-24:before {
  content: "\ed60";
}

.ci-folders-32:before {
  content: "\ed61";
}

.ci-folder-star-16:before {
  content: "\ed62";
}

.ci-folder-star-24:before {
  content: "\ed63";
}

.ci-folder-star-32:before {
  content: "\ed64";
}

.ci-follow-16:before {
  content: "\ed65";
}

.ci-follow-24:before {
  content: "\ed66";
}

.ci-follow-32:before {
  content: "\ed67";
}

.ci-follow-pause-16:before {
  content: "\ed68";
}

.ci-follow-pause-24:before {
  content: "\ed69";
}

.ci-follow-pause-32:before {
  content: "\ed6a";
}

.ci-follow-play-16:before {
  content: "\ed6b";
}

.ci-follow-play-24:before {
  content: "\ed6c";
}

.ci-follow-play-32:before {
  content: "\ed6d";
}

.ci-footer-16:before {
  content: "\ed6e";
}

.ci-footer-24:before {
  content: "\ed6f";
}

.ci-footer-32:before {
  content: "\ed70";
}

.ci-footprint-16:before {
  content: "\ed71";
}

.ci-footprint-24:before {
  content: "\ed72";
}

.ci-footprint-32:before {
  content: "\ed73";
}

.ci-fork-left-16:before {
  content: "\ed74";
}

.ci-fork-left-24:before {
  content: "\ed75";
}

.ci-fork-left-32:before {
  content: "\ed76";
}

.ci-fork-middle-16:before {
  content: "\ed77";
}

.ci-fork-middle-24:before {
  content: "\ed78";
}

.ci-fork-middle-32:before {
  content: "\ed79";
}

.ci-fork-right-16:before {
  content: "\ed7a";
}

.ci-fork-right-24:before {
  content: "\ed7b";
}

.ci-fork-right-32:before {
  content: "\ed7c";
}

.ci-form-dropdown-16:before {
  content: "\ed7d";
}

.ci-form-dropdown-24:before {
  content: "\ed7e";
}

.ci-form-dropdown-32:before {
  content: "\ed7f";
}

.ci-form-elements-16:before {
  content: "\ed80";
}

.ci-form-elements-24:before {
  content: "\ed81";
}

.ci-form-elements-32:before {
  content: "\ed82";
}

.ci-form-field-16:before {
  content: "\ed83";
}

.ci-form-field-24:before {
  content: "\ed84";
}

.ci-form-field-32:before {
  content: "\ed85";
}

.ci-form-field-multiline-16:before {
  content: "\ed86";
}

.ci-form-field-multiline-24:before {
  content: "\ed87";
}

.ci-form-field-multiline-32:before {
  content: "\ed88";
}

.ci-form-field-off-16:before {
  content: "\ed89";
}

.ci-form-field-off-24:before {
  content: "\ed8a";
}

.ci-form-field-off-32:before {
  content: "\ed8b";
}

.ci-forward-16:before {
  content: "\ed8c";
}

.ci-forward-16-f:before {
  content: "\ed8d";
}

.ci-forward-24:before {
  content: "\ed8e";
}

.ci-forward-24-f:before {
  content: "\ed8f";
}

.ci-forward-32:before {
  content: "\ed90";
}

.ci-forward-32-f:before {
  content: "\ed91";
}

.ci-freehand-16:before {
  content: "\ed92";
}

.ci-freehand-24:before {
  content: "\ed93";
}

.ci-freehand-32:before {
  content: "\ed94";
}

.ci-frown-16:before {
  content: "\ed9b";
}

.ci-frown-24:before {
  content: "\ed9c";
}

.ci-frown-32:before {
  content: "\ed9d";
}

.ci-full-screen-16:before {
  content: "\ed9e";
}

.ci-full-screen-24:before {
  content: "\ed9f";
}

.ci-full-screen-32:before {
  content: "\eda0";
}

.ci-full-screen-exit-16:before {
  content: "\eda1";
}

.ci-full-screen-exit-24:before {
  content: "\eda2";
}

.ci-full-screen-exit-32:before {
  content: "\eda3";
}

.ci-function-16:before {
  content: "\eda4";
}

.ci-function-24:before {
  content: "\eda5";
}

.ci-function-32:before {
  content: "\eda6";
}

.ci-gallery-16:before {
  content: "\eda7";
}

.ci-gallery-24:before {
  content: "\eda8";
}

.ci-gallery-32:before {
  content: "\eda9";
}

.ci-gamma-16:before {
  content: "\edaa";
}

.ci-gamma-24:before {
  content: "\edab";
}

.ci-gamma-32:before {
  content: "\edac";
}

.ci-gauge-16:before {
  content: "\edad";
}

.ci-gauge-24:before {
  content: "\edae";
}

.ci-gauge-32:before {
  content: "\edaf";
}

.ci-gauge-summary-16:before {
  content: "\edb0";
}

.ci-gauge-summary-24:before {
  content: "\edb1";
}

.ci-gauge-summary-32:before {
  content: "\edb2";
}

.ci-gear-16:before {
  content: "\edb3";
}

.ci-gear-24:before {
  content: "\edb4";
}

.ci-gear-32:before {
  content: "\edb5";
}

.ci-geoanalytics-server-16:before {
  content: "\edb6";
}

.ci-geoanalytics-server-24:before {
  content: "\edb7";
}

.ci-geoanalytics-server-32:before {
  content: "\edb8";
}

.ci-geoevent-server-16:before {
  content: "\edb9";
}

.ci-geoevent-server-24:before {
  content: "\edba";
}

.ci-geoevent-server-32:before {
  content: "\edbb";
}

.ci-geographic-link-chart-layout-16:before {
  content: "\edbc";
}

.ci-geographic-link-chart-layout-24:before {
  content: "\edbd";
}

.ci-geographic-link-chart-layout-32:before {
  content: "\edbe";
}

.ci-geonet-16:before {
  content: "\edbf";
}

.ci-geonet-24:before {
  content: "\edc0";
}

.ci-geonet-32:before {
  content: "\edc1";
}

.ci-geonet-question-16:before {
  content: "\edc2";
}

.ci-geonet-question-24:before {
  content: "\edc3";
}

.ci-geonet-question-32:before {
  content: "\edc4";
}

.ci-gis-server-16:before {
  content: "\edc5";
}

.ci-gis-server-24:before {
  content: "\edc6";
}

.ci-gis-server-32:before {
  content: "\edc7";
}

.ci-globe-16:before {
  content: "\edc8";
}

.ci-globe-24:before {
  content: "\edc9";
}

.ci-globe-32:before {
  content: "\edca";
}

.ci-gps-off-16:before {
  content: "\edcb";
}

.ci-gps-off-24:before {
  content: "\edcc";
}

.ci-gps-off-32:before {
  content: "\edcd";
}

.ci-gps-on-16:before {
  content: "\edce";
}

.ci-gps-on-16-f:before {
  content: "\edcf";
}

.ci-gps-on-24:before {
  content: "\edd0";
}

.ci-gps-on-24-f:before {
  content: "\edd1";
}

.ci-gps-on-32:before {
  content: "\edd2";
}

.ci-gps-on-32-f:before {
  content: "\edd3";
}

.ci-graph-axis-16:before {
  content: "\edd4";
}

.ci-graph-axis-24:before {
  content: "\edd5";
}

.ci-graph-axis-32:before {
  content: "\edd6";
}

.ci-graph-bar-16:before {
  content: "\edd7";
}

.ci-graph-bar-24:before {
  content: "\edd8";
}

.ci-graph-bar-32:before {
  content: "\edd9";
}

.ci-graph-bar-100-stacked-16:before {
  content: "\edda";
}

.ci-graph-bar-100-stacked-24:before {
  content: "\eddb";
}

.ci-graph-bar-100-stacked-32:before {
  content: "\eddc";
}

.ci-graph-bar-side-by-side-16:before {
  content: "\eddd";
}

.ci-graph-bar-side-by-side-24:before {
  content: "\edde";
}

.ci-graph-bar-side-by-side-32:before {
  content: "\eddf";
}

.ci-graph-bar-stacked-16:before {
  content: "\ede0";
}

.ci-graph-bar-stacked-24:before {
  content: "\ede1";
}

.ci-graph-bar-stacked-32:before {
  content: "\ede2";
}

.ci-graph-guides-16:before {
  content: "\ede3";
}

.ci-graph-guides-24:before {
  content: "\ede4";
}

.ci-graph-guides-32:before {
  content: "\ede5";
}

.ci-graph-histogram-16:before {
  content: "\ede6";
}

.ci-graph-histogram-24:before {
  content: "\ede7";
}

.ci-graph-histogram-32:before {
  content: "\ede8";
}

.ci-graph-line-series-16:before {
  content: "\ede9";
}

.ci-graph-line-series-24:before {
  content: "\edea";
}

.ci-graph-line-series-32:before {
  content: "\edeb";
}

.ci-graph-moving-average-16:before {
  content: "\edec";
}

.ci-graph-moving-average-24:before {
  content: "\eded";
}

.ci-graph-moving-average-32:before {
  content: "\edee";
}

.ci-graph-scatter-plot-16:before {
  content: "\edf5";
}

.ci-graph-scatter-plot-24:before {
  content: "\edf6";
}

.ci-graph-scatter-plot-32:before {
  content: "\edf7";
}

.ci-graph-time-series-16:before {
  content: "\edf8";
}

.ci-graph-time-series-24:before {
  content: "\edf9";
}

.ci-graph-time-series-32:before {
  content: "\edfa";
}

.ci-grid-16:before {
  content: "\edfb";
}

.ci-grid-24:before {
  content: "\edfc";
}

.ci-grid-32:before {
  content: "\edfd";
}

.ci-grid-diamond-16:before {
  content: "\edfe";
}

.ci-grid-diamond-24:before {
  content: "\edff";
}

.ci-grid-diamond-32:before {
  content: "\ee00";
}

.ci-grid-hexagon-16:before {
  content: "\ee01";
}

.ci-grid-hexagon-24:before {
  content: "\ee02";
}

.ci-grid-hexagon-32:before {
  content: "\ee03";
}

.ci-grid-triangle-16:before {
  content: "\ee04";
}

.ci-grid-triangle-24:before {
  content: "\ee05";
}

.ci-grid-triangle-32:before {
  content: "\ee06";
}

.ci-grid-unit-16:before {
  content: "\ee07";
}

.ci-grid-unit-24:before {
  content: "\ee08";
}

.ci-grid-unit-32:before {
  content: "\ee09";
}

.ci-group-16:before {
  content: "\ee0a";
}

.ci-group-24:before {
  content: "\ee0b";
}

.ci-group-32:before {
  content: "\ee0c";
}

.ci-group-form-16:before {
  content: "\ee0d";
}

.ci-group-form-24:before {
  content: "\ee0e";
}

.ci-group-form-32:before {
  content: "\ee0f";
}

.ci-group-form-plus-16:before {
  content: "\ee10";
}

.ci-group-form-plus-24:before {
  content: "\ee11";
}

.ci-group-form-plus-32:before {
  content: "\ee12";
}

.ci-group-items-16:before {
  content: "\ee13";
}

.ci-group-items-24:before {
  content: "\ee14";
}

.ci-group-items-32:before {
  content: "\ee15";
}

.ci-group-layout-elements-16:before {
  content: "\ee16";
}

.ci-group-layout-elements-24:before {
  content: "\ee17";
}

.ci-group-layout-elements-32:before {
  content: "\ee18";
}

.ci-group-x-16:before {
  content: "\ee19";
}

.ci-group-x-24:before {
  content: "\ee1a";
}

.ci-group-x-32:before {
  content: "\ee1b";
}

.ci-hamburger-16:before {
  content: "\ee2e";
}

.ci-hamburger-24:before {
  content: "\ee2f";
}

.ci-hamburger-32:before {
  content: "\ee30";
}

.ci-hammer-16:before {
  content: "\ee31";
}

.ci-hammer-24:before {
  content: "\ee32";
}

.ci-hammer-32:before {
  content: "\ee33";
}

.ci-handle-vertical-16:before {
  content: "\ee34";
}

.ci-handle-vertical-24:before {
  content: "\ee35";
}

.ci-handle-vertical-32:before {
  content: "\ee36";
}

.ci-heading-16:before {
  content: "\ee37";
}

.ci-heading-24:before {
  content: "\ee38";
}

.ci-heading-32:before {
  content: "\ee39";
}

.ci-heading-rtl-16:before {
  content: "\ee40";
}

.ci-heading-rtl-24:before {
  content: "\ee41";
}

.ci-heading-rtl-32:before {
  content: "\ee42";
}

.ci-headset-16:before {
  content: "\ee43";
}

.ci-headset-24:before {
  content: "\ee44";
}

.ci-headset-32:before {
  content: "\ee45";
}

.ci-heart-16:before {
  content: "\ee46";
}

.ci-heart-16-f:before {
  content: "\ee47";
}

.ci-heart-24:before {
  content: "\ee48";
}

.ci-heart-24-f:before {
  content: "\ee49";
}

.ci-heart-32:before {
  content: "\ee4a";
}

.ci-heart-32-f:before {
  content: "\ee4b";
}

.ci-heat-chart-16:before {
  content: "\ee4c";
}

.ci-heat-chart-24:before {
  content: "\ee4d";
}

.ci-heat-chart-32:before {
  content: "\ee4e";
}

.ci-heavy-rain-16:before {
  content: "\ee4f";
}

.ci-heavy-rain-24:before {
  content: "\ee50";
}

.ci-heavy-rain-32:before {
  content: "\ee51";
}

.ci-heavy-snow-16:before {
  content: "\ee52";
}

.ci-heavy-snow-24:before {
  content: "\ee53";
}

.ci-heavy-snow-32:before {
  content: "\ee54";
}

.ci-hide-empty-16:before {
  content: "\ee55";
}

.ci-hide-empty-24:before {
  content: "\ee56";
}

.ci-hide-empty-32:before {
  content: "\ee57";
}

.ci-highlighter-16:before {
  content: "\ee58";
}

.ci-highlighter-24:before {
  content: "\ee59";
}

.ci-highlighter-32:before {
  content: "\ee5a";
}

.ci-highlighter-tip-16:before {
  content: "\ee5b";
}

.ci-highlighter-tip-24:before {
  content: "\ee5c";
}

.ci-highlighter-tip-32:before {
  content: "\ee5d";
}

.ci-highway-change-16:before {
  content: "\ee5e";
}

.ci-highway-change-24:before {
  content: "\ee5f";
}

.ci-highway-change-32:before {
  content: "\ee60";
}

.ci-highway-change-right-16:before {
  content: "\ee61";
}

.ci-highway-change-right-24:before {
  content: "\ee62";
}

.ci-highway-change-right-32:before {
  content: "\ee63";
}

.ci-home-16:before {
  content: "\ee70";
}

.ci-home-24:before {
  content: "\ee71";
}

.ci-home-32:before {
  content: "\ee72";
}

.ci-horizontal-distribute-16:before {
  content: "\ee73";
}

.ci-horizontal-distribute-24:before {
  content: "\ee74";
}

.ci-horizontal-distribute-32:before {
  content: "\ee75";
}

.ci-hourglass-active-16:before {
  content: "\ee76";
}

.ci-hourglass-active-24:before {
  content: "\ee77";
}

.ci-hourglass-active-32:before {
  content: "\ee78";
}

.ci-hourglass-expired-16:before {
  content: "\ee79";
}

.ci-hourglass-expired-24:before {
  content: "\ee7a";
}

.ci-hourglass-expired-32:before {
  content: "\ee7b";
}

.ci-image-16:before {
  content: "\ee7c";
}

.ci-image-24:before {
  content: "\ee7d";
}

.ci-image-32:before {
  content: "\ee7e";
}

.ci-image-chips-16:before {
  content: "\ee7f";
}

.ci-image-chips-24:before {
  content: "\ee80";
}

.ci-image-chips-32:before {
  content: "\ee81";
}

.ci-image-mensuration-16:before {
  content: "\ee94";
}

.ci-image-mensuration-24:before {
  content: "\ee95";
}

.ci-image-mensuration-32:before {
  content: "\ee96";
}

.ci-image-pin-16:before {
  content: "\ee97";
}

.ci-image-pin-24:before {
  content: "\ee98";
}

.ci-image-pin-32:before {
  content: "\ee99";
}

.ci-image-plus-16:before {
  content: "\ee9a";
}

.ci-image-plus-24:before {
  content: "\ee9b";
}

.ci-image-plus-32:before {
  content: "\ee9c";
}

.ci-images-16:before {
  content: "\ee9d";
}

.ci-images-24:before {
  content: "\ee9e";
}

.ci-images-32:before {
  content: "\ee9f";
}

.ci-image-segmentation-16:before {
  content: "\eea0";
}

.ci-image-segmentation-24:before {
  content: "\eea1";
}

.ci-image-segmentation-32:before {
  content: "\eea2";
}

.ci-image-space-16:before {
  content: "\eeac";
}

.ci-image-space-24:before {
  content: "\eead";
}

.ci-image-space-32:before {
  content: "\eeae";
}

.ci-image-unit-16:before {
  content: "\eeaf";
}

.ci-image-unit-24:before {
  content: "\eeb0";
}

.ci-image-unit-32:before {
  content: "\eeb1";
}

.ci-import-16:before {
  content: "\eeb2";
}

.ci-import-24:before {
  content: "\eeb3";
}

.ci-import-32:before {
  content: "\eeb4";
}

.ci-inbox-16:before {
  content: "\eeb5";
}

.ci-inbox-24:before {
  content: "\eeb6";
}

.ci-inbox-32:before {
  content: "\eeb7";
}

.ci-increase-link-chart-symbol-size-16:before {
  content: "\eeb8";
}

.ci-increase-link-chart-symbol-size-24:before {
  content: "\eeb9";
}

.ci-increase-link-chart-symbol-size-32:before {
  content: "\eeba";
}

.ci-indicator-16:before {
  content: "\eebb";
}

.ci-indicator-24:before {
  content: "\eebc";
}

.ci-indicator-32:before {
  content: "\eebd";
}

.ci-infographic-16:before {
  content: "\eebe";
}

.ci-infographic-24:before {
  content: "\eebf";
}

.ci-infographic-32:before {
  content: "\eec0";
}

.ci-information-16:before {
  content: "\eec1";
}

.ci-information-16-f:before {
  content: "\eec2";
}

.ci-information-24:before {
  content: "\eec3";
}

.ci-information-24-f:before {
  content: "\eec4";
}

.ci-information-32:before {
  content: "\eec5";
}

.ci-information-32-f:before {
  content: "\eec6";
}

.ci-information-letter-16:before {
  content: "\eec7";
}

.ci-information-letter-24:before {
  content: "\eec8";
}

.ci-information-letter-32:before {
  content: "\eec9";
}

.ci-initiative-16:before {
  content: "\eeca";
}

.ci-initiative-24:before {
  content: "\eecb";
}

.ci-initiative-32:before {
  content: "\eecc";
}

.ci-initiative-template-16:before {
  content: "\eecd";
}

.ci-initiative-template-24:before {
  content: "\eece";
}

.ci-initiative-template-32:before {
  content: "\eecf";
}

.ci-insets-16:before {
  content: "\eed0";
}

.ci-insets-24:before {
  content: "\eed1";
}

.ci-insets-32:before {
  content: "\eed2";
}

.ci-inspection-16:before {
  content: "\eed3";
}

.ci-inspection-24:before {
  content: "\eed4";
}

.ci-inspection-32:before {
  content: "\eed5";
}

.ci-integer-16:before {
  content: "\eed6";
}

.ci-integer-24:before {
  content: "\eed7";
}

.ci-integer-32:before {
  content: "\eed8";
}

.ci-investigation-16:before {
  content: "\eed9";
}

.ci-investigation-24:before {
  content: "\eeda";
}

.ci-investigation-32:before {
  content: "\eedb";
}

.ci-italicize-16:before {
  content: "\eedc";
}

.ci-italicize-24:before {
  content: "\eedd";
}

.ci-italicize-32:before {
  content: "\eede";
}

.ci-key-16:before {
  content: "\eedf";
}

.ci-key-24:before {
  content: "\eee0";
}

.ci-key-32:before {
  content: "\eee1";
}

.ci-keyboard-16:before {
  content: "\eee2";
}

.ci-keyboard-24:before {
  content: "\eee3";
}

.ci-keyboard-32:before {
  content: "\eee4";
}

.ci-keypad-16:before {
  content: "\eee5";
}

.ci-keypad-24:before {
  content: "\eee6";
}

.ci-keypad-32:before {
  content: "\eee7";
}

.ci-knowledge-graph-16:before {
  content: "\eee8";
}

.ci-knowledge-graph-24:before {
  content: "\eee9";
}

.ci-knowledge-graph-32:before {
  content: "\eeea";
}

.ci-knowledge-graph-dashboard-16:before {
  content: "\eeeb";
}

.ci-knowledge-graph-dashboard-24:before {
  content: "\eeec";
}

.ci-knowledge-graph-dashboard-32:before {
  content: "\eeed";
}

.ci-knowledge-graph-data-model-16:before {
  content: "\eeee";
}

.ci-knowledge-graph-data-model-24:before {
  content: "\eeef";
}

.ci-knowledge-graph-data-model-32:before {
  content: "\eef0";
}

.ci-knowledge-graph-export-16:before {
  content: "\eef1";
}

.ci-knowledge-graph-export-24:before {
  content: "\eef2";
}

.ci-knowledge-graph-export-32:before {
  content: "\eef3";
}

.ci-knowledge-graph-import-16:before {
  content: "\eef4";
}

.ci-knowledge-graph-import-24:before {
  content: "\eef5";
}

.ci-knowledge-graph-import-32:before {
  content: "\eef6";
}

.ci-knowledge-graph-new-16:before {
  content: "\eef7";
}

.ci-knowledge-graph-new-24:before {
  content: "\eef8";
}

.ci-knowledge-graph-new-32:before {
  content: "\eef9";
}

.ci-knowledge-layer-16:before {
  content: "\ef00";
}

.ci-knowledge-layer-24:before {
  content: "\ef01";
}

.ci-knowledge-layer-32:before {
  content: "\ef02";
}

.ci-knowledge-server-16:before {
  content: "\ef03";
}

.ci-knowledge-server-24:before {
  content: "\ef04";
}

.ci-knowledge-server-32:before {
  content: "\ef05";
}

.ci-label-16:before {
  content: "\ef06";
}

.ci-label-24:before {
  content: "\ef07";
}

.ci-label-32:before {
  content: "\ef08";
}

.ci-label-off-16:before {
  content: "\ef09";
}

.ci-label-off-24:before {
  content: "\ef0a";
}

.ci-label-off-32:before {
  content: "\ef0b";
}

.ci-language-16:before {
  content: "\ef0c";
}

.ci-language-24:before {
  content: "\ef0d";
}

.ci-language-32:before {
  content: "\ef0e";
}

.ci-language-translate-16:before {
  content: "\ef0f";
}

.ci-language-translate-24:before {
  content: "\ef10";
}

.ci-language-translate-32:before {
  content: "\ef11";
}

.ci-lasso-16:before {
  content: "\ef12";
}

.ci-lasso-24:before {
  content: "\ef13";
}

.ci-lasso-32:before {
  content: "\ef14";
}

.ci-lasso-select-16:before {
  content: "\ef15";
}

.ci-lasso-select-24:before {
  content: "\ef16";
}

.ci-lasso-select-32:before {
  content: "\ef17";
}

.ci-launch-16:before {
  content: "\ef18";
}

.ci-launch-24:before {
  content: "\ef19";
}

.ci-launch-32:before {
  content: "\ef1a";
}

.ci-layer-16:before {
  content: "\ef1b";
}

.ci-layer-24:before {
  content: "\ef1c";
}

.ci-layer-32:before {
  content: "\ef1d";
}

.ci-layer-basemap-16:before {
  content: "\ef1e";
}

.ci-layer-basemap-24:before {
  content: "\ef1f";
}

.ci-layer-basemap-32:before {
  content: "\ef20";
}

.ci-layer-broken-16:before {
  content: "\ef21";
}

.ci-layer-broken-24:before {
  content: "\ef22";
}

.ci-layer-broken-32:before {
  content: "\ef23";
}

.ci-layer-filter-16:before {
  content: "\ef24";
}

.ci-layer-filter-24:before {
  content: "\ef25";
}

.ci-layer-filter-32:before {
  content: "\ef26";
}

.ci-layer-graphics-16:before {
  content: "\ef27";
}

.ci-layer-graphics-24:before {
  content: "\ef28";
}

.ci-layer-graphics-32:before {
  content: "\ef29";
}

.ci-layer-hide-16:before {
  content: "\ef2a";
}

.ci-layer-hide-24:before {
  content: "\ef2b";
}

.ci-layer-hide-32:before {
  content: "\ef2c";
}

.ci-layer-kml-16:before {
  content: "\ef2d";
}

.ci-layer-kml-24:before {
  content: "\ef2e";
}

.ci-layer-kml-32:before {
  content: "\ef2f";
}

.ci-layer-line-16:before {
  content: "\ef30";
}

.ci-layer-line-24:before {
  content: "\ef31";
}

.ci-layer-line-32:before {
  content: "\ef32";
}

.ci-layer-line-service-16:before {
  content: "\ef33";
}

.ci-layer-line-service-24:before {
  content: "\ef34";
}

.ci-layer-line-service-32:before {
  content: "\ef35";
}

.ci-layer-map-16:before {
  content: "\ef36";
}

.ci-layer-map-24:before {
  content: "\ef37";
}

.ci-layer-map-32:before {
  content: "\ef38";
}

.ci-layer-map-service-16:before {
  content: "\ef39";
}

.ci-layer-map-service-24:before {
  content: "\ef3a";
}

.ci-layer-map-service-32:before {
  content: "\ef3b";
}

.ci-layer-points-16:before {
  content: "\ef3c";
}

.ci-layer-points-24:before {
  content: "\ef3d";
}

.ci-layer-points-32:before {
  content: "\ef3e";
}

.ci-layer-polygon-16:before {
  content: "\ef3f";
}

.ci-layer-polygon-24:before {
  content: "\ef40";
}

.ci-layer-polygon-32:before {
  content: "\ef41";
}

.ci-layer-polygon-service-16:before {
  content: "\ef42";
}

.ci-layer-polygon-service-24:before {
  content: "\ef43";
}

.ci-layer-polygon-service-32:before {
  content: "\ef44";
}

.ci-layers-16:before {
  content: "\ef45";
}

.ci-layers-24:before {
  content: "\ef46";
}

.ci-layers-32:before {
  content: "\ef47";
}

.ci-layers-editable-16:before {
  content: "\ef48";
}

.ci-layers-editable-24:before {
  content: "\ef49";
}

.ci-layers-editable-32:before {
  content: "\ef4a";
}

.ci-layer-service-16:before {
  content: "\ef4b";
}

.ci-layer-service-24:before {
  content: "\ef4c";
}

.ci-layer-service-32:before {
  content: "\ef4d";
}

.ci-layers-reference-16:before {
  content: "\ef4e";
}

.ci-layers-reference-24:before {
  content: "\ef4f";
}

.ci-layers-reference-32:before {
  content: "\ef50";
}

.ci-layer-zoom-to-16:before {
  content: "\ef51";
}

.ci-layer-zoom-to-24:before {
  content: "\ef52";
}

.ci-layer-zoom-to-32:before {
  content: "\ef53";
}

.ci-layout-horizontal-16:before {
  content: "\ef54";
}

.ci-layout-horizontal-24:before {
  content: "\ef55";
}

.ci-layout-horizontal-32:before {
  content: "\ef56";
}

.ci-layout-vertical-16:before {
  content: "\ef57";
}

.ci-layout-vertical-24:before {
  content: "\ef58";
}

.ci-layout-vertical-32:before {
  content: "\ef59";
}

.ci-left-16:before {
  content: "\ef5a";
}

.ci-left-24:before {
  content: "\ef5b";
}

.ci-left-32:before {
  content: "\ef5c";
}

.ci-left-align-16:before {
  content: "\ef5d";
}

.ci-left-align-24:before {
  content: "\ef5e";
}

.ci-left-align-32:before {
  content: "\ef5f";
}

.ci-left-edge-16:before {
  content: "\ef60";
}

.ci-left-edge-24:before {
  content: "\ef61";
}

.ci-left-edge-32:before {
  content: "\ef62";
}

.ci-left-left-16:before {
  content: "\ef63";
}

.ci-left-left-24:before {
  content: "\ef64";
}

.ci-left-left-32:before {
  content: "\ef65";
}

.ci-left-right-16:before {
  content: "\ef66";
}

.ci-left-right-24:before {
  content: "\ef67";
}

.ci-left-right-32:before {
  content: "\ef68";
}

.ci-legend-16:before {
  content: "\ef69";
}

.ci-legend-24:before {
  content: "\ef6a";
}

.ci-legend-32:before {
  content: "\ef6b";
}

.ci-legend-left-16:before {
  content: "\ef6c";
}

.ci-legend-left-24:before {
  content: "\ef6d";
}

.ci-legend-left-32:before {
  content: "\ef6e";
}

.ci-legend-plus-16:before {
  content: "\ef6f";
}

.ci-legend-plus-24:before {
  content: "\ef70";
}

.ci-legend-plus-32:before {
  content: "\ef71";
}

.ci-legend-right-16:before {
  content: "\ef72";
}

.ci-legend-right-24:before {
  content: "\ef73";
}

.ci-legend-right-32:before {
  content: "\ef74";
}

.ci-license-16:before {
  content: "\ef75";
}

.ci-license-24:before {
  content: "\ef76";
}

.ci-license-32:before {
  content: "\ef77";
}

.ci-lightbulb-16:before {
  content: "\ef78";
}

.ci-lightbulb-24:before {
  content: "\ef79";
}

.ci-lightbulb-32:before {
  content: "\ef7a";
}

.ci-light-rain-16:before {
  content: "\ef7b";
}

.ci-light-rain-24:before {
  content: "\ef7c";
}

.ci-light-rain-32:before {
  content: "\ef7d";
}

.ci-light-snow-16:before {
  content: "\ef7e";
}

.ci-light-snow-24:before {
  content: "\ef7f";
}

.ci-light-snow-32:before {
  content: "\ef80";
}

.ci-line-16:before {
  content: "\ef81";
}

.ci-line-24:before {
  content: "\ef82";
}

.ci-line-32:before {
  content: "\ef83";
}

.ci-line-check-16:before {
  content: "\ef84";
}

.ci-line-check-24:before {
  content: "\ef85";
}

.ci-line-check-32:before {
  content: "\ef86";
}

.ci-line-dashed-16:before {
  content: "\ef87";
}

.ci-line-dashed-24:before {
  content: "\ef88";
}

.ci-line-dashed-32:before {
  content: "\ef89";
}

.ci-line-dotted-16:before {
  content: "\ef8a";
}

.ci-line-dotted-24:before {
  content: "\ef8b";
}

.ci-line-dotted-32:before {
  content: "\ef8c";
}

.ci-line-of-sight-16:before {
  content: "\ef8d";
}

.ci-line-of-sight-24:before {
  content: "\ef8e";
}

.ci-line-of-sight-32:before {
  content: "\ef8f";
}

.ci-line-solid-16:before {
  content: "\ef90";
}

.ci-line-solid-24:before {
  content: "\ef91";
}

.ci-line-solid-32:before {
  content: "\ef92";
}

.ci-line-straight-16:before {
  content: "\ef93";
}

.ci-line-straight-24:before {
  content: "\ef94";
}

.ci-line-straight-32:before {
  content: "\ef95";
}

.ci-link-16:before {
  content: "\ef96";
}

.ci-link-24:before {
  content: "\ef97";
}

.ci-link-32:before {
  content: "\ef98";
}

.ci-link-chart-16:before {
  content: "\ef99";
}

.ci-link-chart-24:before {
  content: "\ef9a";
}

.ci-link-chart-32:before {
  content: "\ef9b";
}

.ci-list-16:before {
  content: "\ef9c";
}

.ci-list-24:before {
  content: "\ef9d";
}

.ci-list-32:before {
  content: "\ef9e";
}

.ci-list-bullet-16:before {
  content: "\ef9f";
}

.ci-list-bullet-24:before {
  content: "\efa0";
}

.ci-list-bullet-32:before {
  content: "\efa1";
}

.ci-list-button-16:before {
  content: "\efa2";
}

.ci-list-button-24:before {
  content: "\efa3";
}

.ci-list-button-32:before {
  content: "\efa4";
}

.ci-list-check-16:before {
  content: "\efa5";
}

.ci-list-check-24:before {
  content: "\efa6";
}

.ci-list-check-32:before {
  content: "\efa7";
}

.ci-list-check-all-16:before {
  content: "\efa8";
}

.ci-list-check-all-24:before {
  content: "\efa9";
}

.ci-list-check-all-32:before {
  content: "\efaa";
}

.ci-list-merge-16:before {
  content: "\efab";
}

.ci-list-merge-24:before {
  content: "\efac";
}

.ci-list-merge-32:before {
  content: "\efad";
}

.ci-list-number-16:before {
  content: "\efae";
}

.ci-list-number-24:before {
  content: "\efaf";
}

.ci-list-number-32:before {
  content: "\efb0";
}

.ci-list-number-rtl-16:before {
  content: "\efb1";
}

.ci-list-number-rtl-24:before {
  content: "\efb2";
}

.ci-list-number-rtl-32:before {
  content: "\efb3";
}

.ci-list-radio-16:before {
  content: "\efb4";
}

.ci-list-radio-24:before {
  content: "\efb5";
}

.ci-list-radio-32:before {
  content: "\efb6";
}

.ci-list-rectangle-16:before {
  content: "\efb7";
}

.ci-list-rectangle-24:before {
  content: "\efb8";
}

.ci-list-rectangle-32:before {
  content: "\efb9";
}

.ci-list-show-all-16:before {
  content: "\efba";
}

.ci-list-show-all-24:before {
  content: "\efbb";
}

.ci-list-show-all-32:before {
  content: "\efbc";
}

.ci-locator-16:before {
  content: "\efbd";
}

.ci-locator-24:before {
  content: "\efbe";
}

.ci-locator-32:before {
  content: "\efbf";
}

.ci-lock-16:before {
  content: "\efc0";
}

.ci-lock-16-f:before {
  content: "\efc1";
}

.ci-lock-24:before {
  content: "\efc2";
}

.ci-lock-24-f:before {
  content: "\efc3";
}

.ci-lock-32:before {
  content: "\efc4";
}

.ci-lock-32-f:before {
  content: "\efc5";
}

.ci-ltr-elements-align-16:before {
  content: "\efc6";
}

.ci-ltr-elements-align-24:before {
  content: "\efc7";
}

.ci-ltr-elements-align-32:before {
  content: "\efc8";
}

.ci-ltr-paragraph-align-16:before {
  content: "\efc9";
}

.ci-ltr-paragraph-align-24:before {
  content: "\efca";
}

.ci-ltr-paragraph-align-32:before {
  content: "\efcb";
}

.ci-magnifying-glass-16:before {
  content: "\efcc";
}

.ci-magnifying-glass-24:before {
  content: "\efcd";
}

.ci-magnifying-glass-32:before {
  content: "\efce";
}

.ci-magnifying-glass-minus-16:before {
  content: "\efcf";
}

.ci-magnifying-glass-minus-24:before {
  content: "\efd0";
}

.ci-magnifying-glass-minus-32:before {
  content: "\efd1";
}

.ci-magnifying-glass-plus-16:before {
  content: "\efd2";
}

.ci-magnifying-glass-plus-24:before {
  content: "\efd3";
}

.ci-magnifying-glass-plus-32:before {
  content: "\efd4";
}

.ci-map-16:before {
  content: "\efd5";
}

.ci-map-24:before {
  content: "\efd6";
}

.ci-map-32:before {
  content: "\efd7";
}

.ci-map-contents-16:before {
  content: "\efd8";
}

.ci-map-contents-24:before {
  content: "\efd9";
}

.ci-map-contents-32:before {
  content: "\efda";
}

.ci-map-pin-16:before {
  content: "\efdb";
}

.ci-map-pin-24:before {
  content: "\efdc";
}

.ci-map-pin-32:before {
  content: "\efdd";
}

.ci-map-space-16:before {
  content: "\efde";
}

.ci-map-space-24:before {
  content: "\efdf";
}

.ci-map-space-32:before {
  content: "\efe0";
}

.ci-marketplace-16:before {
  content: "\efe1";
}

.ci-marketplace-24:before {
  content: "\efe2";
}

.ci-marketplace-32:before {
  content: "\efe3";
}

.ci-maximize-16:before {
  content: "\efe4";
}

.ci-maximize-24:before {
  content: "\efe5";
}

.ci-maximize-32:before {
  content: "\efe6";
}

.ci-maximum-16:before {
  content: "\efe7";
}

.ci-maximum-24:before {
  content: "\efe8";
}

.ci-maximum-32:before {
  content: "\efe9";
}

.ci-maximum-graph-16:before {
  content: "\efea";
}

.ci-maximum-graph-24:before {
  content: "\efeb";
}

.ci-maximum-graph-32:before {
  content: "\efec";
}

.ci-maximum-territory-distance-16:before {
  content: "\efed";
}

.ci-maximum-territory-distance-24:before {
  content: "\efee";
}

.ci-maximum-territory-distance-32:before {
  content: "\efef";
}

.ci-measure-16:before {
  content: "\eff0";
}

.ci-measure-24:before {
  content: "\eff1";
}

.ci-measure-32:before {
  content: "\eff2";
}

.ci-measure-area-16:before {
  content: "\eff3";
}

.ci-measure-area-24:before {
  content: "\eff4";
}

.ci-measure-area-32:before {
  content: "\eff5";
}

.ci-measure-building-height-shadow-16:before {
  content: "\eff6";
}

.ci-measure-building-height-shadow-24:before {
  content: "\eff7";
}

.ci-measure-building-height-shadow-32:before {
  content: "\eff8";
}

.ci-measure-building-height-top-base-16:before {
  content: "\eff9";
}

.ci-measure-building-height-top-base-24:before {
  content: "\effa";
}

.ci-measure-building-height-top-base-32:before {
  content: "\effb";
}

.ci-measure-building-height-top-shadow-16:before {
  content: "\effc";
}

.ci-measure-building-height-top-shadow-24:before {
  content: "\effd";
}

.ci-measure-building-height-top-shadow-32:before {
  content: "\effe";
}

.ci-measure-line-16:before {
  content: "\efff";
}

.ci-measure-line-24:before {
  content: "\f000";
}

.ci-measure-line-32:before {
  content: "\f001";
}

.ci-media-layer-16:before {
  content: "\f002";
}

.ci-media-layer-24:before {
  content: "\f003";
}

.ci-media-layer-32:before {
  content: "\f004";
}

.ci-mega-phone-16:before {
  content: "\f005";
}

.ci-mega-phone-24:before {
  content: "\f006";
}

.ci-mega-phone-32:before {
  content: "\f007";
}

.ci-merge-16:before {
  content: "\f008";
}

.ci-merge-24:before {
  content: "\f009";
}

.ci-merge-32:before {
  content: "\f00a";
}

.ci-merge-on-highway-16:before {
  content: "\f00b";
}

.ci-merge-on-highway-24:before {
  content: "\f00c";
}

.ci-merge-on-highway-32:before {
  content: "\f00d";
}

.ci-merge-on-highway-right-16:before {
  content: "\f00e";
}

.ci-merge-on-highway-right-24:before {
  content: "\f00f";
}

.ci-merge-on-highway-right-32:before {
  content: "\f010";
}

.ci-microphone-16:before {
  content: "\f011";
}

.ci-microphone-24:before {
  content: "\f012";
}

.ci-microphone-32:before {
  content: "\f013";
}

.ci-microphone-plus-16:before {
  content: "\f014";
}

.ci-microphone-plus-24:before {
  content: "\f015";
}

.ci-microphone-plus-32:before {
  content: "\f016";
}

.ci-min-distance-between-centers-16:before {
  content: "\f017";
}

.ci-min-distance-between-centers-24:before {
  content: "\f018";
}

.ci-min-distance-between-centers-32:before {
  content: "\f019";
}

.ci-minimize-16:before {
  content: "\f01a";
}

.ci-minimize-24:before {
  content: "\f01b";
}

.ci-minimize-32:before {
  content: "\f01c";
}

.ci-minimum-16:before {
  content: "\f01d";
}

.ci-minimum-24:before {
  content: "\f01e";
}

.ci-minimum-32:before {
  content: "\f01f";
}

.ci-minimum-graph-16:before {
  content: "\f020";
}

.ci-minimum-graph-24:before {
  content: "\f021";
}

.ci-minimum-graph-32:before {
  content: "\f022";
}

.ci-minus-16:before {
  content: "\f023";
}

.ci-minus-24:before {
  content: "\f024";
}

.ci-minus-32:before {
  content: "\f025";
}

.ci-minus-circle-16:before {
  content: "\f026";
}

.ci-minus-circle-24:before {
  content: "\f027";
}

.ci-minus-circle-32:before {
  content: "\f028";
}

.ci-minus-square-16:before {
  content: "\f029";
}

.ci-minus-square-24:before {
  content: "\f02a";
}

.ci-minus-square-32:before {
  content: "\f02b";
}

.ci-miscellaneous-collection-16:before {
  content: "\f02c";
}

.ci-miscellaneous-collection-24:before {
  content: "\f02d";
}

.ci-miscellaneous-collection-32:before {
  content: "\f02e";
}

.ci-mobile-16:before {
  content: "\f02f";
}

.ci-mobile-24:before {
  content: "\f030";
}

.ci-mobile-32:before {
  content: "\f031";
}

.ci-mobile-off-16:before {
  content: "\f032";
}

.ci-mobile-off-24:before {
  content: "\f033";
}

.ci-mobile-off-32:before {
  content: "\f034";
}

.ci-mobile-vibrate-16:before {
  content: "\f035";
}

.ci-mobile-vibrate-24:before {
  content: "\f036";
}

.ci-mobile-vibrate-32:before {
  content: "\f037";
}

.ci-monitor-16:before {
  content: "\f038";
}

.ci-monitor-24:before {
  content: "\f039";
}

.ci-monitor-32:before {
  content: "\f03a";
}

.ci-moon-16:before {
  content: "\f03b";
}

.ci-moon-24:before {
  content: "\f03c";
}

.ci-moon-32:before {
  content: "\f03d";
}

.ci-move-16:before {
  content: "\f03e";
}

.ci-move-24:before {
  content: "\f03f";
}

.ci-move-32:before {
  content: "\f040";
}

.ci-move-up-16:before {
  content: "\f041";
}

.ci-move-up-24:before {
  content: "\f042";
}

.ci-move-up-32:before {
  content: "\f043";
}

.ci-move-up-all-16:before {
  content: "\f044";
}

.ci-move-up-all-24:before {
  content: "\f045";
}

.ci-move-up-all-32:before {
  content: "\f046";
}

.ci-mu-16:before {
  content: "\f047";
}

.ci-mu-24:before {
  content: "\f048";
}

.ci-mu-32:before {
  content: "\f049";
}

.ci-multiple-variables-16:before {
  content: "\f050";
}

.ci-multiple-variables-24:before {
  content: "\f051";
}

.ci-multiple-variables-32:before {
  content: "\f052";
}

.ci-music-note-16:before {
  content: "\f053";
}

.ci-music-note-24:before {
  content: "\f054";
}

.ci-music-note-32:before {
  content: "\f055";
}

.ci-new-training-16:before {
  content: "\f056";
}

.ci-new-training-24:before {
  content: "\f057";
}

.ci-new-training-32:before {
  content: "\f058";
}

.ci-no-attachment-16:before {
  content: "\f059";
}

.ci-no-attachment-24:before {
  content: "\f05a";
}

.ci-no-attachment-32:before {
  content: "\f05b";
}

.ci-nodes-link-16:before {
  content: "\f05c";
}

.ci-nodes-link-24:before {
  content: "\f05d";
}

.ci-nodes-link-32:before {
  content: "\f05e";
}

.ci-nodes-merge-16:before {
  content: "\f05f";
}

.ci-nodes-merge-24:before {
  content: "\f060";
}

.ci-nodes-merge-32:before {
  content: "\f061";
}

.ci-nodes-unlink-16:before {
  content: "\f062";
}

.ci-nodes-unlink-24:before {
  content: "\f063";
}

.ci-nodes-unlink-32:before {
  content: "\f064";
}

.ci-nodes-unmerge-16:before {
  content: "\f065";
}

.ci-nodes-unmerge-24:before {
  content: "\f066";
}

.ci-nodes-unmerge-32:before {
  content: "\f067";
}

.ci-no-image-16:before {
  content: "\f068";
}

.ci-no-image-24:before {
  content: "\f069";
}

.ci-no-image-32:before {
  content: "\f06a";
}

.ci-no-map-16:before {
  content: "\f06b";
}

.ci-no-map-24:before {
  content: "\f06c";
}

.ci-no-map-32:before {
  content: "\f06d";
}

.ci-notebook-16:before {
  content: "\f06e";
}

.ci-notebook-24:before {
  content: "\f06f";
}

.ci-notebook-32:before {
  content: "\f070";
}

.ci-notebook-server-16:before {
  content: "\f071";
}

.ci-notebook-server-24:before {
  content: "\f072";
}

.ci-notebook-server-32:before {
  content: "\f073";
}

.ci-notebook-snapshot-16:before {
  content: "\f074";
}

.ci-notebook-snapshot-24:before {
  content: "\f075";
}

.ci-notebook-snapshot-32:before {
  content: "\f076";
}

.ci-null-16:before {
  content: "\f077";
}

.ci-null-24:before {
  content: "\f078";
}

.ci-null-32:before {
  content: "\f079";
}

.ci-number-16:before {
  content: "\f07a";
}

.ci-number-24:before {
  content: "\f07b";
}

.ci-number-32:before {
  content: "\f07c";
}

.ci-number-circle-1-16:before {
  content: "\f07d";
}

.ci-number-circle-1-24:before {
  content: "\f07e";
}

.ci-number-circle-1-32:before {
  content: "\f07f";
}

.ci-number-circle-2-16:before {
  content: "\f080";
}

.ci-number-circle-2-24:before {
  content: "\f081";
}

.ci-number-circle-2-32:before {
  content: "\f082";
}

.ci-number-circle-3-16:before {
  content: "\f083";
}

.ci-number-circle-3-24:before {
  content: "\f084";
}

.ci-number-circle-3-32:before {
  content: "\f085";
}

.ci-number-circle-4-16:before {
  content: "\f086";
}

.ci-number-circle-4-24:before {
  content: "\f087";
}

.ci-number-circle-4-32:before {
  content: "\f088";
}

.ci-number-circle-5-16:before {
  content: "\f089";
}

.ci-number-circle-5-24:before {
  content: "\f08a";
}

.ci-number-circle-5-32:before {
  content: "\f08b";
}

.ci-number-circle-6-16:before {
  content: "\f08c";
}

.ci-number-circle-6-24:before {
  content: "\f08d";
}

.ci-number-circle-6-32:before {
  content: "\f08e";
}

.ci-number-circle-7-16:before {
  content: "\f08f";
}

.ci-number-circle-7-24:before {
  content: "\f090";
}

.ci-number-circle-7-32:before {
  content: "\f091";
}

.ci-number-circle-8-16:before {
  content: "\f092";
}

.ci-number-circle-8-24:before {
  content: "\f093";
}

.ci-number-circle-8-32:before {
  content: "\f094";
}

.ci-number-circle-9-16:before {
  content: "\f095";
}

.ci-number-circle-9-24:before {
  content: "\f096";
}

.ci-number-circle-9-32:before {
  content: "\f097";
}

.ci-number-of-territories-16:before {
  content: "\f098";
}

.ci-number-of-territories-24:before {
  content: "\f099";
}

.ci-number-of-territories-32:before {
  content: "\f09a";
}

.ci-object-detection-16:before {
  content: "\f09b";
}

.ci-object-detection-24:before {
  content: "\f09c";
}

.ci-object-detection-32:before {
  content: "\f09d";
}

.ci-offline-16:before {
  content: "\f09e";
}

.ci-offline-24:before {
  content: "\f09f";
}

.ci-offline-32:before {
  content: "\f0a0";
}

.ci-online-16:before {
  content: "\f0a1";
}

.ci-online-24:before {
  content: "\f0a2";
}

.ci-online-32:before {
  content: "\f0a3";
}

.ci-open-book-16:before {
  content: "\f0a4";
}

.ci-open-book-24:before {
  content: "\f0a5";
}

.ci-open-book-32:before {
  content: "\f0a6";
}

.ci-organization-16:before {
  content: "\f0a7";
}

.ci-organization-24:before {
  content: "\f0a8";
}

.ci-organization-32:before {
  content: "\f0a9";
}

.ci-oriented-imagery-widget-16:before {
  content: "\f0aa";
}

.ci-oriented-imagery-widget-24:before {
  content: "\f0ab";
}

.ci-oriented-imagery-widget-32:before {
  content: "\f0ac";
}

.ci-outbox-16:before {
  content: "\f0ad";
}

.ci-outbox-24:before {
  content: "\f0ae";
}

.ci-outbox-32:before {
  content: "\f0af";
}

.ci-overlap-features-16:before {
  content: "\f0b0";
}

.ci-overlap-features-24:before {
  content: "\f0b1";
}

.ci-overlap-features-32:before {
  content: "\f0b2";
}

.ci-package-16:before {
  content: "\f0bc";
}

.ci-package-24:before {
  content: "\f0bd";
}

.ci-package-32:before {
  content: "\f0be";
}

.ci-paint-bucket-16:before {
  content: "\f0bf";
}

.ci-paint-bucket-24:before {
  content: "\f0c0";
}

.ci-paint-bucket-32:before {
  content: "\f0c1";
}

.ci-palette-16:before {
  content: "\f0c2";
}

.ci-palette-24:before {
  content: "\f0c3";
}

.ci-palette-32:before {
  content: "\f0c4";
}

.ci-palette-check-16:before {
  content: "\f0c5";
}

.ci-palette-check-24:before {
  content: "\f0c6";
}

.ci-palette-check-32:before {
  content: "\f0c7";
}

.ci-pan-16:before {
  content: "\f0c8";
}

.ci-pan-24:before {
  content: "\f0c9";
}

.ci-pan-32:before {
  content: "\f0ca";
}

.ci-pan-drag-16:before {
  content: "\f0cb";
}

.ci-pan-drag-24:before {
  content: "\f0cc";
}

.ci-pan-drag-32:before {
  content: "\f0cd";
}

.ci-partly-cloudy-16:before {
  content: "\f0ce";
}

.ci-partly-cloudy-24:before {
  content: "\f0cf";
}

.ci-partly-cloudy-32:before {
  content: "\f0d0";
}

.ci-paste-16:before {
  content: "\f0d1";
}

.ci-paste-24:before {
  content: "\f0d2";
}

.ci-paste-32:before {
  content: "\f0d3";
}

.ci-pause-16:before {
  content: "\f0d4";
}

.ci-pause-16-f:before {
  content: "\f0d5";
}

.ci-pause-24:before {
  content: "\f0d6";
}

.ci-pause-24-f:before {
  content: "\f0d7";
}

.ci-pause-32:before {
  content: "\f0d8";
}

.ci-pause-32-f:before {
  content: "\f0d9";
}

.ci-pen-16:before {
  content: "\f0da";
}

.ci-pen-24:before {
  content: "\f0db";
}

.ci-pen-32:before {
  content: "\f0dc";
}

.ci-pencil-16:before {
  content: "\f0dd";
}

.ci-pencil-24:before {
  content: "\f0de";
}

.ci-pencil-32:before {
  content: "\f0df";
}

.ci-pencil-mark-16:before {
  content: "\f0e0";
}

.ci-pencil-mark-24:before {
  content: "\f0e1";
}

.ci-pencil-mark-32:before {
  content: "\f0e2";
}

.ci-pencil-mark-plus-16:before {
  content: "\f0e3";
}

.ci-pencil-mark-plus-24:before {
  content: "\f0e4";
}

.ci-pencil-mark-plus-32:before {
  content: "\f0e5";
}

.ci-pencil-square-16:before {
  content: "\f0e6";
}

.ci-pencil-square-24:before {
  content: "\f0e7";
}

.ci-pencil-square-32:before {
  content: "\f0e8";
}

.ci-pencil-tip-16:before {
  content: "\f0e9";
}

.ci-pencil-tip-24:before {
  content: "\f0ea";
}

.ci-pencil-tip-32:before {
  content: "\f0eb";
}

.ci-pen-mark-16:before {
  content: "\f0ec";
}

.ci-pen-mark-24:before {
  content: "\f0ed";
}

.ci-pen-mark-32:before {
  content: "\f0ee";
}

.ci-pen-mark-plus-16:before {
  content: "\f0ef";
}

.ci-pen-mark-plus-24:before {
  content: "\f0f0";
}

.ci-pen-mark-plus-32:before {
  content: "\f0f1";
}

.ci-pentagon-16:before {
  content: "\f0f2";
}

.ci-pentagon-24:before {
  content: "\f0f3";
}

.ci-pentagon-32:before {
  content: "\f0f4";
}

.ci-pen-tip-16:before {
  content: "\f0f5";
}

.ci-pen-tip-24:before {
  content: "\f0f6";
}

.ci-pen-tip-32:before {
  content: "\f0f7";
}

.ci-percent-16:before {
  content: "\f0f8";
}

.ci-percent-24:before {
  content: "\f0f9";
}

.ci-percent-32:before {
  content: "\f0fa";
}

.ci-person-2-16:before {
  content: "\f0fb";
}

.ci-person-2-24:before {
  content: "\f0fc";
}

.ci-person-2-32:before {
  content: "\f0fd";
}

.ci-person-16:before {
  content: "\f0fe";
}

.ci-person-24:before {
  content: "\f0ff";
}

.ci-person-32:before {
  content: "\f100";
}

.ci-personal-homepage-16:before {
  content: "\f101";
}

.ci-personal-homepage-24:before {
  content: "\f102";
}

.ci-personal-homepage-32:before {
  content: "\f103";
}

.ci-phone-16:before {
  content: "\f104";
}

.ci-phone-24:before {
  content: "\f105";
}

.ci-phone-32:before {
  content: "\f106";
}

.ci-pie-chart-16:before {
  content: "\f107";
}

.ci-pie-chart-24:before {
  content: "\f108";
}

.ci-pie-chart-32:before {
  content: "\f109";
}

.ci-pin-16:before {
  content: "\f10a";
}

.ci-pin-24:before {
  content: "\f10b";
}

.ci-pin-32:before {
  content: "\f10c";
}

.ci-pin-plus-16:before {
  content: "\f10d";
}

.ci-pin-plus-24:before {
  content: "\f10e";
}

.ci-pin-plus-32:before {
  content: "\f10f";
}

.ci-pins-16:before {
  content: "\f110";
}

.ci-pins-24:before {
  content: "\f111";
}

.ci-pins-32:before {
  content: "\f112";
}

.ci-pin-tear-16:before {
  content: "\f113";
}

.ci-pin-tear-16-f:before {
  content: "\f114";
}

.ci-pin-tear-24:before {
  content: "\f115";
}

.ci-pin-tear-24-f:before {
  content: "\f116";
}

.ci-pin-tear-32:before {
  content: "\f117";
}

.ci-pin-tear-32-f:before {
  content: "\f118";
}

.ci-plane-16:before {
  content: "\f119";
}

.ci-plane-24:before {
  content: "\f11a";
}

.ci-plane-32:before {
  content: "\f11b";
}

.ci-plans-16:before {
  content: "\f11c";
}

.ci-plans-24:before {
  content: "\f11d";
}

.ci-plans-32:before {
  content: "\f11e";
}

.ci-play-16:before {
  content: "\f11f";
}

.ci-play-16-f:before {
  content: "\f120";
}

.ci-play-24:before {
  content: "\f121";
}

.ci-play-24-f:before {
  content: "\f122";
}

.ci-play-32:before {
  content: "\f123";
}

.ci-play-32-f:before {
  content: "\f124";
}

.ci-plus-16:before {
  content: "\f125";
}

.ci-plus-24:before {
  content: "\f126";
}

.ci-plus-32:before {
  content: "\f127";
}

.ci-plus-circle-16:before {
  content: "\f128";
}

.ci-plus-circle-24:before {
  content: "\f129";
}

.ci-plus-circle-32:before {
  content: "\f12a";
}

.ci-plus-square-16:before {
  content: "\f12b";
}

.ci-plus-square-24:before {
  content: "\f12c";
}

.ci-plus-square-32:before {
  content: "\f12d";
}

.ci-point-16:before {
  content: "\f12e";
}

.ci-point-24:before {
  content: "\f12f";
}

.ci-point-32:before {
  content: "\f130";
}

.ci-polygon-16:before {
  content: "\f131";
}

.ci-polygon-24:before {
  content: "\f132";
}

.ci-polygon-32:before {
  content: "\f133";
}

.ci-polygon-line-check-16:before {
  content: "\f13a";
}

.ci-polygon-line-check-24:before {
  content: "\f13b";
}

.ci-polygon-line-check-32:before {
  content: "\f13c";
}

.ci-polygon-vertices-16:before {
  content: "\f13d";
}

.ci-polygon-vertices-24:before {
  content: "\f13e";
}

.ci-polygon-vertices-32:before {
  content: "\f13f";
}

.ci-pop-up-1-16:before {
  content: "\f140";
}

.ci-pop-up-1-24:before {
  content: "\f141";
}

.ci-pop-up-1-32:before {
  content: "\f142";
}

.ci-popup-16:before {
  content: "\f143";
}

.ci-popup-24:before {
  content: "\f144";
}

.ci-popup-32:before {
  content: "\f145";
}

.ci-pop-up-blank-16:before {
  content: "\f146";
}

.ci-pop-up-blank-16-f:before {
  content: "\f147";
}

.ci-pop-up-blank-24:before {
  content: "\f148";
}

.ci-pop-up-blank-24-f:before {
  content: "\f149";
}

.ci-pop-up-blank-32:before {
  content: "\f14a";
}

.ci-pop-up-blank-32-f:before {
  content: "\f14b";
}

.ci-portal-16:before {
  content: "\f14c";
}

.ci-portal-24:before {
  content: "\f14d";
}

.ci-portal-32:before {
  content: "\f14e";
}

.ci-premium-content-user-credit-16:before {
  content: "\f14f";
}

.ci-premium-content-user-credit-24:before {
  content: "\f150";
}

.ci-premium-content-user-credit-32:before {
  content: "\f151";
}

.ci-presentation-16:before {
  content: "\f152";
}

.ci-presentation-24:before {
  content: "\f153";
}

.ci-presentation-32:before {
  content: "\f154";
}

.ci-preserve-16:before {
  content: "\f155";
}

.ci-preserve-24:before {
  content: "\f156";
}

.ci-preserve-32:before {
  content: "\f157";
}

.ci-print-16:before {
  content: "\f158";
}

.ci-print-24:before {
  content: "\f159";
}

.ci-print-32:before {
  content: "\f15a";
}

.ci-print-preview-16:before {
  content: "\f15b";
}

.ci-print-preview-24:before {
  content: "\f15c";
}

.ci-print-preview-32:before {
  content: "\f15d";
}

.ci-processing-templates-16:before {
  content: "\f15e";
}

.ci-processing-templates-24:before {
  content: "\f15f";
}

.ci-processing-templates-32:before {
  content: "\f160";
}

.ci-profile-variables-16:before {
  content: "\f161";
}

.ci-profile-variables-24:before {
  content: "\f162";
}

.ci-profile-variables-32:before {
  content: "\f163";
}

.ci-projects-16:before {
  content: "\f164";
}

.ci-projects-24:before {
  content: "\f165";
}

.ci-projects-32:before {
  content: "\f166";
}

.ci-pushpin-16:before {
  content: "\f167";
}

.ci-pushpin-24:before {
  content: "\f168";
}

.ci-pushpin-32:before {
  content: "\f169";
}

.ci-puzzle-piece-16:before {
  content: "\f16a";
}

.ci-puzzle-piece-24:before {
  content: "\f16b";
}

.ci-puzzle-piece-32:before {
  content: "\f16c";
}

.ci-qr-code-16:before {
  content: "\f16d";
}

.ci-qr-code-24:before {
  content: "\f16e";
}

.ci-qr-code-32:before {
  content: "\f16f";
}

.ci-qt-code-16:before {
  content: "\f170";
}

.ci-qt-code-24:before {
  content: "\f171";
}

.ci-qt-code-32:before {
  content: "\f172";
}

.ci-question-16:before {
  content: "\f173";
}

.ci-question-16-f:before {
  content: "\f174";
}

.ci-question-24:before {
  content: "\f175";
}

.ci-question-24-f:before {
  content: "\f176";
}

.ci-question-32:before {
  content: "\f177";
}

.ci-question-32-f:before {
  content: "\f178";
}

.ci-question-mark-16:before {
  content: "\f179";
}

.ci-question-mark-24:before {
  content: "\f17a";
}

.ci-question-mark-32:before {
  content: "\f17b";
}

.ci-quote-16:before {
  content: "\f17c";
}

.ci-quote-24:before {
  content: "\f17d";
}

.ci-quote-32:before {
  content: "\f17e";
}

.ci-rain-16:before {
  content: "\f17f";
}

.ci-rain-24:before {
  content: "\f180";
}

.ci-rain-32:before {
  content: "\f181";
}

.ci-rain-snow-16:before {
  content: "\f182";
}

.ci-rain-snow-24:before {
  content: "\f183";
}

.ci-rain-snow-32:before {
  content: "\f184";
}

.ci-rain-thunder-16:before {
  content: "\f185";
}

.ci-rain-thunder-24:before {
  content: "\f186";
}

.ci-rain-thunder-32:before {
  content: "\f187";
}

.ci-ramp-left-16:before {
  content: "\f188";
}

.ci-ramp-left-24:before {
  content: "\f189";
}

.ci-ramp-left-32:before {
  content: "\f18a";
}

.ci-ramp-right-16:before {
  content: "\f18b";
}

.ci-ramp-right-24:before {
  content: "\f18c";
}

.ci-ramp-right-32:before {
  content: "\f18d";
}

.ci-rangefinder-16:before {
  content: "\f18e";
}

.ci-rangefinder-24:before {
  content: "\f18f";
}

.ci-rangefinder-32:before {
  content: "\f190";
}

.ci-read-only-non-editable-16:before {
  content: "\f19a";
}

.ci-read-only-non-editable-24:before {
  content: "\f19b";
}

.ci-read-only-non-editable-32:before {
  content: "\f19c";
}

.ci-recent-16:before {
  content: "\f19d";
}

.ci-recent-24:before {
  content: "\f19e";
}

.ci-recent-32:before {
  content: "\f19f";
}

.ci-rectangle-16:before {
  content: "\f1a0";
}

.ci-rectangle-24:before {
  content: "\f1a1";
}

.ci-rectangle-32:before {
  content: "\f1a2";
}

.ci-rectangle-plus-16:before {
  content: "\f1a9";
}

.ci-rectangle-plus-24:before {
  content: "\f1aa";
}

.ci-rectangle-plus-32:before {
  content: "\f1ab";
}

.ci-recurrence-16:before {
  content: "\f1ac";
}

.ci-recurrence-24:before {
  content: "\f1ad";
}

.ci-recurrence-32:before {
  content: "\f1ae";
}

.ci-redo-16:before {
  content: "\f1af";
}

.ci-redo-24:before {
  content: "\f1b0";
}

.ci-redo-32:before {
  content: "\f1b1";
}

.ci-refresh-16:before {
  content: "\f1b2";
}

.ci-refresh-24:before {
  content: "\f1b3";
}

.ci-refresh-32:before {
  content: "\f1b4";
}

.ci-register-16:before {
  content: "\f1b5";
}

.ci-register-24:before {
  content: "\f1b6";
}

.ci-register-32:before {
  content: "\f1b7";
}

.ci-reorder-cards-16:before {
  content: "\f1b8";
}

.ci-reorder-cards-24:before {
  content: "\f1b9";
}

.ci-reorder-cards-32:before {
  content: "\f1ba";
}

.ci-reorder-grid-16:before {
  content: "\f1bb";
}

.ci-reorder-grid-24:before {
  content: "\f1bc";
}

.ci-reorder-grid-32:before {
  content: "\f1bd";
}

.ci-reorder-stack-16:before {
  content: "\f1be";
}

.ci-reorder-stack-24:before {
  content: "\f1bf";
}

.ci-reorder-stack-32:before {
  content: "\f1c0";
}

.ci-replace-image-16:before {
  content: "\f1c1";
}

.ci-replace-image-24:before {
  content: "\f1c2";
}

.ci-replace-image-32:before {
  content: "\f1c3";
}

.ci-reset-16:before {
  content: "\f1c4";
}

.ci-reset-24:before {
  content: "\f1c5";
}

.ci-reset-32:before {
  content: "\f1c6";
}

.ci-resize-area-16:before {
  content: "\f1c7";
}

.ci-resize-area-24:before {
  content: "\f1c8";
}

.ci-resize-area-32:before {
  content: "\f1c9";
}

.ci-retrain-16:before {
  content: "\f1ca";
}

.ci-retrain-24:before {
  content: "\f1cb";
}

.ci-retrain-32:before {
  content: "\f1cc";
}

.ci-reverse-16:before {
  content: "\f1cd";
}

.ci-reverse-16-f:before {
  content: "\f1ce";
}

.ci-reverse-24:before {
  content: "\f1cf";
}

.ci-reverse-24-f:before {
  content: "\f1d0";
}

.ci-reverse-32:before {
  content: "\f1d1";
}

.ci-reverse-32-f:before {
  content: "\f1d2";
}

.ci-rfid-16:before {
  content: "\f1d3";
}

.ci-rfid-24:before {
  content: "\f1d4";
}

.ci-rfid-32:before {
  content: "\f1d5";
}

.ci-rhombus-16:before {
  content: "\f1d6";
}

.ci-rhombus-24:before {
  content: "\f1d7";
}

.ci-rhombus-32:before {
  content: "\f1d8";
}

.ci-ribbon-16:before {
  content: "\f1d9";
}

.ci-ribbon-24:before {
  content: "\f1da";
}

.ci-ribbon-32:before {
  content: "\f1db";
}

.ci-ribbon-rosette-16:before {
  content: "\f1dc";
}

.ci-ribbon-rosette-24:before {
  content: "\f1dd";
}

.ci-ribbon-rosette-32:before {
  content: "\f1de";
}

.ci-right-16:before {
  content: "\f1df";
}

.ci-right-24:before {
  content: "\f1e0";
}

.ci-right-32:before {
  content: "\f1e1";
}

.ci-right-align-16:before {
  content: "\f1e2";
}

.ci-right-align-24:before {
  content: "\f1e3";
}

.ci-right-align-32:before {
  content: "\f1e4";
}

.ci-right-edge-16:before {
  content: "\f1e5";
}

.ci-right-edge-24:before {
  content: "\f1e6";
}

.ci-right-edge-32:before {
  content: "\f1e7";
}

.ci-right-left-16:before {
  content: "\f1e8";
}

.ci-right-left-24:before {
  content: "\f1e9";
}

.ci-right-left-32:before {
  content: "\f1ea";
}

.ci-right-right-16:before {
  content: "\f1eb";
}

.ci-right-right-24:before {
  content: "\f1ec";
}

.ci-right-right-32:before {
  content: "\f1ed";
}

.ci-rings-16:before {
  content: "\f1ee";
}

.ci-rings-24:before {
  content: "\f1ef";
}

.ci-rings-32:before {
  content: "\f1f0";
}

.ci-rings-largest-16:before {
  content: "\f1f1";
}

.ci-rings-largest-24:before {
  content: "\f1f2";
}

.ci-rings-largest-32:before {
  content: "\f1f3";
}

.ci-rings-smallest-16:before {
  content: "\f1f4";
}

.ci-rings-smallest-24:before {
  content: "\f1f5";
}

.ci-rings-smallest-32:before {
  content: "\f1f6";
}

.ci-rings-threshold-16:before {
  content: "\f1f7";
}

.ci-rings-threshold-24:before {
  content: "\f1f8";
}

.ci-rings-threshold-32:before {
  content: "\f1f9";
}

.ci-rings-x-bar-16:before {
  content: "\f1fa";
}

.ci-rings-x-bar-24:before {
  content: "\f1fb";
}

.ci-rings-x-bar-32:before {
  content: "\f1fc";
}

.ci-road-sign-16:before {
  content: "\f1fd";
}

.ci-road-sign-24:before {
  content: "\f1fe";
}

.ci-road-sign-32:before {
  content: "\f1ff";
}

.ci-rosette-16:before {
  content: "\f200";
}

.ci-rosette-24:before {
  content: "\f201";
}

.ci-rosette-32:before {
  content: "\f202";
}

.ci-rotate-16:before {
  content: "\f203";
}

.ci-rotate-24:before {
  content: "\f204";
}

.ci-rotate-32:before {
  content: "\f205";
}

.ci-rotate-device-16:before {
  content: "\f206";
}

.ci-rotate-device-24:before {
  content: "\f207";
}

.ci-rotate-device-32:before {
  content: "\f208";
}

.ci-round-about-16:before {
  content: "\f209";
}

.ci-round-about-24:before {
  content: "\f20a";
}

.ci-round-about-32:before {
  content: "\f20b";
}

.ci-round-about-right-16:before {
  content: "\f20c";
}

.ci-round-about-right-24:before {
  content: "\f20d";
}

.ci-round-about-right-32:before {
  content: "\f20e";
}

.ci-rounded-rectangle-16:before {
  content: "\f20f";
}

.ci-rounded-rectangle-24:before {
  content: "\f210";
}

.ci-rounded-rectangle-32:before {
  content: "\f211";
}

.ci-route-from-16:before {
  content: "\f212";
}

.ci-route-from-24:before {
  content: "\f213";
}

.ci-route-from-32:before {
  content: "\f214";
}

.ci-route-to-16:before {
  content: "\f215";
}

.ci-route-to-24:before {
  content: "\f216";
}

.ci-route-to-32:before {
  content: "\f217";
}

.ci-rtl-elements-align-16:before {
  content: "\f218";
}

.ci-rtl-elements-align-24:before {
  content: "\f219";
}

.ci-rtl-elements-align-32:before {
  content: "\f21a";
}

.ci-rtl-paragraph-align-16:before {
  content: "\f21b";
}

.ci-rtl-paragraph-align-24:before {
  content: "\f21c";
}

.ci-rtl-paragraph-align-32:before {
  content: "\f21d";
}

.ci-running-16:before {
  content: "\f21e";
}

.ci-running-24:before {
  content: "\f21f";
}

.ci-running-32:before {
  content: "\f220";
}

.ci-rural-driving-distance-16:before {
  content: "\f221";
}

.ci-rural-driving-distance-24:before {
  content: "\f222";
}

.ci-rural-driving-distance-32:before {
  content: "\f223";
}

.ci-rural-driving-time-16:before {
  content: "\f224";
}

.ci-rural-driving-time-24:before {
  content: "\f225";
}

.ci-rural-driving-time-32:before {
  content: "\f226";
}

.ci-satellite-0-16:before {
  content: "\f227";
}

.ci-satellite-0-16-f:before {
  content: "\f228";
}

.ci-satellite-0-24:before {
  content: "\f229";
}

.ci-satellite-0-24-f:before {
  content: "\f22a";
}

.ci-satellite-0-32:before {
  content: "\f22b";
}

.ci-satellite-0-32-f:before {
  content: "\f22c";
}

.ci-satellite-1-16:before {
  content: "\f22d";
}

.ci-satellite-1-16-f:before {
  content: "\f22e";
}

.ci-satellite-1-24:before {
  content: "\f22f";
}

.ci-satellite-1-24-f:before {
  content: "\f230";
}

.ci-satellite-1-32:before {
  content: "\f231";
}

.ci-satellite-1-32-f:before {
  content: "\f232";
}

.ci-satellite-2-16:before {
  content: "\f233";
}

.ci-satellite-2-16-f:before {
  content: "\f234";
}

.ci-satellite-2-24:before {
  content: "\f235";
}

.ci-satellite-2-24-f:before {
  content: "\f236";
}

.ci-satellite-2-32:before {
  content: "\f237";
}

.ci-satellite-2-32-f:before {
  content: "\f238";
}

.ci-satellite-3-16:before {
  content: "\f239";
}

.ci-satellite-3-16-f:before {
  content: "\f23a";
}

.ci-satellite-3-24:before {
  content: "\f23b";
}

.ci-satellite-3-24-f:before {
  content: "\f23c";
}

.ci-satellite-3-32:before {
  content: "\f23d";
}

.ci-satellite-3-32-f:before {
  content: "\f23e";
}

.ci-save-16:before {
  content: "\f23f";
}

.ci-save-24:before {
  content: "\f240";
}

.ci-save-32:before {
  content: "\f241";
}

.ci-scan-barcode-16:before {
  content: "\f242";
}

.ci-scan-barcode-24:before {
  content: "\f243";
}

.ci-scan-barcode-32:before {
  content: "\f244";
}

.ci-scissors-16:before {
  content: "\f245";
}

.ci-scissors-24:before {
  content: "\f246";
}

.ci-scissors-32:before {
  content: "\f247";
}

.ci-screenshot-mode-16:before {
  content: "\f248";
}

.ci-screenshot-mode-24:before {
  content: "\f249";
}

.ci-screenshot-mode-32:before {
  content: "\f24a";
}

.ci-script-16:before {
  content: "\f24b";
}

.ci-script-24:before {
  content: "\f24c";
}

.ci-script-32:before {
  content: "\f24d";
}

.ci-seamlines-16:before {
  content: "\f24e";
}

.ci-seamlines-24:before {
  content: "\f24f";
}

.ci-seamlines-32:before {
  content: "\f250";
}

.ci-search-16:before {
  content: "\f251";
}

.ci-search-24:before {
  content: "\f252";
}

.ci-search-32:before {
  content: "\f253";
}

.ci-security-16:before {
  content: "\f254";
}

.ci-security-24:before {
  content: "\f255";
}

.ci-security-32:before {
  content: "\f256";
}

.ci-select-16:before {
  content: "\f257";
}

.ci-select-24:before {
  content: "\f258";
}

.ci-select-32:before {
  content: "\f259";
}

.ci-select-category-16:before {
  content: "\f25a";
}

.ci-select-category-24:before {
  content: "\f25b";
}

.ci-select-category-32:before {
  content: "\f25c";
}

.ci-selected-items-filter-16:before {
  content: "\f25d";
}

.ci-selected-items-filter-24:before {
  content: "\f25e";
}

.ci-selected-items-filter-32:before {
  content: "\f25f";
}

.ci-select-range-16:before {
  content: "\f272";
}

.ci-select-range-24:before {
  content: "\f273";
}

.ci-select-range-32:before {
  content: "\f274";
}

.ci-send-16:before {
  content: "\f27b";
}

.ci-send-24:before {
  content: "\f27c";
}

.ci-send-32:before {
  content: "\f27d";
}

.ci-send-backwards-16:before {
  content: "\f27e";
}

.ci-send-backwards-24:before {
  content: "\f27f";
}

.ci-send-backwards-32:before {
  content: "\f280";
}

.ci-send-to-back-16:before {
  content: "\f281";
}

.ci-send-to-back-24:before {
  content: "\f282";
}

.ci-send-to-back-32:before {
  content: "\f283";
}

.ci-sensor-16:before {
  content: "\f284";
}

.ci-sensor-24:before {
  content: "\f285";
}

.ci-sensor-32:before {
  content: "\f286";
}

.ci-separator-16:before {
  content: "\f287";
}

.ci-separator-24:before {
  content: "\f288";
}

.ci-separator-32:before {
  content: "\f289";
}

.ci-serial-port-16:before {
  content: "\f28a";
}

.ci-serial-port-24:before {
  content: "\f28b";
}

.ci-serial-port-32:before {
  content: "\f28c";
}

.ci-server-16:before {
  content: "\f28d";
}

.ci-server-24:before {
  content: "\f28e";
}

.ci-server-32:before {
  content: "\f28f";
}

.ci-server-lock-16:before {
  content: "\f290";
}

.ci-server-lock-24:before {
  content: "\f291";
}

.ci-server-lock-32:before {
  content: "\f292";
}

.ci-services-16:before {
  content: "\f293";
}

.ci-services-24:before {
  content: "\f294";
}

.ci-services-32:before {
  content: "\f295";
}

.ci-shapes-16:before {
  content: "\f296";
}

.ci-shapes-24:before {
  content: "\f297";
}

.ci-shapes-32:before {
  content: "\f298";
}

.ci-share-16:before {
  content: "\f299";
}

.ci-share-24:before {
  content: "\f29a";
}

.ci-share-32:before {
  content: "\f29b";
}

.ci-share-ios-16:before {
  content: "\f29c";
}

.ci-share-ios-24:before {
  content: "\f29d";
}

.ci-share-ios-32:before {
  content: "\f29e";
}

.ci-sharp-left-16:before {
  content: "\f29f";
}

.ci-sharp-left-24:before {
  content: "\f2a0";
}

.ci-sharp-left-32:before {
  content: "\f2a1";
}

.ci-sharp-right-16:before {
  content: "\f2a2";
}

.ci-sharp-right-24:before {
  content: "\f2a3";
}

.ci-sharp-right-32:before {
  content: "\f2a4";
}

.ci-shield-coin-16:before {
  content: "\f2a5";
}

.ci-shield-coin-24:before {
  content: "\f2a6";
}

.ci-shield-coin-32:before {
  content: "\f2a7";
}

.ci-shopping-cart-16:before {
  content: "\f2a8";
}

.ci-shopping-cart-24:before {
  content: "\f2a9";
}

.ci-shopping-cart-32:before {
  content: "\f2aa";
}

.ci-show-column-16:before {
  content: "\f2ab";
}

.ci-show-column-24:before {
  content: "\f2ac";
}

.ci-show-column-32:before {
  content: "\f2ad";
}

.ci-show-multiple-layers-at-a-time-16:before {
  content: "\f2ae";
}

.ci-show-multiple-layers-at-a-time-24:before {
  content: "\f2af";
}

.ci-show-multiple-layers-at-a-time-32:before {
  content: "\f2b0";
}

.ci-show-one-layer-at-a-time-16:before {
  content: "\f2b1";
}

.ci-show-one-layer-at-a-time-24:before {
  content: "\f2b2";
}

.ci-show-one-layer-at-a-time-32:before {
  content: "\f2b3";
}

.ci-sidecar-16:before {
  content: "\f2b4";
}

.ci-sidecar-24:before {
  content: "\f2b5";
}

.ci-sidecar-32:before {
  content: "\f2b6";
}

.ci-sigma-16:before {
  content: "\f2b7";
}

.ci-sigma-24:before {
  content: "\f2b8";
}

.ci-sigma-32:before {
  content: "\f2b9";
}

.ci-sign-in-16:before {
  content: "\f2ba";
}

.ci-sign-in-24:before {
  content: "\f2bb";
}

.ci-sign-in-32:before {
  content: "\f2bc";
}

.ci-sign-out-16:before {
  content: "\f2bd";
}

.ci-sign-out-24:before {
  content: "\f2be";
}

.ci-sign-out-32:before {
  content: "\f2bf";
}

.ci-sky-plot-16:before {
  content: "\f2c0";
}

.ci-sky-plot-24:before {
  content: "\f2c1";
}

.ci-sky-plot-32:before {
  content: "\f2c2";
}

.ci-slice-16:before {
  content: "\f2c3";
}

.ci-slice-24:before {
  content: "\f2c4";
}

.ci-slice-32:before {
  content: "\f2c5";
}

.ci-sliders-16:before {
  content: "\f2c6";
}

.ci-sliders-24:before {
  content: "\f2c7";
}

.ci-sliders-32:before {
  content: "\f2c8";
}

.ci-sliders-horizontal-16:before {
  content: "\f2c9";
}

.ci-sliders-horizontal-24:before {
  content: "\f2ca";
}

.ci-sliders-horizontal-32:before {
  content: "\f2cb";
}

.ci-slideshow-16:before {
  content: "\f2cc";
}

.ci-slideshow-24:before {
  content: "\f2cd";
}

.ci-slideshow-32:before {
  content: "\f2ce";
}

.ci-smart-camera-16:before {
  content: "\f2cf";
}

.ci-smart-camera-24:before {
  content: "\f2d0";
}

.ci-smart-camera-32:before {
  content: "\f2d1";
}

.ci-smart-form-16:before {
  content: "\f2d2";
}

.ci-smart-form-24:before {
  content: "\f2d3";
}

.ci-smart-form-32:before {
  content: "\f2d4";
}

.ci-smile-16:before {
  content: "\f2d5";
}

.ci-smile-24:before {
  content: "\f2d6";
}

.ci-smile-32:before {
  content: "\f2d7";
}

.ci-snap-to-grid-16:before {
  content: "\f2d8";
}

.ci-snap-to-grid-24:before {
  content: "\f2d9";
}

.ci-snap-to-grid-32:before {
  content: "\f2da";
}

.ci-snap-to-point-16:before {
  content: "\f2e4";
}

.ci-snap-to-point-24:before {
  content: "\f2e5";
}

.ci-snap-to-point-32:before {
  content: "\f2e6";
}

.ci-snow-16:before {
  content: "\f2e7";
}

.ci-snow-24:before {
  content: "\f2e8";
}

.ci-snow-32:before {
  content: "\f2e9";
}

.ci-snow-thunder-16:before {
  content: "\f2ea";
}

.ci-snow-thunder-24:before {
  content: "\f2eb";
}

.ci-snow-thunder-32:before {
  content: "\f2ec";
}

.ci-sort-ascending-16:before {
  content: "\f2ed";
}

.ci-sort-ascending-24:before {
  content: "\f2ee";
}

.ci-sort-ascending-32:before {
  content: "\f2ef";
}

.ci-sort-ascending-arrow-16:before {
  content: "\f2f0";
}

.ci-sort-ascending-arrow-24:before {
  content: "\f2f1";
}

.ci-sort-ascending-arrow-32:before {
  content: "\f2f2";
}

.ci-sort-descending-16:before {
  content: "\f2f3";
}

.ci-sort-descending-24:before {
  content: "\f2f4";
}

.ci-sort-descending-32:before {
  content: "\f2f5";
}

.ci-sort-descending-arrow-16:before {
  content: "\f2f6";
}

.ci-sort-descending-arrow-24:before {
  content: "\f2f7";
}

.ci-sort-descending-arrow-32:before {
  content: "\f2f8";
}

.ci-sound-16:before {
  content: "\f2f9";
}

.ci-sound-24:before {
  content: "\f2fa";
}

.ci-sound-32:before {
  content: "\f2fb";
}

.ci-sound-low-16:before {
  content: "\f2fc";
}

.ci-sound-low-24:before {
  content: "\f2fd";
}

.ci-sound-low-32:before {
  content: "\f2fe";
}

.ci-sound-off-16:before {
  content: "\f2ff";
}

.ci-sound-off-24:before {
  content: "\f300";
}

.ci-sound-off-32:before {
  content: "\f301";
}

.ci-sound-unavailable-16:before {
  content: "\f302";
}

.ci-sound-unavailable-24:before {
  content: "\f303";
}

.ci-sound-unavailable-32:before {
  content: "\f304";
}

.ci-speech-bubble-16:before {
  content: "\f305";
}

.ci-speech-bubble-24:before {
  content: "\f306";
}

.ci-speech-bubble-32:before {
  content: "\f307";
}

.ci-speech-bubble-check-16:before {
  content: "\f308";
}

.ci-speech-bubble-check-24:before {
  content: "\f309";
}

.ci-speech-bubble-check-32:before {
  content: "\f30a";
}

.ci-speech-bubble-exclamation-16:before {
  content: "\f30b";
}

.ci-speech-bubble-exclamation-24:before {
  content: "\f30c";
}

.ci-speech-bubble-exclamation-32:before {
  content: "\f30d";
}

.ci-speech-bubble-plus-16:before {
  content: "\f30e";
}

.ci-speech-bubble-plus-24:before {
  content: "\f30f";
}

.ci-speech-bubble-plus-32:before {
  content: "\f310";
}

.ci-speech-bubbles-16:before {
  content: "\f311";
}

.ci-speech-bubbles-24:before {
  content: "\f312";
}

.ci-speech-bubbles-32:before {
  content: "\f313";
}

.ci-speech-bubble-social-16:before {
  content: "\f314";
}

.ci-speech-bubble-social-24:before {
  content: "\f315";
}

.ci-speech-bubble-social-32:before {
  content: "\f316";
}

.ci-spinner-16:before {
  content: "\f317";
}

.ci-spinner-24:before {
  content: "\f318";
}

.ci-spinner-32:before {
  content: "\f319";
}

.ci-split-16:before {
  content: "\f31a";
}

.ci-split-24:before {
  content: "\f31b";
}

.ci-split-32:before {
  content: "\f31c";
}

.ci-split-features-16:before {
  content: "\f31d";
}

.ci-split-features-24:before {
  content: "\f31e";
}

.ci-split-features-32:before {
  content: "\f31f";
}

.ci-square-16:before {
  content: "\f320";
}

.ci-square-16-f:before {
  content: "\f321";
}

.ci-square-24:before {
  content: "\f322";
}

.ci-square-24-f:before {
  content: "\f323";
}

.ci-square-32:before {
  content: "\f324";
}

.ci-square-32-f:before {
  content: "\f325";
}

.ci-stairs-16:before {
  content: "\f32c";
}

.ci-stairs-24:before {
  content: "\f32d";
}

.ci-stairs-32:before {
  content: "\f32e";
}

.ci-star-16:before {
  content: "\f32f";
}

.ci-star-16-f:before {
  content: "\f330";
}

.ci-star-24:before {
  content: "\f331";
}

.ci-star-24-f:before {
  content: "\f332";
}

.ci-star-32:before {
  content: "\f333";
}

.ci-star-32-f:before {
  content: "\f334";
}

.ci-star-circle-16:before {
  content: "\f335";
}

.ci-star-circle-24:before {
  content: "\f336";
}

.ci-star-circle-32:before {
  content: "\f337";
}

.ci-straight-16:before {
  content: "\f338";
}

.ci-straight-24:before {
  content: "\f339";
}

.ci-straight-32:before {
  content: "\f33a";
}

.ci-string-16:before {
  content: "\f33b";
}

.ci-string-24:before {
  content: "\f33c";
}

.ci-string-32:before {
  content: "\f33d";
}

.ci-subheading-16:before {
  content: "\f35c";
}

.ci-subheading-24:before {
  content: "\f35d";
}

.ci-subheading-32:before {
  content: "\f35e";
}

.ci-subheading-rtl-16:before {
  content: "\f35f";
}

.ci-subheading-rtl-24:before {
  content: "\f360";
}

.ci-subheading-rtl-32:before {
  content: "\f361";
}

.ci-submit-16:before {
  content: "\f362";
}

.ci-submit-24:before {
  content: "\f363";
}

.ci-submit-32:before {
  content: "\f364";
}

.ci-subscript-16:before {
  content: "\f365";
}

.ci-subscript-24:before {
  content: "\f366";
}

.ci-subscript-32:before {
  content: "\f367";
}

.ci-summary-16:before {
  content: "\f36e";
}

.ci-summary-24:before {
  content: "\f36f";
}

.ci-summary-32:before {
  content: "\f370";
}

.ci-superscript-16:before {
  content: "\f37d";
}

.ci-superscript-24:before {
  content: "\f37e";
}

.ci-superscript-32:before {
  content: "\f37f";
}

.ci-survey-16:before {
  content: "\f380";
}

.ci-survey-24:before {
  content: "\f381";
}

.ci-survey-32:before {
  content: "\f382";
}

.ci-switch-16:before {
  content: "\f383";
}

.ci-switch-24:before {
  content: "\f384";
}

.ci-switch-32:before {
  content: "\f385";
}

.ci-system-management-16:before {
  content: "\f386";
}

.ci-system-management-24:before {
  content: "\f387";
}

.ci-system-management-32:before {
  content: "\f388";
}

.ci-tabbed-view-16:before {
  content: "\f389";
}

.ci-tabbed-view-24:before {
  content: "\f38a";
}

.ci-tabbed-view-32:before {
  content: "\f38b";
}

.ci-table-16:before {
  content: "\f38c";
}

.ci-table-24:before {
  content: "\f38d";
}

.ci-table-32:before {
  content: "\f38e";
}

.ci-tables-16:before {
  content: "\f38f";
}

.ci-tables-24:before {
  content: "\f390";
}

.ci-tables-32:before {
  content: "\f391";
}

.ci-tablet-16:before {
  content: "\f392";
}

.ci-tablet-24:before {
  content: "\f393";
}

.ci-tablet-32:before {
  content: "\f394";
}

.ci-tag-16:before {
  content: "\f395";
}

.ci-tag-24:before {
  content: "\f396";
}

.ci-tag-32:before {
  content: "\f397";
}

.ci-take-pedestrian-ramp-16:before {
  content: "\f398";
}

.ci-take-pedestrian-ramp-24:before {
  content: "\f399";
}

.ci-take-pedestrian-ramp-32:before {
  content: "\f39a";
}

.ci-terminal-16:before {
  content: "\f39b";
}

.ci-terminal-24:before {
  content: "\f39c";
}

.ci-terminal-32:before {
  content: "\f39d";
}

.ci-territory-buffer-distance-16:before {
  content: "\f39e";
}

.ci-territory-buffer-distance-24:before {
  content: "\f39f";
}

.ci-territory-buffer-distance-32:before {
  content: "\f3a0";
}

.ci-test-data-16:before {
  content: "\f3a1";
}

.ci-test-data-24:before {
  content: "\f3a2";
}

.ci-test-data-32:before {
  content: "\f3a3";
}

.ci-text-16:before {
  content: "\f3a4";
}

.ci-text-24:before {
  content: "\f3a5";
}

.ci-text-32:before {
  content: "\f3a6";
}

.ci-text-large-16:before {
  content: "\f3a7";
}

.ci-text-large-24:before {
  content: "\f3a8";
}

.ci-text-large-32:before {
  content: "\f3a9";
}

.ci-text-medium-16:before {
  content: "\f3aa";
}

.ci-text-medium-24:before {
  content: "\f3ab";
}

.ci-text-medium-32:before {
  content: "\f3ac";
}

.ci-text-paragraph-large-16:before {
  content: "\f3ad";
}

.ci-text-paragraph-large-24:before {
  content: "\f3ae";
}

.ci-text-paragraph-large-32:before {
  content: "\f3af";
}

.ci-text-small-16:before {
  content: "\f3b0";
}

.ci-text-small-24:before {
  content: "\f3b1";
}

.ci-text-small-32:before {
  content: "\f3b2";
}

.ci-thumbs-down-16:before {
  content: "\f3b3";
}

.ci-thumbs-down-24:before {
  content: "\f3b4";
}

.ci-thumbs-down-32:before {
  content: "\f3b5";
}

.ci-thumbs-up-16:before {
  content: "\f3b6";
}

.ci-thumbs-up-24:before {
  content: "\f3b7";
}

.ci-thumbs-up-32:before {
  content: "\f3b8";
}

.ci-tile-layer-16:before {
  content: "\f3c2";
}

.ci-tile-layer-24:before {
  content: "\f3c3";
}

.ci-tile-layer-32:before {
  content: "\f3c4";
}

.ci-timer-16:before {
  content: "\f3c5";
}

.ci-timer-24:before {
  content: "\f3c6";
}

.ci-timer-32:before {
  content: "\f3c7";
}

.ci-title-16:before {
  content: "\f3c8";
}

.ci-title-24:before {
  content: "\f3c9";
}

.ci-title-32:before {
  content: "\f3ca";
}

.ci-toggle-16:before {
  content: "\f3cb";
}

.ci-toggle-24:before {
  content: "\f3cc";
}

.ci-toggle-32:before {
  content: "\f3cd";
}

.ci-toggle-off-16:before {
  content: "\f3ce";
}

.ci-toggle-off-24:before {
  content: "\f3cf";
}

.ci-toggle-off-32:before {
  content: "\f3d0";
}

.ci-toggle-on-16:before {
  content: "\f3d1";
}

.ci-toggle-on-24:before {
  content: "\f3d2";
}

.ci-toggle-on-32:before {
  content: "\f3d3";
}

.ci-touch-16:before {
  content: "\f3d4";
}

.ci-touch-24:before {
  content: "\f3d5";
}

.ci-touch-32:before {
  content: "\f3d6";
}

.ci-tour-16:before {
  content: "\f3d7";
}

.ci-tour-24:before {
  content: "\f3d8";
}

.ci-tour-32:before {
  content: "\f3d9";
}

.ci-tour-pin-tear-16:before {
  content: "\f3da";
}

.ci-tour-pin-tear-24:before {
  content: "\f3db";
}

.ci-tour-pin-tear-32:before {
  content: "\f3dc";
}

.ci-trash-16:before {
  content: "\f3e9";
}

.ci-trash-24:before {
  content: "\f3ea";
}

.ci-trash-32:before {
  content: "\f3eb";
}

.ci-triangle-16:before {
  content: "\f3ec";
}

.ci-triangle-24:before {
  content: "\f3ed";
}

.ci-triangle-32:before {
  content: "\f3ee";
}

.ci-trucking-distance-16:before {
  content: "\f3ef";
}

.ci-trucking-distance-24:before {
  content: "\f3f0";
}

.ci-trucking-distance-32:before {
  content: "\f3f1";
}

.ci-trucking-time-16:before {
  content: "\f3f2";
}

.ci-trucking-time-24:before {
  content: "\f3f3";
}

.ci-trucking-time-32:before {
  content: "\f3f4";
}

.ci-underline-16:before {
  content: "\f3f5";
}

.ci-underline-24:before {
  content: "\f3f6";
}

.ci-underline-32:before {
  content: "\f3f7";
}

.ci-undo-16:before {
  content: "\f3f8";
}

.ci-undo-24:before {
  content: "\f3f9";
}

.ci-undo-32:before {
  content: "\f3fa";
}

.ci-ungroup-items-16:before {
  content: "\f3fb";
}

.ci-ungroup-items-24:before {
  content: "\f3fc";
}

.ci-ungroup-items-32:before {
  content: "\f3fd";
}

.ci-ungroup-layout-elements-16:before {
  content: "\f3fe";
}

.ci-ungroup-layout-elements-24:before {
  content: "\f3ff";
}

.ci-ungroup-layout-elements-32:before {
  content: "\f400";
}

.ci-unlink-16:before {
  content: "\f401";
}

.ci-unlink-24:before {
  content: "\f402";
}

.ci-unlink-32:before {
  content: "\f403";
}

.ci-unlock-16:before {
  content: "\f404";
}

.ci-unlock-24:before {
  content: "\f405";
}

.ci-unlock-32:before {
  content: "\f406";
}

.ci-unpin-16:before {
  content: "\f407";
}

.ci-unpin-24:before {
  content: "\f408";
}

.ci-unpin-32:before {
  content: "\f409";
}

.ci-unregister-16:before {
  content: "\f40a";
}

.ci-unregister-24:before {
  content: "\f40b";
}

.ci-unregister-32:before {
  content: "\f40c";
}

.ci-unselected-16:before {
  content: "\f40d";
}

.ci-unselected-24:before {
  content: "\f40e";
}

.ci-unselected-32:before {
  content: "\f40f";
}

.ci-upload-16:before {
  content: "\f410";
}

.ci-upload-24:before {
  content: "\f411";
}

.ci-upload-32:before {
  content: "\f412";
}

.ci-upload-to-16:before {
  content: "\f413";
}

.ci-upload-to-24:before {
  content: "\f414";
}

.ci-upload-to-32:before {
  content: "\f415";
}

.ci-urban-model-16:before {
  content: "\f416";
}

.ci-urban-model-24:before {
  content: "\f417";
}

.ci-urban-model-32:before {
  content: "\f418";
}

.ci-usb-security-key-16:before {
  content: "\f419";
}

.ci-usb-security-key-24:before {
  content: "\f41a";
}

.ci-usb-security-key-32:before {
  content: "\f41b";
}

.ci-user-16:before {
  content: "\f41c";
}

.ci-user-24:before {
  content: "\f41d";
}

.ci-user-32:before {
  content: "\f41e";
}

.ci-user-down-16:before {
  content: "\f41f";
}

.ci-user-down-24:before {
  content: "\f420";
}

.ci-user-down-32:before {
  content: "\f421";
}

.ci-user-key-16:before {
  content: "\f422";
}

.ci-user-key-24:before {
  content: "\f423";
}

.ci-user-key-32:before {
  content: "\f424";
}

.ci-user-minus-16:before {
  content: "\f425";
}

.ci-user-minus-24:before {
  content: "\f426";
}

.ci-user-minus-32:before {
  content: "\f427";
}

.ci-user-plus-16:before {
  content: "\f428";
}

.ci-user-plus-24:before {
  content: "\f429";
}

.ci-user-plus-32:before {
  content: "\f42a";
}

.ci-users-16:before {
  content: "\f42b";
}

.ci-users-24:before {
  content: "\f42c";
}

.ci-users-32:before {
  content: "\f42d";
}

.ci-user-to-device-16:before {
  content: "\f42e";
}

.ci-user-to-device-24:before {
  content: "\f42f";
}

.ci-user-to-device-32:before {
  content: "\f430";
}

.ci-user-up-16:before {
  content: "\f431";
}

.ci-user-up-24:before {
  content: "\f432";
}

.ci-user-up-32:before {
  content: "\f433";
}

.ci-user-x-16:before {
  content: "\f434";
}

.ci-user-x-24:before {
  content: "\f435";
}

.ci-user-x-32:before {
  content: "\f436";
}

.ci-utility-network-trace-16:before {
  content: "\f437";
}

.ci-utility-network-trace-24:before {
  content: "\f438";
}

.ci-utility-network-trace-32:before {
  content: "\f439";
}

.ci-u-turn-16:before {
  content: "\f43a";
}

.ci-u-turn-24:before {
  content: "\f43b";
}

.ci-u-turn-32:before {
  content: "\f43c";
}

.ci-u-turn-right-16:before {
  content: "\f43d";
}

.ci-u-turn-right-24:before {
  content: "\f43e";
}

.ci-u-turn-right-32:before {
  content: "\f43f";
}

.ci-vertex-check-16:before {
  content: "\f440";
}

.ci-vertex-check-24:before {
  content: "\f441";
}

.ci-vertex-check-32:before {
  content: "\f442";
}

.ci-vertex-edit-16:before {
  content: "\f443";
}

.ci-vertex-edit-24:before {
  content: "\f444";
}

.ci-vertex-edit-32:before {
  content: "\f445";
}

.ci-vertex-gps-16:before {
  content: "\f446";
}

.ci-vertex-gps-24:before {
  content: "\f447";
}

.ci-vertex-gps-32:before {
  content: "\f448";
}

.ci-vertex-move-16:before {
  content: "\f449";
}

.ci-vertex-move-24:before {
  content: "\f44a";
}

.ci-vertex-move-32:before {
  content: "\f44b";
}

.ci-vertex-plus-16:before {
  content: "\f44c";
}

.ci-vertex-plus-24:before {
  content: "\f44d";
}

.ci-vertex-plus-32:before {
  content: "\f44e";
}

.ci-vertex-x-16:before {
  content: "\f44f";
}

.ci-vertex-x-24:before {
  content: "\f450";
}

.ci-vertex-x-32:before {
  content: "\f451";
}

.ci-vertical-distribute-16:before {
  content: "\f452";
}

.ci-vertical-distribute-24:before {
  content: "\f453";
}

.ci-vertical-distribute-32:before {
  content: "\f454";
}

.ci-video-16:before {
  content: "\f455";
}

.ci-video-24:before {
  content: "\f456";
}

.ci-video-32:before {
  content: "\f457";
}

.ci-video-plus-16:before {
  content: "\f458";
}

.ci-video-plus-24:before {
  content: "\f459";
}

.ci-video-plus-32:before {
  content: "\f45a";
}

.ci-video-web-16:before {
  content: "\f45b";
}

.ci-video-web-24:before {
  content: "\f45c";
}

.ci-video-web-32:before {
  content: "\f45d";
}

.ci-view-hide-16:before {
  content: "\f45e";
}

.ci-view-hide-24:before {
  content: "\f45f";
}

.ci-view-hide-32:before {
  content: "\f460";
}

.ci-view-mixed-16:before {
  content: "\f461";
}

.ci-view-mixed-24:before {
  content: "\f462";
}

.ci-view-mixed-32:before {
  content: "\f463";
}

.ci-view-visible-16:before {
  content: "\f46a";
}

.ci-view-visible-24:before {
  content: "\f46b";
}

.ci-view-visible-32:before {
  content: "\f46c";
}

.ci-walking-16:before {
  content: "\f46d";
}

.ci-walking-24:before {
  content: "\f46e";
}

.ci-walking-32:before {
  content: "\f46f";
}

.ci-walking-distance-16:before {
  content: "\f470";
}

.ci-walking-distance-24:before {
  content: "\f471";
}

.ci-walking-distance-32:before {
  content: "\f472";
}

.ci-walking-time-16:before {
  content: "\f473";
}

.ci-walking-time-24:before {
  content: "\f474";
}

.ci-walking-time-32:before {
  content: "\f475";
}

.ci-walk-through-door-16:before {
  content: "\f476";
}

.ci-walk-through-door-24:before {
  content: "\f477";
}

.ci-walk-through-door-32:before {
  content: "\f478";
}

.ci-web-16:before {
  content: "\f479";
}

.ci-web-24:before {
  content: "\f47a";
}

.ci-web-32:before {
  content: "\f47b";
}

.ci-webhook-16:before {
  content: "\f47c";
}

.ci-webhook-24:before {
  content: "\f47d";
}

.ci-webhook-32:before {
  content: "\f47e";
}

.ci-wheelchair-16:before {
  content: "\f47f";
}

.ci-wheelchair-24:before {
  content: "\f480";
}

.ci-wheelchair-32:before {
  content: "\f481";
}

.ci-widgets-group-16:before {
  content: "\f482";
}

.ci-widgets-group-24:before {
  content: "\f483";
}

.ci-widgets-group-32:before {
  content: "\f484";
}

.ci-widgets-source-16:before {
  content: "\f485";
}

.ci-widgets-source-24:before {
  content: "\f486";
}

.ci-widgets-source-32:before {
  content: "\f487";
}

.ci-widgets-tabs-16:before {
  content: "\f488";
}

.ci-widgets-tabs-24:before {
  content: "\f489";
}

.ci-widgets-tabs-32:before {
  content: "\f48a";
}

.ci-wifi-16:before {
  content: "\f48b";
}

.ci-wifi-24:before {
  content: "\f48c";
}

.ci-wifi-32:before {
  content: "\f48d";
}

.ci-workflow-diagram-16:before {
  content: "\f48e";
}

.ci-workflow-diagram-24:before {
  content: "\f48f";
}

.ci-workflow-diagram-32:before {
  content: "\f490";
}

.ci-workflow-manager-server-16:before {
  content: "\f491";
}

.ci-workflow-manager-server-24:before {
  content: "\f492";
}

.ci-workflow-manager-server-32:before {
  content: "\f493";
}

.ci-wrench-16:before {
  content: "\f494";
}

.ci-wrench-24:before {
  content: "\f495";
}

.ci-wrench-32:before {
  content: "\f496";
}

.ci-x-164:before {
  content: "\f497";
}

.ci-x-244:before {
  content: "\f498";
}

.ci-x-324:before {
  content: "\f499";
}

.ci-x-axis-guide-16:before {
  content: "\f49a";
}

.ci-x-axis-guide-24:before {
  content: "\f49b";
}

.ci-x-axis-guide-32:before {
  content: "\f49c";
}

.ci-x-bar-16:before {
  content: "\f49d";
}

.ci-x-bar-24:before {
  content: "\f49e";
}

.ci-x-bar-32:before {
  content: "\f49f";
}

.ci-x-circle-16:before {
  content: "\f4a0";
}

.ci-x-circle-16-f:before {
  content: "\f4a1";
}

.ci-x-circle-24:before {
  content: "\f4a2";
}

.ci-x-circle-24-f:before {
  content: "\f4a3";
}

.ci-x-circle-32:before {
  content: "\f4a4";
}

.ci-x-circle-32-f:before {
  content: "\f4a5";
}

.ci-x-octagon-16:before {
  content: "\f4a6";
}

.ci-x-octagon-16-f:before {
  content: "\f4a7";
}

.ci-x-octagon-24:before {
  content: "\f4a8";
}

.ci-x-octagon-24-f:before {
  content: "\f4a9";
}

.ci-x-octagon-32:before {
  content: "\f4aa";
}

.ci-x-octagon-32-f:before {
  content: "\f4ab";
}

.ci-y-axis-guide-16:before {
  content: "\f4ac";
}

.ci-y-axis-guide-24:before {
  content: "\f4ad";
}

.ci-y-axis-guide-32:before {
  content: "\f4ae";
}

.ci-zoom-in-fixed-16:before {
  content: "\f4af";
}

.ci-zoom-in-fixed-24:before {
  content: "\f4b0";
}

.ci-zoom-in-fixed-32:before {
  content: "\f4b1";
}

.ci-zoom-out-fixed-16:before {
  content: "\f4b2";
}

.ci-zoom-out-fixed-24:before {
  content: "\f4b3";
}

.ci-zoom-out-fixed-32:before {
  content: "\f4b4";
}

.ci-zoom-to-object-16:before {
  content: "\f4b5";
}

.ci-zoom-to-object-24:before {
  content: "\f4b6";
}

.ci-zoom-to-object-32:before {
  content: "\f4b7";
}

:root {
  --tbs-neutral-50: #ffffff;
  --tbs-neutral-200: #f9f9f9;
  --tbs-neutral-400: #f1f1f1;
  --tbs-neutral-600: #e4e4e4;
  --tbs-neutral-800: #c0c0c0;
  --tbs-neutral-1000: #808080;
  --tbs-neutral-1200: #454545;
  --tbs-neutral-1400: #181818;
  --tbs-primary-orange-50: #fffaf5;
  --tbs-primary-orange-200: #ffecd5;
  --tbs-primary-orange-400: #ffd8ac;
  --tbs-primary-orange-600: #fec582;
  --tbs-primary-orange-800: #feb159;
  --tbs-primary-orange-1000: #fe9e2f;
  --tbs-primary-orange-1200: #d98728;
  --tbs-primary-orange-1400: #b26f21;
  --tbs-primary-green-50: #f8fbf5;
  --tbs-primary-green-200: #e1efd6;
  --tbs-primary-green-400: #c4e0ac;
  --tbs-primary-green-600: #a6d083;
  --tbs-primary-green-800: #89c159;
  --tbs-primary-green-1000: #6bb130;
  --tbs-primary-green-1200: #599428;
  --tbs-primary-green-1400: #45731f;
  --tbs-primary-blue-50: #f4f6f9;
  --tbs-primary-blue-200: #d5dde9;
  --tbs-primary-blue-400: #aabad2;
  --tbs-primary-blue-600: #8098bc;
  --tbs-primary-blue-800: #5575a6;
  --tbs-primary-blue-1000: #2b5390;
  --tbs-primary-blue-1200: #224273;
  --tbs-primary-blue-1400: #1b3359;
  --tbs-semantic-red-1400: #b6230c;
  --tbs-semantic-red-1200: #dc2a0e;
  --tbs-semantic-red-1000: #f25037;
  --tbs-semantic-red-800: #f5735f;
  --tbs-semantic-red-600: #f79687;
  --tbs-semantic-red-400: #fab9af;
  --tbs-semantic-red-200: #fcdcd7;
  --tbs-semantic-red-50: #fef6f5;
  --tbs-semantic-orange-1400: #d53e01;
  --tbs-semantic-orange-1200: #fe5816;
  --tbs-semantic-orange-1000: #fe7d49;
  --tbs-semantic-orange-800: #fe976d;
  --tbs-semantic-orange-600: #feb192;
  --tbs-semantic-orange-400: #ffcbb6;
  --tbs-semantic-orange-200: #ffe5db;
  --tbs-semantic-orange-50: #fff8f6;
  --tbs-semantic-yellow-1400: #e09400;
  --tbs-semantic-yellow-1200: #ffad0f;
  --tbs-semantic-yellow-1000: #ffbf44;
  --tbs-semantic-yellow-800: #ffcc69;
  --tbs-semantic-yellow-600: #ffd98f;
  --tbs-semantic-yellow-400: #ffe5b4;
  --tbs-semantic-yellow-200: #fff2da;
  --tbs-semantic-yellow-50: #fffcf6;
  --tbs-semantic-green-1400: #244408;
  --tbs-semantic-green-1200: #34640c;
  --tbs-semantic-green-1000: #4e8e18;
  --tbs-semantic-green-800: #72a547;
  --tbs-semantic-green-600: #95bc75;
  --tbs-semantic-green-400: #b8d2a3;
  --tbs-semantic-green-200: #dce8d1;
  --tbs-semantic-green-50: #f6f9f3;
  --tbs-purple-darker: #76167a;
  --tbs-purple-dark: #ab61d9;
  --tbs-purple: #8361d9;
  --tbs-purple-light: #9a72ff;
  --tbs-pink: #df11ca;
  --tbs-aqua: #00ffff;
  --tbs-dark-yellow: #948300;
  --tbs-light-yellow: #fff399;
  --tbs-complimentary-blue: #086ec1;
  --tbs-light-blue: #b4d3ec;
}

.tbs-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  -webkit-user-select: none;
          user-select: none;
  touch-action: manipulation;
  cursor: pointer;
  border-radius: 2px;
}
.tbs-button-default {
  font: normal 400 13px / 19px "Arimo", sans-serif;
  height: 36px;
  padding: 8.5px 16px;
  gap: 8px;
}
.tbs-button-default i {
  font-size: 16px;
}
.tbs-button-default.tbs-button-icon-left {
  padding-left: 12px;
}
.tbs-button-default.tbs-button-icon-right {
  padding-right: 12px;
}
.tbs-button-small {
  font: normal 400 13px / 19px "Arimo", sans-serif;
  height: 24px;
  padding: 2.5px 12px;
  gap: 4px;
}
.tbs-button-small i {
  font-size: 16px;
}
.tbs-button-small.tbs-button-icon-left {
  padding-left: 8px;
}
.tbs-button-small.tbs-button-icon-right {
  padding-right: 8px;
}
.tbs-button-large {
  font: normal 400 15px / 22px "Arimo", sans-serif;
  height: 48px;
  padding: 13px 24px;
  gap: 8px;
}
.tbs-button-large i {
  font-size: 24px;
}
.tbs-button-large.tbs-button-icon-left {
  padding-left: 16px;
}
.tbs-button-large.tbs-button-icon-right {
  padding-right: 16px;
}
.tbs-button-solid {
  background: var(--tbs-primary-blue-1000);
  color: var(--tbs-neutral-50);
}
.tbs-button-solid:hover {
  background: var(--tbs-primary-blue-800);
}
.tbs-button-solid:active {
  background: var(--tbs-primary-blue-1200);
}
.tbs-button-solid[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  background: var(--tbs-primary-blue-400);
}
.tbs-button-ghost {
  background: transparent;
  border: 1px solid var(--tbs-primary-blue-1000);
  color: var(--tbs-primary-blue-1000);
}
.tbs-button-ghost:hover {
  color: var(--tbs-primary-blue-800);
  border: 1px solid var(--tbs-primary-blue-800);
}
.tbs-button-ghost:active {
  color: var(--tbs-primary-blue-1200);
  border: 1px solid var(--tbs-primary-blue-1200);
}
.tbs-button-ghost[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  color: var(--tbs-primary-blue-400);
  border: 1px solid var(--tbs-primary-blue-400);
}
.tbs-button-text {
  background: transparent;
  color: var(--tbs-primary-blue-1000);
}
.tbs-button-text:hover {
  color: var(--tbs-primary-blue-800);
}
.tbs-button-text:active {
  color: var(--tbs-primary-blue-1200);
}
.tbs-button-text[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  color: var(--tbs-primary-blue-400);
}

.tbs-radio-button-wrapper {
  position: relative;
  display: inline-block;
  height: 36px;
  margin: 0;
  padding: 0 15px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 34px;
  background: #fff;
  border: 1px solid var(--tbs-neutral-800);
  border-top-width: 1.02px;
  border-left-width: 0;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.tbs-radio-button-wrapper a {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-radio-button-wrapper > .tbs-radio-button {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.tbs-radio-group-large .tbs-radio-button-wrapper {
  height: 48px;
  font-size: 16px;
  line-height: 46px;
}

.tbs-radio-group-small .tbs-radio-button-wrapper {
  height: 24px;
  padding: 0 12px;
  line-height: 22px;
  font-size: 12px;
}

.tbs-radio-button-wrapper:not(:first-child):before {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  box-sizing: content-box;
  width: 1px;
  height: 100%;
  padding: 1px 0;
  background-color: var(--tbs-neutral-800);
  transition: background-color 0.3s;
  content: "";
}

.tbs-radio-button-wrapper:first-child {
  border-left: 1px solid var(--tbs-neutral-800);
  border-radius: 2px 0 0 2px;
}

.tbs-radio-button-wrapper:last-child {
  border-radius: 0 2px 2px 0;
}

.tbs-radio-button-wrapper:first-child:last-child {
  border-radius: 2px;
}

.tbs-radio-button-wrapper:hover {
  position: relative;
  color: var(--tbs-primary-blue-1000);
}

.tbs-radio-button-wrapper .tbs-radio-inner,
.tbs-radio-button-wrapper input[type=checkbox],
.tbs-radio-button-wrapper input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.tbs-radio-button-wrapper-checked:not(.tbs-radio-button-wrapper-disabled) {
  z-index: 1;
  color: var(--tbs-primary-blue-1000);
  background: #fff;
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-radio-button-wrapper-checked:not(.tbs-radio-button-wrapper-disabled):before {
  background-color: var(--tbs-primary-blue-1000);
}

.tbs-radio-button-wrapper-checked:not(.tbs-radio-button-wrapper-disabled):first-child {
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-radio-group-solid .tbs-radio-button-wrapper-checked:not(.tbs-radio-button-wrapper-disabled) {
  color: #fff;
  background: var(--tbs-primary-blue-1000);
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-radio-button-wrapper-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-800);
  cursor: not-allowed;
}

.tbs-radio-button-wrapper-disabled:first-child,
.tbs-radio-button-wrapper-disabled:hover {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-800);
}

.tbs-radio-button-wrapper-disabled:first-child {
  border-left-color: var(--tbs-neutral-800);
}

.tbs-radio-button-wrapper-disabled.tbs-radio-button-wrapper-checked {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: #e6e6e6;
  border-color: var(--tbs-neutral-800);
  box-shadow: none;
}

@keyframes tbsRadioEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}
.tbs-tooltip {
  position: relative;
  z-index: 1070;
  display: block;
  width: max-content;
  width: intrinsic;
  max-width: 300px;
  visibility: visible;
}
.tbs-tooltip-content {
  position: relative;
}
.tbs-tooltip-hidden {
  display: none;
}
.tbs-tooltip-placement-top, .tbs-tooltip-placement-topLeft, .tbs-tooltip-placement-topRight {
  padding-bottom: 16px;
}
.tbs-tooltip-placement-right, .tbs-tooltip-placement-rightTop, .tbs-tooltip-placement-rightBottom {
  padding-left: 16px;
}
.tbs-tooltip-placement-bottom, .tbs-tooltip-placement-bottomLeft, .tbs-tooltip-placement-bottomRight {
  padding-top: 16px;
}
.tbs-tooltip-placement-left, .tbs-tooltip-placement-leftTop, .tbs-tooltip-placement-leftBottom {
  padding-right: 16px;
}
.tbs-tooltip-inner {
  min-width: 30px;
  min-height: 32px;
  padding: 6px 8px;
  color: white;
  text-align: left;
  text-decoration: none;
  word-wrap: break-word;
  background-color: var(--tbs-primary-blue-1400);
  border-radius: 2px;
  box-shadow: 5;
  font: normal 400 13px / 19px "Arimo", sans-serif;
}
.tbs-tooltip-arrow {
  position: absolute;
  z-index: 2;
  display: block;
  width: 17.313708499px;
  height: 17.313708499px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.tbs-tooltip-arrow-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  background-color: var(--tbs-primary-blue-1400);
  content: "";
  pointer-events: auto;
}
.tbs-tooltip-placement-top .tbs-tooltip-arrow, .tbs-tooltip-placement-topLeft .tbs-tooltip-arrow, .tbs-tooltip-placement-topRight .tbs-tooltip-arrow {
  bottom: 0;
  transform: translateY(100%);
}
.tbs-tooltip-placement-top .tbs-tooltip-arrow-content, .tbs-tooltip-placement-topLeft .tbs-tooltip-arrow-content, .tbs-tooltip-placement-topRight .tbs-tooltip-arrow-content {
  transform: translateY(-8.65685px) rotate(45deg);
}
.tbs-tooltip-placement-top .tbs-tooltip-arrow {
  left: 50%;
  transform: translateY(100%) translateX(-50%);
}
.tbs-tooltip-placement-topLeft .tbs-tooltip-arrow {
  left: 13px;
}
.tbs-tooltip-placement-topRight .tbs-tooltip-arrow {
  right: 13px;
}
.tbs-tooltip-placement-right .tbs-tooltip-arrow, .tbs-tooltip-placement-rightTop .tbs-tooltip-arrow, .tbs-tooltip-placement-rightBottom .tbs-tooltip-arrow {
  left: 0;
  transform: translateX(-100%);
}
.tbs-tooltip-placement-right .tbs-tooltip-arrow-content, .tbs-tooltip-placement-rightTop .tbs-tooltip-arrow-content, .tbs-tooltip-placement-rightBottom .tbs-tooltip-arrow-content {
  transform: translateX(8.65685px) rotate(135deg);
}
.tbs-tooltip-placement-right .tbs-tooltip-arrow {
  top: 50%;
  transform: translateX(-100%) translateY(-50%);
}
.tbs-tooltip-placement-rightTop .tbs-tooltip-arrow {
  top: 5px;
}
.tbs-tooltip-placement-rightBottom .tbs-tooltip-arrow {
  bottom: 5px;
}
.tbs-tooltip-placement-left .tbs-tooltip-arrow, .tbs-tooltip-placement-leftTop .tbs-tooltip-arrow, .tbs-tooltip-placement-leftBottom .tbs-tooltip-arrow {
  right: 0;
  transform: translateX(100%);
}
.tbs-tooltip-placement-left .tbs-tooltip-arrow-content, .tbs-tooltip-placement-leftTop .tbs-tooltip-arrow-content, .tbs-tooltip-placement-leftBottom .tbs-tooltip-arrow-content {
  transform: translateX(-8.65685px) rotate(315deg);
}
.tbs-tooltip-placement-left .tbs-tooltip-arrow {
  top: 50%;
  transform: translateX(100%) translateY(-50%);
}
.tbs-tooltip-placement-leftTop .tbs-tooltip-arrow {
  top: 5px;
}
.tbs-tooltip-placement-leftBottom .tbs-tooltip-arrow {
  bottom: 5px;
}
.tbs-tooltip-placement-bottom .tbs-tooltip-arrow, .tbs-tooltip-placement-bottomLeft .tbs-tooltip-arrow, .tbs-tooltip-placement-bottomRight .tbs-tooltip-arrow {
  top: 0;
  transform: translateY(-100%);
}
.tbs-tooltip-placement-bottom .tbs-tooltip-arrow-content, .tbs-tooltip-placement-bottomLeft .tbs-tooltip-arrow-content, .tbs-tooltip-placement-bottomRight .tbs-tooltip-arrow-content {
  transform: translateY(8.65685px) rotate(225deg);
}
.tbs-tooltip-placement-bottom .tbs-tooltip-arrow {
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
}
.tbs-tooltip-placement-bottomLeft .tbs-tooltip-arrow {
  left: 13px;
}
.tbs-tooltip-placement-bottomRight .tbs-tooltip-arrow {
  right: 13px;
}

.tbs-popover {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1030;
  font-weight: normal;
  white-space: normal;
  text-align: left;
  cursor: auto;
  -webkit-user-select: text;
          user-select: text;
}
.tbs-popover::after {
  position: absolute;
  background: fade(white, 1%);
  content: "";
}
.tbs-popover-hidden {
  display: none;
}
.tbs-popover-placement-top, .tbs-popover-placement-topLeft, .tbs-popover-placement-topRight {
  padding-bottom: 16px;
}
.tbs-popover-placement-right, .tbs-popover-placement-rightTop, .tbs-popover-placement-rightBottom {
  padding-left: 16px;
}
.tbs-popover-placement-bottom, .tbs-popover-placement-bottomLeft, .tbs-popover-placement-bottomRight {
  padding-top: 16px;
}
.tbs-popover-placement-left, .tbs-popover-placement-leftTop, .tbs-popover-placement-leftBottom {
  padding-right: 16px;
}
.tbs-popover-inner {
  background-color: white;
  background-clip: padding-box;
  border-radius: 2px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tbs-popover {
    /* IE10+ */
  }
  .tbs-popover-inner {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  }
}
.tbs-popover-title {
  min-width: 200px;
  margin: 0;
}
.tbs-popover-arrow {
  position: absolute;
  display: block;
  width: 17.313708499px;
  height: 17.313708499px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.tbs-popover-arrow-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  background-color: white;
  content: "";
  pointer-events: auto;
}
.tbs-popover-placement-top .tbs-popover-arrow, .tbs-popover-placement-topLeft .tbs-popover-arrow, .tbs-popover-placement-topRight .tbs-popover-arrow {
  bottom: -1.313708499px;
}
.tbs-popover-placement-top .tbs-popover-arrow-content, .tbs-popover-placement-topLeft .tbs-popover-arrow-content, .tbs-popover-placement-topRight .tbs-popover-arrow-content {
  box-shadow: 3px 3px 7px var(--tbs-neutral-400);
  transform: translateY(-8.65685px) rotate(45deg);
}
.tbs-popover-placement-top .tbs-popover-arrow {
  left: 50%;
  transform: translateX(-50%);
}
.tbs-popover-placement-topLeft .tbs-popover-arrow {
  left: 13px;
}
.tbs-popover-placement-topRight .tbs-popover-arrow {
  right: 13px;
}
.tbs-popover-placement-right .tbs-popover-arrow, .tbs-popover-placement-rightTop .tbs-popover-arrow, .tbs-popover-placement-rightBottom .tbs-popover-arrow {
  left: -1.313708499px;
}
.tbs-popover-placement-right .tbs-popover-arrow-content, .tbs-popover-placement-rightTop .tbs-popover-arrow-content, .tbs-popover-placement-rightBottom .tbs-popover-arrow-content {
  box-shadow: 3px 3px 7px var(--tbs-neutral-400);
  transform: translateX(8.65685px) rotate(135deg);
}
.tbs-popover-placement-right .tbs-popover-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.tbs-popover-placement-rightTop .tbs-popover-arrow {
  top: 5px;
}
.tbs-popover-placement-rightBottom .tbs-popover-arrow {
  bottom: 5px;
}
.tbs-popover-placement-bottom .tbs-popover-arrow, .tbs-popover-placement-bottomLeft .tbs-popover-arrow, .tbs-popover-placement-bottomRight .tbs-popover-arrow {
  top: -1.313708499px;
}
.tbs-popover-placement-bottom .tbs-popover-arrow-content, .tbs-popover-placement-bottomLeft .tbs-popover-arrow-content, .tbs-popover-placement-bottomRight .tbs-popover-arrow-content {
  box-shadow: 2px 2px 5px var(--tbs-neutral-400);
  transform: translateY(8.65685px) rotate(-135deg);
}
.tbs-popover-placement-bottom .tbs-popover-arrow {
  left: 50%;
  transform: translateX(-50%);
}
.tbs-popover-placement-bottomLeft .tbs-popover-arrow {
  left: 13px;
}
.tbs-popover-placement-bottomRight .tbs-popover-arrow {
  right: 13px;
}
.tbs-popover-placement-left .tbs-popover-arrow, .tbs-popover-placement-leftTop .tbs-popover-arrow, .tbs-popover-placement-leftBottom .tbs-popover-arrow {
  right: -1.313708499px;
}
.tbs-popover-placement-left .tbs-popover-arrow-content, .tbs-popover-placement-leftTop .tbs-popover-arrow-content, .tbs-popover-placement-leftBottom .tbs-popover-arrow-content {
  box-shadow: 3px 3px 7px var(--tbs-neutral-400);
  transform: translateX(-8.65685px) rotate(-45deg);
}
.tbs-popover-placement-left .tbs-popover-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.tbs-popover-placement-leftTop .tbs-popover-arrow {
  top: 5px;
}
.tbs-popover-placement-leftBottom .tbs-popover-arrow {
  bottom: 5px;
}

.tbs-avatar {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  background: #ccc;
  border: 1px solid var(--tbs-primary-blue-400);
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
}
.tbs-avatar-image {
  background: transparent;
}
.tbs-avatar .tbs-image-img {
  display: block;
}
.tbs-avatar-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.tbs-avatar.tbs-avatar-icon {
  font-size: 18px;
}
.tbs-avatar-lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.tbs-avatar-lg-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.tbs-avatar-lg.tbs-avatar-icon {
  font-size: 24px;
}
.tbs-avatar-sm {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
}
.tbs-avatar-sm-string {
  position: absolute;
  left: 50%;
  transform-origin: 0 center;
}
.tbs-avatar-sm.tbs-avatar-icon {
  font-size: 14px;
}
.tbs-avatar-square {
  border-radius: 2px;
}
.tbs-avatar > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbs-avatar-group {
  display: inline-flex;
}
.tbs-avatar-group .tbs-avatar {
  position: relative;
}
.tbs-avatar-group .tbs-avatar:not(:first-child) {
  margin-left: -9px;
}
.tbs-avatar-group .tbs-avatar:hover {
  z-index: 1;
}

.tbs-spinner {
  position: relative;
  box-sizing: border-box;
  display: block;
  font-size: 0;
}
.tbs-spinner > div {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
  background: transparent;
  border-bottom-color: transparent;
  border-radius: 100%;
  animation: ball-clip-rotate 0.75s linear infinite;
}

/*
  * Animation
  */
@keyframes ball-clip-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tbs-dropdown {
  top: 0;
  left: 0;
  position: relative;
  z-index: 1030;
  display: block;
  margin-top: 6px;
  margin-bottom: 6px;
  width: 100%;
  text-align: left;
  list-style-type: none;
  background-clip: padding-box;
  border-radius: 2px;
  outline: none;
}
.tbs-dropdown-menu {
  text-align: left;
  list-style-type: none;
  background-color: var(--tbs-neutral-50);
  background-clip: padding-box;
  outline: none;
  list-style-type: none;
  padding: 0;
  border: 0.5px solid var(--tbs-neutral-800);
}
.tbs-dropdown-menu-item {
  display: flex;
  align-items: center;
  clear: both;
  margin: 0;
  padding: 7px 8px;
  color: var(--tbs-neutral-1400);
  font-weight: 400;
  font: normal 400 15px / 22px "Arimo", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.tbs-dropdown-menu-item i {
  padding-right: 5px;
}
.tbs-dropdown-menu-item:hover {
  background-color: var(--tbs-neutral-200);
}
.tbs-dropdown-menu-item-disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: var(--tbs-neutral-1000);
}

.tbs-comment {
  padding: 16px 0;
}
.tbs-comment-header {
  display: flex;
  position: relative;
  word-wrap: break-word;
  margin-bottom: 5px;
}
.tbs-comment-header-avatar {
  margin-right: 8px;
  padding-top: 5px;
}
.tbs-comment-header-info {
  flex: 1 1 auto;
}
.tbs-comment-header-info-author {
  color: var(--tbs-neutral-1400);
  font: normal 700 15px / 22px "Arimo", sans-serif;
}
.tbs-comment-header-info-date {
  color: var(--tbs-neutral-1000);
  font: normal 400 13px / 19px "Arimo", sans-serif;
}
.tbs-comment-content {
  color: var(--tbs-neutral-1400);
  font: normal 400 15px / 22px "Arimo", sans-serif;
}

.tbs-collapse {
  display: block;
  border-top: 1px solid var(--tbs-neutral-600);
  border-left: 1px solid var(--tbs-neutral-600);
  border-right: 1px solid var(--tbs-neutral-600);
}
.tbs-collapse-item {
  display: block;
}
.tbs-collapse-item > .tbs-collapse-header {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  font: normal 400 15px / 22px "Arimo", sans-serif;
  padding: 5px 12px;
  cursor: pointer;
  color: var(--tbs-neutral-1400);
}
.tbs-collapse-item > .tbs-collapse-header .tbs-collapse-arrow {
  margin-right: 8px;
}
.tbs-collapse-item > .tbs-collapse-header-gray {
  background-color: var(--tbs-neutral-400);
}
.tbs-collapse-item > .tbs-collapse-header-blue {
  color: var(--tbs-neutral-50);
  background-color: var(--tbs-primary-blue-1000);
}
.tbs-collapse-item > .tbs-collapse-header-green {
  color: var(--tbs-neutral-50);
  background-color: var(--tbs-primary-green-1000);
}
.tbs-collapse-item > .tbs-collapse-header-orange {
  color: var(--tbs-neutral-50);
  background-color: var(--tbs-semantic-orange-1000);
}
.tbs-collapse-item > .tbs-collapse-header-yellow {
  color: var(--tbs-neutral-50);
  background-color: var(--tbs-semantic-yellow-1000);
}
.tbs-collapse-item > .tbs-collapse-header-red {
  color: var(--tbs-neutral-50);
  background-color: var(--tbs-semantic-red-1000);
}
.tbs-collapse.tbs-collapse-icon-position-right > .tbs-collapse-item > .tbs-collapse-header {
  position: relative;
  padding: 5px 40px 5px 12px;
}
.tbs-collapse.tbs-collapse-icon-position-right > .tbs-collapse-item > .tbs-collapse-header .tbs-collapse-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  left: auto;
  margin: 0;
  transform: translateY(-50%);
}
.tbs-collapse-content {
  color: var(--tbs-neutral-1400);
  border-top: 1px solid var(--tbs-neutral-600);
  border-bottom: 1px solid var(--tbs-neutral-600);
  font: normal 400 15px / 22px "Arimo", sans-serif;
}
.tbs-collapse i {
  line-height: unset !important;
}
.tbs-collapse-borderless {
  border: 0;
}
.tbs-collapse-borderless > .tbs-collapse-item > .tbs-collapse-header {
  padding: 5px 40px 5px 0px !important;
}
.tbs-collapse-borderless .tbs-collapse-arrow {
  right: 0px !important;
}
.tbs-collapse-borderless:not(.tbs-collapse-icon-position-right) {
  border: 0;
}
.tbs-collapse-borderless:not(.tbs-collapse-icon-position-right) > .tbs-collapse-item > .tbs-collapse-header {
  padding: 5px 0px !important;
}
.tbs-collapse-borderless > .tbs-collapse-item > .tbs-collapse-content {
  border: 0;
}
.tbs-collapse .tbs-collapse-item-disabled > .tbs-collapse-header {
  color: var(--tbs-neutral-800);
  cursor: not-allowed;
}

.tbs-page-header {
  position: relative;
  padding: 16px 32px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
}
.tbs-page-header-bordered {
  border: 1px solid var(--tbs-neutral-600);
}
.tbs-page-header-heading {
  color: var(--tbs-neutral-1400);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tbs-page-header-heading-left {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tbs-page-header-heading-title {
  font: normal 700 25px / 33px "Arimo", sans-serif;
  margin-right: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 36px;
  display: flex;
  align-items: center;
}
.tbs-page-header-heading-extra {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.tbs-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.tbs-header-container {
  position: sticky;
  top: 0;
  z-index: 998;
  border-bottom: 1px solid var(--tbs-neutral-600);
  background: var(--tbs-neutral-50);
}

.tbs-content-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
}

.tbs-footer-container {
  background: var(--tbs-neutral-50);
  border-top: 1px solid var(--tbs-neutral-600);
  padding: 24px 32px;
  position: sticky;
  bottom: 0;
  z-index: 998;
}

.tbs-drawer {
  position: absolute;
  background-color: white;
  transition: transform 0.3s ease-out;
  background-color: var(--tbs-neutral-50);
  min-width: 350px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.tbs-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(31, 40, 69, 0.5);
  opacity: 0;
  transition: opacity 0.3s linear, height 0s ease 0.3s;
  pointer-events: none;
  height: 100%;
  opacity: 1;
}
.tbs-drawer-left {
  left: 0;
  transform: translateX(-100%);
  width: 350px;
  height: 100%;
}
.tbs-drawer-right {
  right: 0;
  transform: translateX(100%);
  width: 350px;
  height: 100%;
}
.tbs-drawer-top {
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 350px;
}
.tbs-drawer-bottom {
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  height: 350px;
}
.tbs-drawer-opened {
  transform: translateX(0) translateY(0);
}
.tbs-drawer-title {
  padding: 12px 16px;
  border-bottom: 1px solid var(--tbs-neutral-400);
  font: normal 400 17px / 24px "Arimo", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tbs-drawer-title-content {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tbs-drawer-title-close-icon {
  cursor: pointer;
  font-size: 20px;
}
.tbs-drawer-content {
  font: normal 400 15px / 22px "Arimo", sans-serif;
  width: 100%;
  height: calc(100% - 50px);
  overflow: auto;
}

.tbs-card {
  position: relative;
  display: block;
  background: var(--tbs-neutral-50);
  border-radius: 4px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
}
.tbs-card-head {
  min-height: 48px;
  padding-left: 16px;
  border-bottom: 1px solid var(--tbs-neutral-600);
}
.tbs-card-head-wrapper {
  display: flex;
  align-items: center;
}
.tbs-card-head-title {
  color: var(--tbs-neutral-1400);
  font: normal 700 15px / 22px "Arimo", sans-serif;
  display: inline-block;
  flex: 1;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tbs-card-extra {
  float: right;
  margin-left: auto;
  padding: 12px 0;
}
.tbs-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tbs-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 0px 16px;
  list-style: none;
  background: var(--tbs-neutral-50);
  border-top: 1px solid var(--tbs-neutral-600);
}
.tbs-card-actions button {
  width: 100%;
}
.tbs-card-actions > li {
  float: left;
  margin: 12px 0;
  color: rgba(0, 0, 0, 0.4509803922);
  text-align: center;
}

.tbs-flip-card {
  display: block;
  position: relative;
  perspective: 1000px;
  background: transparent;
  height: 100%;
}
.tbs-flip-card .tbs-flip-card-inner {
  display: flex;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.tbs-flip-card .tbs-flip-card-inner .tbs-flip-card-front,
.tbs-flip-card .tbs-flip-card-inner .tbs-flip-card-back {
  flex: 1;
}
.tbs-flip-card .tbs-flip-card-inner .tbs-flip-card-front tbs-card,
.tbs-flip-card .tbs-flip-card-inner .tbs-flip-card-back tbs-card {
  height: 100%;
  flex-grow: 1;
}
.tbs-flip-card .tbs-flip-card-inner .tbs-flip-card-front {
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  transition: opacity 0s 0.2s;
  margin-right: -50%;
}
.tbs-flip-card .tbs-flip-card-inner .tbs-flip-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  margin-left: -50%;
}
.tbs-flip-card.flipped .tbs-flip-card-inner .tbs-flip-card-front {
  opacity: 0;
  transition: opacity 0s 0.2s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tbs-flip-card.flipped .tbs-flip-card-inner .tbs-flip-card-back {
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}
.tbs-flip-card.flipped.x .tbs-flip-card-inner {
  transform: rotateX(180deg);
}
.tbs-flip-card.flipped.y .tbs-flip-card-inner {
  transform: rotateY(180deg);
}
.tbs-flip-card.x .tbs-flip-card-inner .tbs-flip-card-back {
  transform: rotateX(180deg);
}
.tbs-flip-card.y .tbs-flip-card-inner .tbs-flip-card-back {
  transform: rotateY(180deg);
}

.tbs-breadcrumb {
  display: flex;
  align-items: center;
}
.tbs-breadcrumb-link {
  font: normal 400 13px / 19px "Arimo", sans-serif;
  color: var(--tbs-neutral-1000);
  height: 24px;
  display: flex;
  align-items: center;
}
.tbs-breadcrumb a {
  color: var(--tbs-primary-blue-1000);
  transition: color 0.3s;
  cursor: pointer;
}
.tbs-breadcrumb a:hover {
  color: var(--tbs-primary-blue-800);
  text-decoration: underline;
}
.tbs-breadcrumb-separator i {
  font-size: 16px;
  padding: 0px 8px;
  color: var(--tbs-neutral-1000);
  position: relative;
  top: 2px;
}

tbs-breadcrumb-item {
  display: flex;
  align-self: center;
}
tbs-breadcrumb-item:last-child {
  color: var(--tbs-neutral-1000);
}
tbs-breadcrumb-item:last-child .tbs-breadcrumb-separator {
  display: none;
}

.tbs-result-info {
  color: #5575a6;
}
.tbs-result-success {
  color: #4e8e18;
}
.tbs-result-danger {
  color: #f25037;
}
.tbs-result-warning {
  color: #ffbf44;
}
.tbs-result-header {
  display: flex;
  text-align: center;
  justify-content: center;
}
.tbs-result-default .tbs-result-icon {
  font-size: 72px;
  margin-bottom: 24px;
}
.tbs-result-default .tbs-result-title {
  color: #181818;
  font: normal 400 25px / 33px "Arimo", sans-serif;
  text-align: center;
  margin-bottom: 8px;
}
.tbs-result-default .tbs-result-subtitle {
  color: #454545;
  font: normal 400 15px / 22px "Arimo", sans-serif;
  text-align: center;
}
.tbs-result-default .tbs-result-extra {
  margin: 24px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.tbs-result-small .tbs-result-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.tbs-result-small .tbs-result-title {
  color: #181818;
  font: normal 400 20px / 24px "Arimo", sans-serif;
  text-align: center;
  margin-bottom: 4px;
}
.tbs-result-small .tbs-result-subtitle {
  color: #454545;
  font: normal 400 13px / 19px "Arimo", sans-serif;
  text-align: center;
}
.tbs-result-small .tbs-result-extra {
  margin: 12px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tbs-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}

.tbs-checkbox-wrapper:hover .tbs-checkbox-inner,
.tbs-checkbox:hover .tbs-checkbox-inner,
.tbs-checkbox-input:focus + .tbs-checkbox-inner {
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-checkbox-checked:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tbs-primary-blue-1000);
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: "";
}

.tbs-checkbox:hover:after,
.tbs-checkbox-wrapper:hover .tbs-checkbox:after {
  visibility: visible;
}

.tbs-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid var(--tbs-primary-blue-1000);
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}

.tbs-checkbox-inner:after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: " ";
}

.tbs-checkbox-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.tbs-checkbox-checked .tbs-checkbox-inner:after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: " ";
}

.tbs-checkbox-checked .tbs-checkbox-inner {
  background-color: var(--tbs-primary-blue-1000);
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-checkbox-disabled {
  cursor: not-allowed;
}

.tbs-checkbox-disabled.tbs-checkbox-checked .tbs-checkbox-inner:after {
  border-color: rgba(0, 0, 0, 0.2509803922);
  animation-name: none;
}

.tbs-checkbox-disabled .tbs-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}

.tbs-checkbox-disabled .tbs-checkbox-inner {
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600) !important;
}

.tbs-checkbox-disabled .tbs-checkbox-inner:after {
  border-color: var(--tbs-neutral-400);
  border-collapse: separate;
  animation-name: none;
}

.tbs-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-checkbox-disabled:hover:after,
.tbs-checkbox-wrapper:hover .tbs-checkbox-disabled:after {
  visibility: hidden;
}

.tbs-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}

.tbs-checkbox-wrapper:after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: " ";
}

.tbs-checkbox-wrapper.tbs-checkbox-wrapper-disabled {
  cursor: not-allowed;
}

.tbs-checkbox-wrapper + .tbs-checkbox-wrapper {
  margin-left: 8px;
}

.tbs-checkbox-wrapper.tbs-checkbox-wrapper-in-form-item input[type=checkbox] {
  width: 14px;
  height: 14px;
}

.tbs-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}

.tbs-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-block;
}

.tbs-checkbox-group-item {
  margin-right: 8px;
}

.tbs-checkbox-group-item:last-child {
  margin-right: 0;
}

.tbs-checkbox-group-item + .tbs-checkbox-group-item {
  margin-left: 0;
}

.tbs-checkbox-indeterminate .tbs-checkbox-inner {
  background-color: #fff;
  border-color: var(--tbs-neutral-600);
}

.tbs-checkbox-indeterminate .tbs-checkbox-inner:after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--tbs-primary-blue-1000);
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: " ";
}

.tbs-checkbox-indeterminate.tbs-checkbox-disabled .tbs-checkbox-inner:after {
  background-color: rgba(0, 0, 0, 0.2509803922);
  border-color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-checkbox-rtl {
  direction: rtl;
}

.tbs-checkbox-group-rtl .tbs-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-checkbox-group-rtl .tbs-checkbox-group-item:last-child {
  margin-left: 0 !important;
}

.tbs-checkbox-group-rtl .tbs-checkbox-group-item + .tbs-checkbox-group-item {
  margin-left: 8px;
}

.tbs-checkbox + span:empty {
  display: none;
}

.tbs-title {
  display: flex;
  align-items: center;
  color: var(--tbs-neutral-1400);
}
.tbs-title-content {
  display: inline-block;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tbs-title-extra {
  float: right;
  margin-left: auto;
}
.tbs-title-default {
  font: normal 700 17px / 24px "Arimo", sans-serif;
}
.tbs-title-default.tbs-title-bordered {
  border-bottom: 1px solid var(--tbs-neutral-600);
  padding-bottom: 12px;
}
.tbs-title-small {
  font: normal 700 15px / 20px "Arimo", sans-serif;
  padding-bottom: 8px;
}
.tbs-title-small.tbs-title-bordered {
  border-bottom: 1px solid var(--tbs-neutral-600);
  padding-bottom: 8px;
}

.tbs-upload-drag {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: var(--tbs-primary-blue-50);
  border: 1px dashed var(--tbs-primary-blue-600);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.tbs-upload-drag:hover {
  border: 1px dashed var(--tbs-primary-blue-1000);
}
.tbs-upload-drag-hover {
  border: 1px dashed var(--tbs-primary-blue-1000);
}
.tbs-upload-disabled {
  cursor: not-allowed;
}

.tbs-chip {
  display: inline-flex;
  height: 24px;
  padding: 0px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid var(--tbs-neutral-600, #e4e4e4);
  background: var(--tbs-neutral-400, #f1f1f1);
  font: normal 700 13px / 19px "Arimo", sans-serif;
  color: var(--tbs-neutral-1000, #808080);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tbs-chip-checked {
  border: 1px solid var(--tbs-primary-blue-1200, #224273);
  background: var(--tbs-primary-blue-200, #d5dde9);
  color: var(--tbs-primary-blue-1200, #224273);
}
.tbs-chip:hover {
  color: var(--tbs-neutral-1400, #181818);
  border: 1px solid var(--tbs-primary-blue-1200, #224273);
}
.tbs-chip i {
  font-size: 16px;
}

.tbs-skeleton {
  display: table;
  width: 100%;
}
.tbs-skeleton.tbs-skeleton-active .tbs-skeleton-avatar {
  background: linear-gradient(90deg, var(--tbs-neutral-400) 25%, var(--tbs-neutral-600) 37%, var(--tbs-neutral-400) 63%);
  background-size: 400% 100%;
  animation: tbs-skeleton-loading 1.4s ease infinite;
}
.tbs-skeleton.tbs-skeleton-active .tbs-skeleton-input {
  background: linear-gradient(90deg, var(--tbs-neutral-400) 25%, var(--tbs-neutral-600) 37%, var(--tbs-neutral-400) 63%);
  background-size: 400% 100%;
  animation: tbs-skeleton-loading 1.4s ease infinite;
}
.tbs-skeleton.tbs-skeleton-active .tbs-skeleton-image {
  background: linear-gradient(90deg, var(--tbs-neutral-400) 25%, var(--tbs-neutral-600) 37%, var(--tbs-neutral-400) 63%);
  background-size: 400% 100%;
  animation: tbs-skeleton-loading 1.4s ease infinite;
}
.tbs-skeleton.tbs-skeleton-block {
  width: 100%;
}
.tbs-skeleton.tbs-skeleton-block .tbs-skeleton-input {
  width: 100%;
}
.tbs-skeleton-element {
  display: inline-block;
  width: auto;
}
.tbs-skeleton-element .tbs-skeleton-avatar {
  display: inline-block;
  vertical-align: top;
  background: var(--tbs-neutral-400);
  width: 36px;
  height: 36px;
  line-height: 36px;
}
.tbs-skeleton-element .tbs-skeleton-avatar.tbs-skeleton-avatar-circle {
  border-radius: 50%;
}
.tbs-skeleton-element .tbs-skeleton-avatar-lg {
  width: 48px;
  height: 48px;
  line-height: 48px;
}
.tbs-skeleton-element .tbs-skeleton-avatar-lg.tbs-skeleton-avatar-circle {
  border-radius: 50%;
}
.tbs-skeleton-element .tbs-skeleton-avatar-sm {
  width: 26px;
  height: 26px;
  line-height: 26px;
}
.tbs-skeleton-element .tbs-skeleton-avatar-sm.tbs-skeleton-avatar-circle {
  border-radius: 50%;
}
.tbs-skeleton-element .tbs-skeleton-input {
  display: inline-block;
  vertical-align: top;
  background: var(--tbs-neutral-400);
  border-radius: 2px;
  width: 180px;
  min-width: 180px;
  height: 36px;
  line-height: 36px;
}
.tbs-skeleton-element .tbs-skeleton-input-lg {
  width: 240px;
  min-width: 240px;
  height: 48px;
  line-height: 48px;
}
.tbs-skeleton-element .tbs-skeleton-input-sm {
  width: 120px;
  min-width: 120px;
  height: 24px;
  line-height: 24px;
}
.tbs-skeleton-element .tbs-skeleton-image {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  background: var(--tbs-neutral-400);
  width: 80px;
  height: 80px;
  line-height: 80px;
}
.tbs-skeleton-element .tbs-skeleton-image.tbs-skeleton-image-circle {
  border-radius: 50%;
}
.tbs-skeleton-element .tbs-skeleton-image-path {
  fill: #bfbfbf;
}
.tbs-skeleton-element .tbs-skeleton-image-svg {
  width: 40px;
  height: 40px;
  line-height: 40px;
  max-width: 160px;
  max-height: 160px;
}
.tbs-skeleton-element .tbs-skeleton-image-svg.tbs-skeleton-image-circle {
  border-radius: 50%;
}

@keyframes tbs-skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.tbs-timeline-item {
  margin: 16px 0;
}
.tbs-timeline-item-active .tbs-timeline-item-inner::before {
  background-color: #181818;
}
.tbs-timeline-item-inner {
  display: block;
  position: relative;
  word-break: break-word;
  padding-left: 20px;
  margin: 16px 0px;
}
.tbs-timeline-item-inner::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid #e4e4e4;
  background-color: silver;
  top: var(--tbs-offset-top);
  left: 0;
  border-radius: 50%;
}
.tbs-timeline-item-inner::after {
  content: "";
  position: absolute;
  width: 2px;
  height: calc(100% - 10px);
  background-color: #f1f1f1;
  top: calc(20px + var(--tbs-offset-top));
  left: 5px;
}
.tbs-timeline-item-inner-container {
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  padding: 16px;
  box-shadow: 0px 2px 5px 0px rgba(19, 47, 81, 0.07);
}
.tbs-timeline-item:last-child .tbs-timeline-item-inner::after {
  display: none;
}

.tbs-radio-group {
  display: inline-block;
  color: var(--tbs-neutral-1400);
  font: normal 400 15px / 22px "Arimo", sans-serif;
  font-variant: tabular-nums;
  list-style: none;
}
.tbs-radio-group-small .tbs-radio-inner {
  width: 14px;
  height: 14px;
}
.tbs-radio-group-small .tbs-radio-inner::after {
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
}
.tbs-radio-group-horizontal {
  width: 100%;
}
.tbs-radio-group-horizontal [tbs-radio] {
  display: block;
}

.tbs-radio-wrapper {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  margin-right: 8px;
  cursor: pointer;
}
.tbs-radio-wrapper-disabled {
  cursor: not-allowed;
}
.tbs-radio-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: " ";
}

.tbs-radio {
  position: relative;
  top: 0.2em;
  display: inline-block;
  outline: none;
  cursor: pointer;
}
.tbs-radio-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  visibility: hidden;
  animation: tbsRadioEffect 0.36s ease-in-out;
  animation-fill-mode: both;
  content: "";
}
.tbs-radio:hover::after, .tbs-radio-wrapper:hover .tbs-radio::after {
  visibility: visible;
}
.tbs-radio-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  background-color: white;
  border-color: var(--tbs-primary-blue-1000);
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  transition: all 0.3s;
}
.tbs-radio-inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  background-color: var(--tbs-primary-blue-1000);
  border-top: 0;
  border-left: 0;
  border-radius: 20px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: " ";
}
.tbs-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.tbs-radio-checked .tbs-radio-inner {
  border-color: var(--tbs-primary-blue-1000);
}
.tbs-radio-checked .tbs-radio-inner::after {
  transform: scale(0.5);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-radio-disabled {
  cursor: not-allowed;
}
.tbs-radio-disabled .tbs-radio-inner {
  border-color: var(--tbs-neutral-800) !important;
  cursor: not-allowed;
}
.tbs-radio-disabled .tbs-radio-inner::after {
  background-color: var(--tbs-neutral-800);
}
.tbs-radio-disabled .tbs-radio-input {
  cursor: not-allowed;
}
.tbs-radio-disabled + span {
  color: var(--tbs-neutral-800);
  cursor: not-allowed;
}

span.tbs-radio + * {
  padding-right: 8px;
  padding-left: 8px;
}

@keyframes tbsRadioEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.tbs-slider {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  height: 12px;
  margin: 10px 6px;
  padding: 4px 0;
  cursor: pointer;
  touch-action: none;
}

.tbs-slider-vertical {
  width: 12px;
  height: 100%;
  margin: 6px 10px;
  padding: 0 4px;
}

.tbs-slider-vertical .tbs-slider-rail {
  width: 4px;
  height: 100%;
}

.tbs-slider-vertical .tbs-slider-track {
  width: 4px;
}

.tbs-slider-vertical .tbs-slider-handle {
  margin-top: -6px;
  margin-left: -5px;
}

.tbs-slider-vertical .tbs-slider-mark {
  top: 0;
  left: 12px;
  width: 18px;
  height: 100%;
}

.tbs-slider-vertical .tbs-slider-mark-text {
  left: 4px;
  white-space: nowrap;
}

.tbs-slider-vertical .tbs-slider-step {
  width: 4px;
  height: 100%;
}

.tbs-slider-vertical .tbs-slider-dot {
  top: auto;
  margin-left: -2px;
}

.tbs-slider-rtl.tbs-slider-vertical .tbs-slider-handle {
  margin-right: -5px;
  margin-left: 0;
}

.tbs-slider-rtl.tbs-slider-vertical .tbs-slider-mark {
  right: 12px;
  left: auto;
}

.tbs-slider-rtl.tbs-slider-vertical .tbs-slider-mark-text {
  right: 4px;
  left: auto;
}

.tbs-slider-rtl.tbs-slider-vertical .tbs-slider-dot {
  right: 2px;
  left: auto;
}

.tbs-slider-with-marks {
  margin-bottom: 28px;
}

.tbs-slider-rail {
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: var(--tbs-neutral-400);
  border-radius: 2px;
  transition: background-color 0.3s;
}

.tbs-slider-track {
  position: absolute;
  height: 6px;
  background-color: var(--tbs-primary-blue-1000);
  border-radius: 2px;
  transition: background-color 0.3s;
}

.tbs-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  margin-top: -4px;
  background-color: var(--tbs-primary-blue-1000);
  border: solid 2px var(--tbs-primary-blue-1000);
  border-radius: 50%;
  box-shadow: 0;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.tbs-slider-handle-dragging {
  z-index: 1;
}

.tbs-slider-handle:focus {
  border-color: var(--tbs-primary-blue-1000);
  outline: none;
  box-shadow: 0 0 0 5px rgba(170, 186, 210, 0.5);
}

.tbs-slider-handle:after {
  position: absolute;
  inset: -6px;
  content: "";
}

.tbs-slider:hover .tbs-slider-rail {
  background-color: var(--tbs-neutral-600);
}

.tbs-slider:hover .tbs-slider-track {
  background-color: var(--tbs-primary-blue-1000);
}

.tbs-slider-mark {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  font-size: 14px;
}

.tbs-slider-mark-text {
  position: absolute;
  display: inline-block;
  color: rgba(0, 0, 0, 0.4509803922);
  text-align: center;
  word-break: keep-all;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-slider-mark-text-active {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: none;
}

.tbs-slider-dot {
  position: absolute;
  top: -2px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  cursor: pointer;
}

.tbs-slider-dot-active {
  border-color: var(--tbs-primary-color-deprecated-t-50);
}

.tbs-slider-disabled {
  cursor: not-allowed;
}

.tbs-slider-disabled .tbs-slider-rail {
  background-color: var(--tbs-neutral-400) !important;
}

.tbs-slider-disabled .tbs-slider-track {
  background-color: var(--tbs-neutral-800) !important;
}

.tbs-slider-disabled .tbs-slider-handle,
.tbs-slider-disabled .tbs-slider-dot {
  background-color: var(--tbs-neutral-800);
  border-color: var(--tbs-neutral-800) !important;
  box-shadow: none;
  cursor: not-allowed;
}

.tbs-slider-disabled .tbs-slider-mark-text,
.tbs-slider-disabled .tbs-slider-dot {
  cursor: not-allowed !important;
}

.tbs-slider-rtl {
  direction: rtl;
}

.tbs-slider-rtl .tbs-slider-mark {
  right: 0;
  left: auto;
}

.tbs-slider {
  display: block;
}

.tbs-steps {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: flex;
  width: 100%;
  font-size: 0;
  text-align: initial;
}

.tbs-steps-item {
  position: relative;
  display: inline-block;
  flex: 1;
  overflow: hidden;
  vertical-align: top;
}

.tbs-steps-item-container {
  outline: none;
}

.tbs-steps-item:last-child {
  flex: none;
}

.tbs-steps-item:last-child > .tbs-steps-item-container > .tbs-steps-item-tail,
.tbs-steps-item:last-child > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title:after {
  display: none;
}

.tbs-steps-item-icon,
.tbs-steps-item-content {
  display: inline-block;
  vertical-align: top;
}

.tbs-steps-item-icon {
  width: 32px;
  height: 32px;
  margin: 0 8px 0 0;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  line-height: 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  transition: background-color 0.3s, border-color 0.3s;
}

.tbs-steps-item-icon .tbs-steps-icon {
  position: relative;
  top: -0.5px;
  color: var(--tbs-primary-blue-1000);
  line-height: 1;
}

.tbs-steps-item-tail {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  padding: 0 10px;
}

.tbs-steps-item-tail:after {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.0588235294);
  border-radius: 1px;
  transition: background 0.3s;
  content: "";
}

.tbs-steps-item-title {
  position: relative;
  display: inline-block;
  padding-right: 16px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 11px;
  line-height: 20px;
}

.tbs-steps-item-title:after {
  position: absolute;
  top: 16px;
  left: 100%;
  display: block;
  width: 9999px;
  height: 1px;
  background: rgba(0, 0, 0, 0.0588235294);
  content: "";
}

.tbs-steps-item-subtitle {
  display: inline;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-weight: 400;
  font-size: 14px;
}

.tbs-steps-item-description {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
}

.tbs-steps-item-wait .tbs-steps-item-icon {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-steps-item-wait .tbs-steps-item-icon > .tbs-steps-icon {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-steps-item-wait .tbs-steps-item-icon > .tbs-steps-icon .tbs-steps-icon-dot {
  background: rgba(0, 0, 0, 0.2509803922);
}

.tbs-steps-item-wait > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-steps-item-wait > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title:after {
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-steps-item-wait > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-description {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-steps-item-wait > .tbs-steps-item-container > .tbs-steps-item-tail:after {
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-steps-item-process .tbs-steps-item-icon {
  background-color: #fff;
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-process .tbs-steps-item-icon > .tbs-steps-icon {
  color: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-process .tbs-steps-item-icon > .tbs-steps-icon .tbs-steps-icon-dot {
  background: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-process > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-steps-item-process > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title:after {
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-steps-item-process > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-description {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-steps-item-process > .tbs-steps-item-container > .tbs-steps-item-tail:after {
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-steps-item-process > .tbs-steps-item-container > .tbs-steps-item-icon {
  background: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-process > .tbs-steps-item-container > .tbs-steps-item-icon .tbs-steps-icon {
  color: #fff;
}

.tbs-steps-item-process > .tbs-steps-item-container > .tbs-steps-item-title {
  font-weight: 500;
}

.tbs-steps-item-finish .tbs-steps-item-icon {
  background-color: #fff;
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-finish .tbs-steps-item-icon > .tbs-steps-icon {
  color: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-finish .tbs-steps-item-icon > .tbs-steps-icon .tbs-steps-icon-dot {
  background: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-finish > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-steps-item-finish > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title:after {
  background-color: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-finish > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-description {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-steps-item-finish > .tbs-steps-item-container > .tbs-steps-item-tail:after {
  background-color: var(--tbs-primary-blue-1000);
}

.tbs-steps-item-error .tbs-steps-item-icon {
  background-color: #fff;
  border-color: var(--tbs-error-color);
}

.tbs-steps-item-error .tbs-steps-item-icon > .tbs-steps-icon {
  color: var(--tbs-error-color);
}

.tbs-steps-item-error .tbs-steps-item-icon > .tbs-steps-icon .tbs-steps-icon-dot {
  background: var(--tbs-error-color);
}

.tbs-steps-item-error > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title {
  color: var(--tbs-error-color);
}

.tbs-steps-item-error > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title:after {
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-steps-item-error > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-description {
  color: var(--tbs-error-color);
}

.tbs-steps-item-error > .tbs-steps-item-container > .tbs-steps-item-tail:after {
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-steps-item.tbs-steps-next-error .tbs-steps-item-title:after {
  background: var(--tbs-error-color);
}

.tbs-steps-item-disabled {
  cursor: not-allowed;
}

.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button] {
  cursor: pointer;
}

.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button] .tbs-steps-item-title,
.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button] .tbs-steps-item-subtitle,
.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button] .tbs-steps-item-description,
.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button] .tbs-steps-item-icon .tbs-steps-icon {
  transition: color 0.3s;
}

.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button]:hover .tbs-steps-item-title,
.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button]:hover .tbs-steps-item-subtitle,
.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active) > .tbs-steps-item-container[role=button]:hover .tbs-steps-item-description {
  color: var(--tbs-primary-blue-1000);
}

.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active):not(.tbs-steps-item-process) > .tbs-steps-item-container[role=button]:hover .tbs-steps-item-icon {
  border-color: var(--tbs-primary-blue-1000);
}

.tbs-steps .tbs-steps-item:not(.tbs-steps-item-active):not(.tbs-steps-item-process) > .tbs-steps-item-container[role=button]:hover .tbs-steps-item-icon .tbs-steps-icon {
  color: var(--tbs-primary-blue-1000);
}

.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item {
  padding-left: 16px;
  white-space: nowrap;
}

.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item:first-child {
  padding-left: 0;
}

.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item:last-child .tbs-steps-item-title {
  padding-right: 0;
}

.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item-tail {
  display: none;
}

.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item-description {
  max-width: 140px;
  white-space: normal;
}

.tbs-steps-item-custom > .tbs-steps-item-container > .tbs-steps-item-icon {
  height: auto;
  background: none;
  border: 0;
}

.tbs-steps-item-custom > .tbs-steps-item-container > .tbs-steps-item-icon > .tbs-steps-icon {
  top: 0;
  left: 0.5px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 32px;
}

.tbs-steps-item-custom.tbs-steps-item-process .tbs-steps-item-icon > .tbs-steps-icon {
  color: var(--tbs-primary-blue-1000);
}

.tbs-steps:not(.tbs-steps-vertical) .tbs-steps-item-custom .tbs-steps-item-icon {
  width: auto;
  background: none;
}

.tbs-steps-small.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item {
  padding-left: 12px;
}

.tbs-steps-small.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item:first-child {
  padding-left: 0;
}

.tbs-steps-small .tbs-steps-item-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  border-radius: 24px;
}

.tbs-steps-small .tbs-steps-item-title {
  padding-right: 12px;
  font-size: 14px;
  line-height: 24px;
}

.tbs-steps-small .tbs-steps-item-title:after {
  top: 12px;
}

.tbs-steps-small .tbs-steps-item-description {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
}

.tbs-steps-small .tbs-steps-item-tail {
  top: 8px;
}

.tbs-steps-small .tbs-steps-item-custom .tbs-steps-item-icon {
  width: inherit;
  height: inherit;
  line-height: inherit;
  background: none;
  border: 0;
  border-radius: 0;
}

.tbs-steps-small .tbs-steps-item-custom .tbs-steps-item-icon > .tbs-steps-icon {
  font-size: 24px;
  line-height: 24px;
  transform: none;
}

.tbs-steps-vertical {
  display: flex;
  flex-direction: column;
}

.tbs-steps-vertical > .tbs-steps-item {
  display: block;
  flex: 1 0 auto;
  padding-left: 0;
  overflow: visible;
}

.tbs-steps-vertical > .tbs-steps-item .tbs-steps-item-icon {
  float: left;
  margin-right: 16px;
}

.tbs-steps-vertical > .tbs-steps-item .tbs-steps-item-content {
  display: block;
  min-height: 48px;
  overflow: hidden;
}

.tbs-steps-vertical > .tbs-steps-item .tbs-steps-item-title {
  line-height: 32px;
}

.tbs-steps-vertical > .tbs-steps-item .tbs-steps-item-description {
  padding-bottom: 12px;
}

.tbs-steps-vertical > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  position: absolute;
  top: 0;
  left: 15px;
  width: 1px;
  height: 100%;
  padding: 38px 0 6px;
}

.tbs-steps-vertical > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail:after {
  width: 1px;
  height: 100%;
}

.tbs-steps-vertical > .tbs-steps-item:not(:last-child) > .tbs-steps-item-container > .tbs-steps-item-tail {
  display: block;
}

.tbs-steps-vertical > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-content > .tbs-steps-item-title:after {
  display: none;
}

.tbs-steps-vertical.tbs-steps-small .tbs-steps-item-container .tbs-steps-item-tail {
  position: absolute;
  top: 0;
  left: 11px;
  padding: 30px 0 6px;
}

.tbs-steps-vertical.tbs-steps-small .tbs-steps-item-container .tbs-steps-item-title {
  line-height: 24px;
}

.tbs-steps-label-vertical .tbs-steps-item {
  overflow: visible;
}

.tbs-steps-label-vertical .tbs-steps-item-tail {
  margin-left: 58px;
  padding: 3.5px 24px;
}

.tbs-steps-label-vertical .tbs-steps-item-content {
  display: block;
  width: 116px;
  margin-top: 8px;
  text-align: center;
}

.tbs-steps-label-vertical .tbs-steps-item-icon {
  display: inline-block;
  margin-left: 42px;
}

.tbs-steps-label-vertical .tbs-steps-item-title {
  padding-right: 0;
  padding-left: 0;
}

.tbs-steps-label-vertical .tbs-steps-item-title:after {
  display: none;
}

.tbs-steps-label-vertical .tbs-steps-item-subtitle {
  display: block;
  margin-bottom: 4px;
  margin-left: 0;
  line-height: 1.5715;
}

.tbs-steps-label-vertical.tbs-steps-small:not(.tbs-steps-dot) .tbs-steps-item-icon {
  margin-left: 46px;
}

.tbs-steps-dot .tbs-steps-item-title,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-title {
  line-height: 1.5715;
}

.tbs-steps-dot .tbs-steps-item-tail,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-tail {
  top: 2px;
  width: 100%;
  margin: 0 0 0 70px;
  padding: 0;
}

.tbs-steps-dot .tbs-steps-item-tail:after,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-tail:after {
  width: calc(100% - 20px);
  height: 3px;
  margin-left: 12px;
}

.tbs-steps-dot .tbs-steps-item:first-child .tbs-steps-icon-dot,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item:first-child .tbs-steps-icon-dot {
  left: 2px;
}

.tbs-steps-dot .tbs-steps-item-icon,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-icon {
  width: 8px;
  height: 8px;
  margin-left: 67px;
  padding-right: 0;
  line-height: 8px;
  background: transparent;
  border: 0;
}

.tbs-steps-dot .tbs-steps-item-icon .tbs-steps-icon-dot,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-icon .tbs-steps-icon-dot {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  transition: all 0.3s;
}

.tbs-steps-dot .tbs-steps-item-icon .tbs-steps-icon-dot:after,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-icon .tbs-steps-icon-dot:after {
  position: absolute;
  top: -12px;
  left: -26px;
  width: 60px;
  height: 32px;
  background: rgba(0, 0, 0, 0);
  content: "";
}

.tbs-steps-dot .tbs-steps-item-content,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-content {
  width: 140px;
}

.tbs-steps-dot .tbs-steps-item-process .tbs-steps-item-icon,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-process .tbs-steps-item-icon {
  position: relative;
  top: -1px;
  width: 10px;
  height: 10px;
  line-height: 10px;
  background: none;
}

.tbs-steps-dot .tbs-steps-item-process .tbs-steps-icon:first-child .tbs-steps-icon-dot,
.tbs-steps-dot.tbs-steps-small .tbs-steps-item-process .tbs-steps-icon:first-child .tbs-steps-icon-dot {
  left: 0;
}

.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item-icon {
  margin-top: 13px;
  margin-left: 0;
  background: none;
}

.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  top: 6.5px;
  left: -9px;
  margin: 0;
  padding: 22px 0 4px;
}

.tbs-steps-vertical.tbs-steps-dot.tbs-steps-small .tbs-steps-item-icon {
  margin-top: 10px;
}

.tbs-steps-vertical.tbs-steps-dot.tbs-steps-small .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  top: 3.5px;
}

.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item:first-child .tbs-steps-icon-dot {
  left: 0;
}

.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item-content {
  width: inherit;
}

.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item-process .tbs-steps-item-container .tbs-steps-item-icon .tbs-steps-icon-dot {
  top: -1px;
  left: -1px;
}

.tbs-steps-navigation {
  padding-top: 12px;
}

.tbs-steps-navigation.tbs-steps-small .tbs-steps-item-container {
  margin-left: -12px;
}

.tbs-steps-navigation .tbs-steps-item {
  overflow: visible;
  text-align: center;
}

.tbs-steps-navigation .tbs-steps-item-container {
  display: inline-block;
  height: 100%;
  margin-left: -16px;
  padding-bottom: 12px;
  text-align: left;
  transition: opacity 0.3s;
}

.tbs-steps-navigation .tbs-steps-item-container .tbs-steps-item-content {
  max-width: auto;
}

.tbs-steps-navigation .tbs-steps-item-container .tbs-steps-item-title {
  max-width: 100%;
  padding-right: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tbs-steps-navigation .tbs-steps-item-container .tbs-steps-item-title:after {
  display: none;
}

.tbs-steps-navigation .tbs-steps-item:not(.tbs-steps-item-active) .tbs-steps-item-container[role=button] {
  cursor: pointer;
}

.tbs-steps-navigation .tbs-steps-item:not(.tbs-steps-item-active) .tbs-steps-item-container[role=button]:hover {
  opacity: 0.85;
}

.tbs-steps-navigation .tbs-steps-item:last-child {
  flex: 1;
}

.tbs-steps-navigation .tbs-steps-item:last-child:after {
  display: none;
}

.tbs-steps-navigation .tbs-steps-item:after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -14px;
  margin-left: -2px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
  content: "";
}

.tbs-steps-navigation .tbs-steps-item:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: var(--tbs-primary-blue-1000);
  transition: width 0.3s, left 0.3s;
  transition-timing-function: ease-out;
  content: "";
}

.tbs-steps-navigation .tbs-steps-item.tbs-steps-item-active:before {
  left: 0;
  width: 100%;
}

.tbs-steps-navigation.tbs-steps-vertical > .tbs-steps-item {
  margin-right: 0 !important;
}

.tbs-steps-navigation.tbs-steps-vertical > .tbs-steps-item:before {
  display: none;
}

.tbs-steps-navigation.tbs-steps-vertical > .tbs-steps-item.tbs-steps-item-active:before {
  top: 0;
  right: 0;
  left: unset;
  display: block;
  width: 3px;
  height: calc(100% - 24px);
}

.tbs-steps-navigation.tbs-steps-vertical > .tbs-steps-item:after {
  position: relative;
  top: -2px;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 8px;
  text-align: center;
  transform: rotate(135deg);
}

.tbs-steps-navigation.tbs-steps-vertical > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  visibility: hidden;
}

.tbs-steps-navigation.tbs-steps-horizontal > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  visibility: hidden;
}

.tbs-steps-rtl {
  direction: rtl;
}

.tbs-steps.tbs-steps-rtl .tbs-steps-item-icon {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-steps-rtl .tbs-steps-item-tail {
  right: 0;
  left: auto;
}

.tbs-steps-rtl .tbs-steps-item-title {
  padding-right: 0;
  padding-left: 16px;
}

.tbs-steps-rtl .tbs-steps-item-title .tbs-steps-item-subtitle {
  float: left;
  margin-right: 8px;
  margin-left: 0;
}

.tbs-steps-rtl .tbs-steps-item-title:after {
  right: 100%;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item {
  padding-right: 16px;
  padding-left: 0;
}

.tbs-steps-rtl.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item:first-child {
  padding-right: 0;
}

.tbs-steps-rtl.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item:last-child .tbs-steps-item-title {
  padding-left: 0;
}

.tbs-steps-rtl .tbs-steps-item-custom .tbs-steps-item-icon > .tbs-steps-icon {
  right: 0.5px;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-navigation.tbs-steps-small .tbs-steps-item-container {
  margin-right: -12px;
  margin-left: 0;
}

.tbs-steps-rtl.tbs-steps-navigation .tbs-steps-item-container {
  margin-right: -16px;
  margin-left: 0;
  text-align: right;
}

.tbs-steps-rtl.tbs-steps-navigation .tbs-steps-item-container .tbs-steps-item-title {
  padding-left: 0;
}

.tbs-steps-rtl.tbs-steps-navigation .tbs-steps-item:after {
  right: 100%;
  left: auto;
  margin-right: -2px;
  margin-left: 0;
  transform: rotate(225deg);
}

.tbs-steps-rtl.tbs-steps-small.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item {
  padding-right: 12px;
  padding-left: 0;
}

.tbs-steps-rtl.tbs-steps-small.tbs-steps-horizontal:not(.tbs-steps-label-vertical) .tbs-steps-item:first-child {
  padding-right: 0;
}

.tbs-steps-rtl.tbs-steps-small .tbs-steps-item-title {
  padding-right: 0;
  padding-left: 12px;
}

.tbs-steps-rtl.tbs-steps-vertical > .tbs-steps-item .tbs-steps-item-icon {
  float: right;
  margin-right: 0;
  margin-left: 16px;
}

.tbs-steps-rtl.tbs-steps-vertical > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  right: 16px;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-vertical.tbs-steps-small .tbs-steps-item-container .tbs-steps-item-tail {
  right: 12px;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-label-vertical .tbs-steps-item-title {
  padding-left: 0;
}

.tbs-steps-rtl.tbs-steps-dot .tbs-steps-item-tail,
.tbs-steps-rtl.tbs-steps-dot.tbs-steps-small .tbs-steps-item-tail {
  margin: 0 70px 0 0;
}

.tbs-steps-rtl.tbs-steps-dot .tbs-steps-item-tail:after,
.tbs-steps-rtl.tbs-steps-dot.tbs-steps-small .tbs-steps-item-tail:after {
  margin-right: 12px;
  margin-left: 0;
}

.tbs-steps-rtl.tbs-steps-dot .tbs-steps-item:first-child .tbs-steps-icon-dot,
.tbs-steps-rtl.tbs-steps-dot.tbs-steps-small .tbs-steps-item:first-child .tbs-steps-icon-dot {
  right: 2px;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-dot .tbs-steps-item-icon,
.tbs-steps-rtl.tbs-steps-dot.tbs-steps-small .tbs-steps-item-icon {
  margin-right: 67px;
  margin-left: 0;
}

.tbs-steps-rtl.tbs-steps-dot .tbs-steps-item-icon .tbs-steps-icon-dot,
.tbs-steps-rtl.tbs-steps-dot.tbs-steps-small .tbs-steps-item-icon .tbs-steps-icon-dot {
  float: right;
}

.tbs-steps-rtl.tbs-steps-dot .tbs-steps-item-icon .tbs-steps-icon-dot:after,
.tbs-steps-rtl.tbs-steps-dot.tbs-steps-small .tbs-steps-item-icon .tbs-steps-icon-dot:after {
  right: -26px;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item-icon {
  margin-right: 0;
  margin-left: 16px;
}

.tbs-steps-rtl.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  right: -9px;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item:first-child .tbs-steps-icon-dot {
  right: 0;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-vertical.tbs-steps-dot .tbs-steps-item-process .tbs-steps-icon-dot {
  right: -2px;
  left: auto;
}

.tbs-steps-rtl.tbs-steps-with-progress.tbs-steps-vertical > .tbs-steps-item {
  padding-right: 4px;
}

.tbs-steps-rtl.tbs-steps-with-progress.tbs-steps-vertical > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  right: 19px;
}

.tbs-steps-rtl.tbs-steps-with-progress.tbs-steps-small.tbs-steps-vertical > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  right: 15px;
}

.tbs-steps-rtl.tbs-steps-with-progress.tbs-steps-horizontal.tbs-steps-label-horizontal .tbs-steps-item:first-child {
  padding-right: 4px;
  padding-left: 0;
}

.tbs-steps-rtl.tbs-steps-with-progress.tbs-steps-horizontal.tbs-steps-label-horizontal .tbs-steps-item:first-child.tbs-steps-item-active {
  padding-right: 4px;
}

.tbs-steps-with-progress .tbs-steps-item {
  padding-top: 4px;
}

.tbs-steps-with-progress .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  top: 4px;
  left: 19px;
}

.tbs-steps-with-progress.tbs-steps-horizontal .tbs-steps-item:first-child,
.tbs-steps-with-progress.tbs-steps-small.tbs-steps-horizontal .tbs-steps-item:first-child {
  padding-bottom: 4px;
  padding-left: 4px;
}

.tbs-steps-with-progress.tbs-steps-small > .tbs-steps-item > .tbs-steps-item-container > .tbs-steps-item-tail {
  left: 15px;
}

.tbs-steps-with-progress.tbs-steps-vertical .tbs-steps-item {
  padding-left: 4px;
}

.tbs-steps-with-progress.tbs-steps-label-vertical .tbs-steps-item .tbs-steps-item-tail {
  top: 14px !important;
}

.tbs-steps-with-progress .tbs-steps-item-icon {
  position: relative;
}

.tbs-steps-with-progress .tbs-steps-item-icon .tbs-progress {
  position: absolute;
  inset: -5px;
}

.tbs-switch {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  min-width: 44px;
  height: 22px;
  line-height: 22px;
  vertical-align: middle;
  border-radius: 100px;
  background: var(--tbs-neutral-800);
  cursor: pointer;
  transition: all 0.2s;
  -webkit-user-select: none;
          user-select: none;
}
.tbs-switch:focus {
  outline: 0;
}
.tbs-switch:focus:hover {
  box-shadow: none;
}
.tbs-switch-checked.tbs-switch-disabled {
  background: var(--tbs-primary-green-200);
}
.tbs-switch-checked:not(.tbs-switch-disabled) {
  background: var(--tbs-primary-green-1000);
}
.tbs-switch-disabled {
  background: var(--tbs-neutral-600);
  cursor: not-allowed;
}
.tbs-switch-disabled * {
  box-shadow: none;
  cursor: not-allowed;
}
.tbs-switch-inner {
  display: block;
  margin: 0 2px 0 4px;
  transition: margin 0.2s;
}
.tbs-switch-checked .tbs-switch-inner {
  margin: 0 4px 0 2px;
}
.tbs-switch-handle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  transition: all 0.2s ease-in-out;
}
.tbs-switch-handle::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  border-radius: 9px;
  transition: all 0.2s ease-in-out;
  content: "";
}
.tbs-switch-checked .tbs-switch-handle {
  left: calc(100% - 18px - 2px);
}
.tbs-switch:not(.tbs-switch-disabled):active .tbs-switch-handle::before {
  right: -30%;
  left: 0;
}
.tbs-switch:not(.tbs-switch-disabled):active.tbs-switch-checked .tbs-switch-handle::before {
  right: 0;
  left: -30%;
}
.tbs-switch-small {
  min-width: 32px;
  height: 16px;
  line-height: 16px;
}
.tbs-switch-small .tbs-switch-inner {
  margin: 0 2px 0 4px;
  font-size: 12px;
}
.tbs-switch-small .tbs-switch-handle {
  width: 12px;
  height: 12px;
}
.tbs-switch-small.tbs-switch-checked .tbs-switch-inner {
  margin: 0 4px 0 2px;
}
.tbs-switch-small.tbs-switch-checked .tbs-switch-handle {
  left: calc(100% - 12px - 2px);
}

.tbs-badge {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: inline-block;
  line-height: 1;
}

.tbs-badge-count {
  z-index: auto;
  min-width: 20px;
  height: 16px;
  padding: 0 6px;
  color: #fff;
  font: normal 700 11px / 15px "Arimo", sans-serif;
  line-height: 16px;
  white-space: nowrap;
  text-align: center;
  border-radius: 100px;
  box-shadow: 0 0 0 1px #fff;
}

.tbs-badge-count a,
.tbs-badge-count a:hover {
  color: #fff;
}

.tbs-badge-count-sm {
  min-width: 14px;
  height: 14px;
  padding: 0;
  font-size: 12px;
  line-height: 14px;
  border-radius: 7px;
}

.tbs-badge-multiple-words {
  padding: 0 4px;
}

.tbs-badge-dot {
  z-index: auto;
  width: 6px;
  min-width: 6px;
  height: 6px;
  background: #ff4d4f;
  border-radius: 100%;
  box-shadow: 0 0 0 1px #fff;
}

.tbs-badge-dot.tbs-scroll-number {
  transition: background 1.5s;
}

.tbs-badge-count,
.tbs-badge-dot,
.tbs-badge .tbs-scroll-number-custom-component {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transform-origin: 100% 0%;
}

.tbs-badge-count.anticon-spin,
.tbs-badge-dot.anticon-spin,
.tbs-badge .tbs-scroll-number-custom-component.anticon-spin {
  animation: antBadgeLoadingCircle 1s infinite linear;
}

.tbs-badge-status {
  line-height: inherit;
  vertical-align: baseline;
}

.tbs-badge-status-dot {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  border-radius: 50%;
}

.tbs-badge-status-success {
  background-color: var(--tbs-success-color);
}

.tbs-badge-status-processing {
  position: relative;
  background-color: var(--tbs-primary-color);
}

.tbs-badge-status-processing:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tbs-primary-color);
  border-radius: 50%;
  animation: antStatusProcessing 1.2s infinite ease-in-out;
  content: "";
}

.tbs-badge-status-default {
  background-color: var(--tbs-neutral-600);
}

.tbs-badge-status-error {
  background-color: var(--tbs-error-color);
}

.tbs-badge-status-warning {
  background-color: var(--tbs-warning-color);
}

.tbs-badge-status-pink,
.tbs-badge-status-magenta {
  background: #eb2f96;
}

.tbs-badge-status-red {
  background: #f5222d;
}

.tbs-badge-status-volcano {
  background: #fa541c;
}

.tbs-badge-status-orange {
  background: #fa8c16;
}

.tbs-badge-status-yellow {
  background: #fadb14;
}

.tbs-badge-status-gold {
  background: #faad14;
}

.tbs-badge-status-cyan {
  background: #13c2c2;
}

.tbs-badge-status-lime {
  background: #a0d911;
}

.tbs-badge-status-green {
  background: #52c41a;
}

.tbs-badge-status-blue {
  background: #1890ff;
}

.tbs-badge-status-geekblue {
  background: #2f54eb;
}

.tbs-badge-status-purple {
  background: #722ed1;
}

.tbs-badge-status-text {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
}

.tbs-badge-zoom-appear,
.tbs-badge-zoom-enter {
  animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  animation-fill-mode: both;
}

.tbs-badge-zoom-leave {
  animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  animation-fill-mode: both;
}

.tbs-badge-not-a-wrapper .tbs-badge-zoom-appear,
.tbs-badge-not-a-wrapper .tbs-badge-zoom-enter {
  animation: antNoWrapperZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.tbs-badge-not-a-wrapper .tbs-badge-zoom-leave {
  animation: antNoWrapperZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
}

.tbs-badge-not-a-wrapper:not(.tbs-badge-status) {
  vertical-align: middle;
}

.tbs-badge-not-a-wrapper .tbs-scroll-number-custom-component,
.tbs-badge-not-a-wrapper .tbs-badge-count {
  transform: none;
}

.tbs-badge-not-a-wrapper .tbs-scroll-number-custom-component,
.tbs-badge-not-a-wrapper .tbs-scroll-number {
  position: relative;
  top: auto;
  display: block;
  transform-origin: 50% 50%;
}

@keyframes antStatusProcessing {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  to {
    transform: scale(2.4);
    opacity: 0;
  }
}
.tbs-scroll-number {
  overflow: hidden;
  direction: ltr;
}

.tbs-scroll-number-only {
  position: relative;
  display: inline-block;
  height: 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.tbs-scroll-number-only > p.tbs-scroll-number-only-unit {
  height: 20px;
  margin: 0;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.tbs-scroll-number-symbol {
  vertical-align: top;
}

@keyframes antZoomBadgeIn {
  0% {
    transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
  to {
    transform: scale(1) translate(50%, -50%);
  }
}
@keyframes antZoomBadgeOut {
  0% {
    transform: scale(1) translate(50%, -50%);
  }
  to {
    transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
}
@keyframes antNoWrapperZoomBadgeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
  }
}
@keyframes antNoWrapperZoomBadgeOut {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes antBadgeLoadingCircle {
  0% {
    transform-origin: 50%;
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
    transform-origin: 50%;
  }
}
html {
  --tbs-primary-color: #1890ff;
  --tbs-primary-color-hover: #40a9ff;
  --tbs-primary-color-active: #096dd9;
  --tbs-primary-color-outline: rgba(24, 144, 255, 0.2);
  --tbs-primary-1: #e6f7ff;
  --tbs-primary-2: #bae7ff;
  --tbs-primary-3: #91d5ff;
  --tbs-primary-4: #69c0ff;
  --tbs-primary-5: #40a9ff;
  --tbs-primary-6: #1890ff;
  --tbs-primary-7: #096dd9;
  --tbs-primary-color-deprecated-pure: ;
  --tbs-primary-blue-200: #cbe6ff;
  --tbs-primary-blue-100: #7ec1ff;
  --tbs-primary-color-deprecated-t-20: #46a6ff;
  --tbs-primary-color-deprecated-t-50: #8cc8ff;
  --tbs-primary-color-deprecated-f-12: rgba(24, 144, 255, 0.12);
  --tbs-primary-color-active-deprecated-f-30: rgba(230, 247, 255, 0.3);
  --tbs-primary-color-active-deprecated-d-02: #dcf4ff;
  --tbs-success-color: #52c41a;
  --tbs-success-color-hover: #73d13d;
  --tbs-success-color-active: #389e0d;
  --tbs-success-color-outline: rgba(82, 196, 26, 0.2);
  --tbs-success-color-deprecated-bg: #f6ffed;
  --tbs-success-color-deprecated-border: #b7eb8f;
  --tbs-error-color: #ff4d4f;
  --tbs-error-color-hover: #ff7875;
  --tbs-error-color-active: #d9363e;
  --tbs-error-color-outline: rgba(255, 77, 79, 0.2);
  --tbs-error-color-deprecated-bg: #fff2f0;
  --tbs-error-color-deprecated-border: #ffccc7;
  --tbs-warning-color: #faad14;
  --tbs-warning-color-hover: #ffc53d;
  --tbs-warning-color-active: #d48806;
  --tbs-warning-color-outline: rgba(250, 173, 20, 0.2);
  --tbs-warning-color-deprecated-bg: #fffbe6;
  --tbs-warning-color-deprecated-border: #ffe58f;
  --tbs-info-color: #1890ff;
  --tbs-info-color-deprecated-bg: #e6f7ff;
  --tbs-info-color-deprecated-border: #91d5ff;
}

[class^=tbs-]::-ms-clear,
[class*=tbs-]::-ms-clear,
[class^=tbs-] input::-ms-clear,
[class*=tbs-] input::-ms-clear,
[class^=tbs-] input::-ms-reveal,
[class*=tbs-] input::-ms-reveal {
  display: none;
}

html,
body {
  width: 100%;
  height: 100%;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  color: var(--tbs-neutral-1400);
}

.anticon {
  display: inline-flex;
  align-items: center;
  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;
  -moz-osx-font-smoothing: grayscale;
}

.anticon > * {
  line-height: 1;
}

.anticon svg {
  display: inline-block;
}

.anticon:before {
  display: none;
}

.anticon .anticon-icon {
  display: block;
}

.anticon > .anticon {
  line-height: 0;
  vertical-align: 0;
}

.anticon[tabindex] {
  cursor: pointer;
}

.anticon-spin,
.anticon-spin:before {
  display: inline-block;
  animation: loadingCircle 1s infinite linear;
}

.tbs-fade-enter,
.tbs-fade-appear,
.tbs-fade-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-fade-enter.tbs-fade-enter-active,
.tbs-fade-appear.tbs-fade-appear-active {
  animation-name: antFadeIn;
  animation-play-state: running;
}

.tbs-fade-leave.tbs-fade-leave-active {
  animation-name: antFadeOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-fade-enter,
.tbs-fade-appear {
  opacity: 0;
  animation-timing-function: linear;
}

.tbs-fade-leave {
  animation-timing-function: linear;
}

@keyframes antFadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes antFadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.tbs-move-up-enter,
.tbs-move-up-appear,
.tbs-move-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-move-up-enter.tbs-move-up-enter-active,
.tbs-move-up-appear.tbs-move-up-appear-active {
  animation-name: antMoveUpIn;
  animation-play-state: running;
}

.tbs-move-up-leave.tbs-move-up-leave-active {
  animation-name: antMoveUpOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-move-up-enter,
.tbs-move-up-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-move-up-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}

.tbs-move-down-enter,
.tbs-move-down-appear,
.tbs-move-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-move-down-enter.tbs-move-down-enter-active,
.tbs-move-down-appear.tbs-move-down-appear-active {
  animation-name: antMoveDownIn;
  animation-play-state: running;
}

.tbs-move-down-leave.tbs-move-down-leave-active {
  animation-name: antMoveDownOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-move-down-enter,
.tbs-move-down-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-move-down-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}

.tbs-move-left-enter,
.tbs-move-left-appear,
.tbs-move-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-move-left-enter.tbs-move-left-enter-active,
.tbs-move-left-appear.tbs-move-left-appear-active {
  animation-name: antMoveLeftIn;
  animation-play-state: running;
}

.tbs-move-left-leave.tbs-move-left-leave-active {
  animation-name: antMoveLeftOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-move-left-enter,
.tbs-move-left-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-move-left-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}

.tbs-move-right-enter,
.tbs-move-right-appear,
.tbs-move-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-move-right-enter.tbs-move-right-enter-active,
.tbs-move-right-appear.tbs-move-right-appear-active {
  animation-name: antMoveRightIn;
  animation-play-state: running;
}

.tbs-move-right-leave.tbs-move-right-leave-active {
  animation-name: antMoveRightOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-move-right-enter,
.tbs-move-right-appear {
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-move-right-leave {
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
}

@keyframes antMoveDownIn {
  0% {
    transform: translateY(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  to {
    transform: translateY(0);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveDownOut {
  0% {
    transform: translateY(0);
    transform-origin: 0 0;
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveLeftIn {
  0% {
    transform: translate(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  to {
    transform: translate(0);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveLeftOut {
  0% {
    transform: translate(0);
    transform-origin: 0 0;
    opacity: 1;
  }
  to {
    transform: translate(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveRightIn {
  0% {
    transform: translate(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  to {
    transform: translate(0);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveRightOut {
  0% {
    transform: translate(0);
    transform-origin: 0 0;
    opacity: 1;
  }
  to {
    transform: translate(100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antMoveUpIn {
  0% {
    transform: translateY(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
  to {
    transform: translateY(0);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antMoveUpOut {
  0% {
    transform: translateY(0);
    transform-origin: 0 0;
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes loadingCircle {
  to {
    transform: rotate(360deg);
  }
}
[tbs-click-animating=true],
[tbs-click-animating-without-extra-node=true] {
  position: relative;
}

html {
  --antd-wave-shadow-color: var(--tbs-primary-blue-1000);
  --scroll-bar: 0;
}

[tbs-click-animating-without-extra-node=true]:after,
.tbs-click-animating-node {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--tbs-primary-color);
  box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
  opacity: 0.2;
  animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-fill-mode: forwards;
  content: "";
  pointer-events: none;
}

@keyframes waveEffect {
  to {
    box-shadow: 0 0 0 var(--tbs-primary-color);
    box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
  }
}
@keyframes fadeEffect {
  to {
    opacity: 0;
  }
}
.tbs-slide-up-enter,
.tbs-slide-up-appear,
.tbs-slide-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-slide-up-enter.tbs-slide-up-enter-active,
.tbs-slide-up-appear.tbs-slide-up-appear-active {
  animation-name: antSlideUpIn;
  animation-play-state: running;
}

.tbs-slide-up-leave.tbs-slide-up-leave-active {
  animation-name: antSlideUpOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-slide-up-enter,
.tbs-slide-up-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.tbs-slide-up-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.tbs-slide-down-enter,
.tbs-slide-down-appear,
.tbs-slide-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-slide-down-enter.tbs-slide-down-enter-active,
.tbs-slide-down-appear.tbs-slide-down-appear-active {
  animation-name: antSlideDownIn;
  animation-play-state: running;
}

.tbs-slide-down-leave.tbs-slide-down-leave-active {
  animation-name: antSlideDownOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-slide-down-enter,
.tbs-slide-down-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.tbs-slide-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.tbs-slide-left-enter,
.tbs-slide-left-appear,
.tbs-slide-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-slide-left-enter.tbs-slide-left-enter-active,
.tbs-slide-left-appear.tbs-slide-left-appear-active {
  animation-name: antSlideLeftIn;
  animation-play-state: running;
}

.tbs-slide-left-leave.tbs-slide-left-leave-active {
  animation-name: antSlideLeftOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-slide-left-enter,
.tbs-slide-left-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.tbs-slide-left-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.tbs-slide-right-enter,
.tbs-slide-right-appear,
.tbs-slide-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-slide-right-enter.tbs-slide-right-enter-active,
.tbs-slide-right-appear.tbs-slide-right-appear-active {
  animation-name: antSlideRightIn;
  animation-play-state: running;
}

.tbs-slide-right-leave.tbs-slide-right-leave-active {
  animation-name: antSlideRightOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-slide-right-enter,
.tbs-slide-right-appear {
  transform: scale(0);
  transform-origin: 0% 0%;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.tbs-slide-right-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  to {
    transform: scaleY(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  to {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
}
@keyframes antSlideLeftIn {
  0% {
    transform: scaleX(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antSlideLeftOut {
  0% {
    transform: scaleX(1);
    transform-origin: 0% 0%;
    opacity: 1;
  }
  to {
    transform: scaleX(0.8);
    transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antSlideRightIn {
  0% {
    transform: scaleX(0.8);
    transform-origin: 100% 0%;
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    transform-origin: 100% 0%;
    opacity: 1;
  }
}
@keyframes antSlideRightOut {
  0% {
    transform: scaleX(1);
    transform-origin: 100% 0%;
    opacity: 1;
  }
  to {
    transform: scaleX(0.8);
    transform-origin: 100% 0%;
    opacity: 0;
  }
}
.tbs-zoom-enter,
.tbs-zoom-appear,
.tbs-zoom-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-zoom-enter.tbs-zoom-enter-active,
.tbs-zoom-appear.tbs-zoom-appear-active {
  animation-name: antZoomIn;
  animation-play-state: running;
}

.tbs-zoom-leave.tbs-zoom-leave-active {
  animation-name: antZoomOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-zoom-enter,
.tbs-zoom-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-zoom-enter-prepare,
.tbs-zoom-appear-prepare {
  transform: none;
}

.tbs-zoom-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-zoom-big-enter,
.tbs-zoom-big-appear,
.tbs-zoom-big-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-zoom-big-enter.tbs-zoom-big-enter-active,
.tbs-zoom-big-appear.tbs-zoom-big-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}

.tbs-zoom-big-leave.tbs-zoom-big-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-zoom-big-enter,
.tbs-zoom-big-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-zoom-big-enter-prepare,
.tbs-zoom-big-appear-prepare {
  transform: none;
}

.tbs-zoom-big-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-zoom-big-fast-enter,
.tbs-zoom-big-fast-appear,
.tbs-zoom-big-fast-leave {
  animation-duration: 0.1s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-zoom-big-fast-enter.tbs-zoom-big-fast-enter-active,
.tbs-zoom-big-fast-appear.tbs-zoom-big-fast-appear-active {
  animation-name: antZoomBigIn;
  animation-play-state: running;
}

.tbs-zoom-big-fast-leave.tbs-zoom-big-fast-leave-active {
  animation-name: antZoomBigOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-zoom-big-fast-enter,
.tbs-zoom-big-fast-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-zoom-big-fast-enter-prepare,
.tbs-zoom-big-fast-appear-prepare {
  transform: none;
}

.tbs-zoom-big-fast-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-zoom-up-enter,
.tbs-zoom-up-appear,
.tbs-zoom-up-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-zoom-up-enter.tbs-zoom-up-enter-active,
.tbs-zoom-up-appear.tbs-zoom-up-appear-active {
  animation-name: antZoomUpIn;
  animation-play-state: running;
}

.tbs-zoom-up-leave.tbs-zoom-up-leave-active {
  animation-name: antZoomUpOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-zoom-up-enter,
.tbs-zoom-up-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-zoom-up-enter-prepare,
.tbs-zoom-up-appear-prepare {
  transform: none;
}

.tbs-zoom-up-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-zoom-down-enter,
.tbs-zoom-down-appear,
.tbs-zoom-down-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-zoom-down-enter.tbs-zoom-down-enter-active,
.tbs-zoom-down-appear.tbs-zoom-down-appear-active {
  animation-name: antZoomDownIn;
  animation-play-state: running;
}

.tbs-zoom-down-leave.tbs-zoom-down-leave-active {
  animation-name: antZoomDownOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-zoom-down-enter,
.tbs-zoom-down-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-zoom-down-enter-prepare,
.tbs-zoom-down-appear-prepare {
  transform: none;
}

.tbs-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-zoom-left-enter,
.tbs-zoom-left-appear,
.tbs-zoom-left-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-zoom-left-enter.tbs-zoom-left-enter-active,
.tbs-zoom-left-appear.tbs-zoom-left-appear-active {
  animation-name: antZoomLeftIn;
  animation-play-state: running;
}

.tbs-zoom-left-leave.tbs-zoom-left-leave-active {
  animation-name: antZoomLeftOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-zoom-left-enter,
.tbs-zoom-left-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-zoom-left-enter-prepare,
.tbs-zoom-left-appear-prepare {
  transform: none;
}

.tbs-zoom-left-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-zoom-right-enter,
.tbs-zoom-right-appear,
.tbs-zoom-right-leave {
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.tbs-zoom-right-enter.tbs-zoom-right-enter-active,
.tbs-zoom-right-appear.tbs-zoom-right-appear-active {
  animation-name: antZoomRightIn;
  animation-play-state: running;
}

.tbs-zoom-right-leave.tbs-zoom-right-leave-active {
  animation-name: antZoomRightOut;
  animation-play-state: running;
  pointer-events: none;
}

.tbs-zoom-right-enter,
.tbs-zoom-right-appear {
  transform: scale(0);
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
}

.tbs-zoom-right-enter-prepare,
.tbs-zoom-right-appear-prepare {
  transform: none;
}

.tbs-zoom-right-leave {
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

@keyframes antZoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomOut {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(0.2);
    opacity: 0;
  }
}
@keyframes antZoomBigIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes antZoomBigOut {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes antZoomUpIn {
  0% {
    transform: scale(0.8);
    transform-origin: 50% 0%;
    opacity: 0;
  }
  to {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
}
@keyframes antZoomUpOut {
  0% {
    transform: scale(1);
    transform-origin: 50% 0%;
  }
  to {
    transform: scale(0.8);
    transform-origin: 50% 0%;
    opacity: 0;
  }
}
@keyframes antZoomLeftIn {
  0% {
    transform: scale(0.8);
    transform-origin: 0% 50%;
    opacity: 0;
  }
  to {
    transform: scale(1);
    transform-origin: 0% 50%;
  }
}
@keyframes antZoomLeftOut {
  0% {
    transform: scale(1);
    transform-origin: 0% 50%;
  }
  to {
    transform: scale(0.8);
    transform-origin: 0% 50%;
    opacity: 0;
  }
}
@keyframes antZoomRightIn {
  0% {
    transform: scale(0.8);
    transform-origin: 100% 50%;
    opacity: 0;
  }
  to {
    transform: scale(1);
    transform-origin: 100% 50%;
  }
}
@keyframes antZoomRightOut {
  0% {
    transform: scale(1);
    transform-origin: 100% 50%;
  }
  to {
    transform: scale(0.8);
    transform-origin: 100% 50%;
    opacity: 0;
  }
}
@keyframes antZoomDownIn {
  0% {
    transform: scale(0.8);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  to {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
}
@keyframes antZoomDownOut {
  0% {
    transform: scale(1);
    transform-origin: 50% 100%;
  }
  to {
    transform: scale(0.8);
    transform-origin: 50% 100%;
    opacity: 0;
  }
}
.tbs-motion-collapse-legacy {
  overflow: hidden;
}

.tbs-motion-collapse-legacy-active {
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.tbs-motion-collapse {
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}

.cdk-overlay-container:empty {
  display: none;
}

.cdk-global-overlay-wrapper {
  position: absolute;
  z-index: 1000;
  display: flex;
}

.cdk-overlay-pane {
  position: absolute;
  z-index: 1000;
  display: flex;
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
  pointer-events: auto;
}

.cdk-overlay-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}

.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}

.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.3215686275);
}

.cdk-overlay-transparent-backdrop {
  visibility: hidden;
  opacity: 1;
  transition: visibility 1ms linear, opacity 1ms linear;
}

.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  visibility: visible;
  opacity: 0;
}

.cdk-overlay-backdrop-noop-animation {
  transition: none;
}

.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}

.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.cdk-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tbs-overlay-transparent-backdrop,
.tbs-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
}

.tbs-animate-disabled.tbs-scroll-number-only,
.tbs-animate-disabled.tbs-drawer.tbs-drawer-open .tbs-drawer-mask {
  transition: none;
  animation: none;
}

.tbs-animate-disabled.tbs-drawer > * {
  transition: none;
}

.tbs-animate-disabled .tbs-modal-mask,
.tbs-animate-disabled .tbs-modal,
.tbs-animate-disabled .tbs-modal-mask.zoom-enter,
.tbs-animate-disabled .tbs-modal.zoom-enter,
.tbs-animate-disabled .tbs-modal-mask.zoom-leave,
.tbs-animate-disabled .tbs-modal.zoom-leave,
.tbs-animate-disabled .tbs-modal-mask.zoom-enter-active,
.tbs-animate-disabled .tbs-modal.zoom-enter-active,
.tbs-animate-disabled .tbs-modal-mask.zoom-leave-active,
.tbs-animate-disabled .tbs-modal.zoom-leave-active {
  transition: none;
  animation: none;
}

.tbs-animate-disabled.tbs-menu,
.tbs-animate-disabled.tbs-menu .tbs-menu-item,
.tbs-animate-disabled.tbs-menu .tbs-menu-submenu-title,
.tbs-animate-disabled.tbs-menu .tbs-menu-item .anticon,
.tbs-animate-disabled.tbs-menu .tbs-menu-submenu-title .anticon {
  transition: none;
}

.tbs-animate-disabled.tbs-menu .tbs-menu-item .anticon + span,
.tbs-animate-disabled.tbs-menu .tbs-menu-submenu-title .anticon + span {
  transition: none;
}

.tbs-animate-disabled.tbs-tabs .tbs-tabs-top-content.tbs-tabs-content-animated,
.tbs-animate-disabled.tbs-tabs .tbs-tabs-bottom-content.tbs-tabs-content-animated,
.tbs-animate-disabled.tbs-tabs .tbs-tabs-top-content > .tbs-tabs-tabpane,
.tbs-animate-disabled.tbs-tabs .tbs-tabs-bottom-content > .tbs-tabs-tabpane,
.tbs-animate-disabled.tbs-tabs.tbs-tabs-left .tbs-tabs-ink-bar-animated,
.tbs-animate-disabled.tbs-tabs.tbs-tabs-right .tbs-tabs-ink-bar-animated,
.tbs-animate-disabled.tbs-tabs.tbs-tabs-top .tbs-tabs-ink-bar-animated,
.tbs-animate-disabled.tbs-tabs.tbs-tabs-bottom .tbs-tabs-ink-bar-animated {
  transition: none;
}

.tbs-affix {
  position: fixed;
  z-index: 10;
}

tbs-affix {
  display: block;
}

.tbs-alert {
  box-sizing: border-box;
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  word-wrap: break-word;
  border-radius: 2px;
}

.tbs-alert-content {
  flex: 1;
  min-width: 0;
}

.tbs-alert-icon {
  margin-right: 8px;
}

.tbs-alert-description {
  display: none;
  font-size: 14px;
  line-height: 22px;
}

.tbs-alert-success {
  background-color: var(--tbs-success-color-deprecated-bg);
  border: 1px solid var(--tbs-success-color-deprecated-border);
}

.tbs-alert-success .tbs-alert-icon {
  color: var(--tbs-success-color);
}

.tbs-alert-info {
  background-color: var(--tbs-info-color-deprecated-bg);
  border: 1px solid var(--tbs-info-color-deprecated-border);
}

.tbs-alert-info .tbs-alert-icon {
  color: var(--tbs-info-color);
}

.tbs-alert-warning {
  background-color: var(--tbs-warning-color-deprecated-bg);
  border: 1px solid var(--tbs-warning-color-deprecated-border);
}

.tbs-alert-warning .tbs-alert-icon {
  color: var(--tbs-warning-color);
}

.tbs-alert-error {
  background-color: var(--tbs-error-color-deprecated-bg);
  border: 1px solid var(--tbs-error-color-deprecated-border);
}

.tbs-alert-error .tbs-alert-icon {
  color: var(--tbs-error-color);
}

.tbs-alert-error .tbs-alert-description > pre {
  margin: 0;
  padding: 0;
}

.tbs-alert-action {
  margin-left: 8px;
}

.tbs-alert-close-icon {
  margin-left: 8px;
  padding: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 12px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.tbs-alert-close-icon .anticon-close {
  color: rgba(0, 0, 0, 0.4509803922);
  transition: color 0.3s;
}

.tbs-alert-close-icon .anticon-close:hover {
  color: rgba(0, 0, 0, 0.7490196078);
}

.tbs-alert-close-text {
  color: rgba(0, 0, 0, 0.4509803922);
  transition: color 0.3s;
}

.tbs-alert-close-text:hover {
  color: rgba(0, 0, 0, 0.7490196078);
}

.tbs-alert-with-description {
  align-items: flex-start;
  padding: 15px 15px 15px 24px;
}

.tbs-alert-with-description.tbs-alert-no-icon {
  padding: 15px;
}

.tbs-alert-with-description .tbs-alert-icon {
  margin-right: 15px;
  font-size: 24px;
}

.tbs-alert-with-description .tbs-alert-message {
  display: block;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 16px;
}

.tbs-alert-message {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-alert-with-description .tbs-alert-description {
  display: block;
}

.tbs-alert.tbs-alert-motion-leave {
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-top 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), padding-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), margin-bottom 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-alert.tbs-alert-motion-leave-active {
  max-height: 0;
  margin-bottom: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.tbs-alert-banner {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}

.tbs-alert.tbs-alert-rtl {
  direction: rtl;
}

.tbs-alert-rtl .tbs-alert-icon {
  margin-right: auto;
  margin-left: 8px;
}

.tbs-alert-rtl .tbs-alert-action,
.tbs-alert-rtl .tbs-alert-close-icon {
  margin-right: 8px;
  margin-left: auto;
}

.tbs-alert-rtl.tbs-alert-with-description {
  padding-right: 24px;
  padding-left: 15px;
}

.tbs-alert-rtl.tbs-alert-with-description .tbs-alert-icon {
  margin-right: auto;
  margin-left: 15px;
}

tbs-alert {
  display: block;
}

.tbs-alert-icon {
  line-height: 1;
}

.tbs-anchor {
  box-sizing: border-box;
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  padding: 0 0 0 2px;
}

.tbs-anchor-wrapper {
  margin-left: -4px;
  padding-left: 4px;
  overflow: auto;
  background-color: transparent;
}

.tbs-anchor-ink {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.tbs-anchor-ink:before {
  position: relative;
  display: block;
  width: 2px;
  height: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.0588235294);
  content: " ";
}

.tbs-anchor-ink-ball {
  position: absolute;
  left: 50%;
  display: none;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border: 2px solid var(--tbs-primary-color);
  border-radius: 8px;
  transform: translate(-50%);
  transition: top 0.3s ease-in-out;
}

.tbs-anchor-ink-ball.tbs-anchor-ink-ball-visible {
  display: inline-block;
}

.tbs-anchor-fixed .tbs-anchor-ink .tbs-anchor-ink-ball {
  display: none;
}

.tbs-anchor-link {
  padding: 4px 0 4px 16px;
}

.tbs-anchor-link-title {
  position: relative;
  display: block;
  margin-bottom: 3px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}

.tbs-anchor-link-title:only-child {
  margin-bottom: 0;
}

.tbs-anchor-link-active > .tbs-anchor-link-title {
  color: var(--tbs-primary-color);
}

.tbs-anchor-link .tbs-anchor-link {
  padding-top: 2px;
  padding-bottom: 2px;
}

.tbs-anchor-rtl {
  direction: rtl;
}

.tbs-anchor-rtl.tbs-anchor-wrapper {
  margin-right: -4px;
  margin-left: 0;
  padding-right: 4px;
  padding-left: 0;
}

.tbs-anchor-rtl .tbs-anchor-ink {
  right: 0;
  left: auto;
}

.tbs-anchor-rtl .tbs-anchor-ink-ball {
  right: 50%;
  left: 0;
  transform: translate(50%);
}

.tbs-anchor-rtl .tbs-anchor-link {
  padding: 4px 16px 4px 0;
}

tbs-link {
  display: block;
}

.tbs-anchor-wrapper-horizontal {
  margin-left: unset;
  padding-left: unset;
  margin-bottom: -4px;
  padding-bottom: 4px;
}

.tbs-anchor-wrapper-horizontal .tbs-anchor {
  display: flex;
}

.tbs-anchor-wrapper-horizontal .tbs-anchor-ink {
  top: unset;
  bottom: 0;
  width: 100%;
  height: unset;
}

.tbs-anchor-wrapper-horizontal .tbs-anchor-ink:before {
  width: 100%;
  height: 2px;
}

.tbs-anchor-wrapper-horizontal .tbs-anchor-ink-ball {
  transform: translate(-50%, -50%);
}

.tbs-anchor-wrapper-horizontal .tbs-anchor-link:first-of-type {
  padding-inline: 0;
}

.tbs-back-top {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: fixed;
  right: 100px;
  bottom: 50px;
  z-index: 10;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.tbs-back-top:empty {
  display: none;
}

.tbs-back-top-rtl {
  right: auto;
  left: 100px;
  direction: rtl;
}

.tbs-back-top-content {
  width: 40px;
  height: 40px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4509803922);
  border-radius: 20px;
  transition: all 0.3s;
}

.tbs-back-top-content:hover {
  background-color: rgba(0, 0, 0, 0.8509803922);
  transition: all 0.3s;
}

.tbs-back-top-icon {
  font-size: 24px;
  line-height: 40px;
}

@media screen and (max-width: 768px) {
  .tbs-back-top {
    right: 60px;
  }
  .tbs-back-top-rtl {
    right: auto;
    left: 60px;
  }
}
@media screen and (max-width: 480px) {
  .tbs-back-top {
    right: 20px;
  }
  .tbs-back-top-rtl {
    right: auto;
    left: 20px;
  }
}
.tbs-btn {
  line-height: 1.5715;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid transparent;
  box-shadow: 0 2px rgba(0, 0, 0, 0.0156862745);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  height: 32px;
  padding: 4px 15px;
  font-size: 14px;
  border-radius: 2px;
  color: rgba(0, 0, 0, 0.8509803922);
  border-color: var(--tbs-neutral-600);
  background: #fff;
}

.tbs-btn > .anticon {
  line-height: 1;
}

.tbs-btn,
.tbs-btn:active,
.tbs-btn:focus {
  outline: 0;
}

.tbs-btn:not([disabled]):hover {
  text-decoration: none;
}

.tbs-btn:not([disabled]):active {
  outline: 0;
  box-shadow: none;
}

.tbs-btn[disabled] {
  cursor: not-allowed;
}

.tbs-btn[disabled] > * {
  pointer-events: none;
}

.tbs-btn-lg {
  height: 40px;
  padding: 6.4px 15px;
  font-size: 16px;
  border-radius: 2px;
}

.tbs-btn-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 2px;
}

.tbs-btn > a:only-child {
  color: currentcolor;
}

.tbs-btn > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn:hover,
.tbs-btn:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: #fff;
}

.tbs-btn:hover > a:only-child,
.tbs-btn:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn:hover > a:only-child:after,
.tbs-btn:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: #fff;
}

.tbs-btn:active > a:only-child {
  color: currentcolor;
}

.tbs-btn:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn[disabled],
.tbs-btn[disabled]:hover,
.tbs-btn[disabled]:focus,
.tbs-btn[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn[disabled] > a:only-child,
.tbs-btn[disabled]:hover > a:only-child,
.tbs-btn[disabled]:focus > a:only-child,
.tbs-btn[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn[disabled] > a:only-child:after,
.tbs-btn[disabled]:hover > a:only-child:after,
.tbs-btn[disabled]:focus > a:only-child:after,
.tbs-btn[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn:hover,
.tbs-btn:focus,
.tbs-btn:active {
  text-decoration: none;
  background: #fff;
}

.tbs-btn > span {
  display: inline-block;
}

.tbs-btn-primary {
  color: #fff;
  border-color: var(--tbs-primary-color);
  background: var(--tbs-primary-color);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px rgba(0, 0, 0, 0.0431372549);
}

.tbs-btn-primary > a:only-child {
  color: currentcolor;
}

.tbs-btn-primary > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-primary:hover,
.tbs-btn-primary:focus {
  color: #fff;
  border-color: var(--tbs-primary-color-hover);
  background: var(--tbs-primary-color-hover);
}

.tbs-btn-primary:hover > a:only-child,
.tbs-btn-primary:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-primary:hover > a:only-child:after,
.tbs-btn-primary:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-primary:active {
  color: #fff;
  border-color: var(--tbs-primary-color-active);
  background: var(--tbs-primary-color-active);
}

.tbs-btn-primary:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-primary:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-primary[disabled],
.tbs-btn-primary[disabled]:hover,
.tbs-btn-primary[disabled]:focus,
.tbs-btn-primary[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-primary[disabled] > a:only-child,
.tbs-btn-primary[disabled]:hover > a:only-child,
.tbs-btn-primary[disabled]:focus > a:only-child,
.tbs-btn-primary[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-primary[disabled] > a:only-child:after,
.tbs-btn-primary[disabled]:hover > a:only-child:after,
.tbs-btn-primary[disabled]:focus > a:only-child:after,
.tbs-btn-primary[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-group .tbs-btn-primary:not(:first-child):not(:last-child) {
  border-right-color: var(--tbs-primary-5);
  border-left-color: var(--tbs-primary-5);
}

.tbs-btn-group .tbs-btn-primary:not(:first-child):not(:last-child):disabled {
  border-color: var(--tbs-neutral-600);
}

.tbs-btn-group .tbs-btn-primary:first-child:not(:last-child) {
  border-right-color: var(--tbs-primary-5);
}

.tbs-btn-group .tbs-btn-primary:first-child:not(:last-child)[disabled] {
  border-right-color: var(--tbs-neutral-600);
}

.tbs-btn-group .tbs-btn-primary:last-child:not(:first-child),
.tbs-btn-group .tbs-btn-primary + .tbs-btn-primary {
  border-left-color: var(--tbs-primary-5);
}

.tbs-btn-group .tbs-btn-primary:last-child:not(:first-child)[disabled],
.tbs-btn-group .tbs-btn-primary + .tbs-btn-primary[disabled] {
  border-left-color: var(--tbs-neutral-600);
}

.tbs-btn-ghost {
  color: rgba(0, 0, 0, 0.8509803922);
  border-color: var(--tbs-neutral-600);
  background: transparent;
}

.tbs-btn-ghost > a:only-child {
  color: currentcolor;
}

.tbs-btn-ghost > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-ghost:hover,
.tbs-btn-ghost:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: transparent;
}

.tbs-btn-ghost:hover > a:only-child,
.tbs-btn-ghost:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-ghost:hover > a:only-child:after,
.tbs-btn-ghost:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-ghost:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: transparent;
}

.tbs-btn-ghost:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-ghost:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-ghost[disabled],
.tbs-btn-ghost[disabled]:hover,
.tbs-btn-ghost[disabled]:focus,
.tbs-btn-ghost[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-ghost[disabled] > a:only-child,
.tbs-btn-ghost[disabled]:hover > a:only-child,
.tbs-btn-ghost[disabled]:focus > a:only-child,
.tbs-btn-ghost[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-ghost[disabled] > a:only-child:after,
.tbs-btn-ghost[disabled]:hover > a:only-child:after,
.tbs-btn-ghost[disabled]:focus > a:only-child:after,
.tbs-btn-ghost[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dashed {
  color: rgba(0, 0, 0, 0.8509803922);
  border-color: var(--tbs-neutral-600);
  background: #fff;
  border-style: dashed;
}

.tbs-btn-dashed > a:only-child {
  color: currentcolor;
}

.tbs-btn-dashed > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dashed:hover,
.tbs-btn-dashed:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: #fff;
}

.tbs-btn-dashed:hover > a:only-child,
.tbs-btn-dashed:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-dashed:hover > a:only-child:after,
.tbs-btn-dashed:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dashed:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: #fff;
}

.tbs-btn-dashed:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dashed:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dashed[disabled],
.tbs-btn-dashed[disabled]:hover,
.tbs-btn-dashed[disabled]:focus,
.tbs-btn-dashed[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-dashed[disabled] > a:only-child,
.tbs-btn-dashed[disabled]:hover > a:only-child,
.tbs-btn-dashed[disabled]:focus > a:only-child,
.tbs-btn-dashed[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dashed[disabled] > a:only-child:after,
.tbs-btn-dashed[disabled]:hover > a:only-child:after,
.tbs-btn-dashed[disabled]:focus > a:only-child:after,
.tbs-btn-dashed[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-danger {
  color: #fff;
  border-color: var(--tbs-error-color);
  background: var(--tbs-error-color);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px rgba(0, 0, 0, 0.0431372549);
}

.tbs-btn-danger > a:only-child {
  color: currentcolor;
}

.tbs-btn-danger > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-danger:hover,
.tbs-btn-danger:focus {
  color: #fff;
  border-color: var(--tbs-error-color-hover);
  background: var(--tbs-error-color-hover);
}

.tbs-btn-danger:hover > a:only-child,
.tbs-btn-danger:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-danger:hover > a:only-child:after,
.tbs-btn-danger:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-danger:active {
  color: #fff;
  border-color: var(--tbs-error-color-active);
  background: var(--tbs-error-color-active);
}

.tbs-btn-danger:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-danger:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-danger[disabled],
.tbs-btn-danger[disabled]:hover,
.tbs-btn-danger[disabled]:focus,
.tbs-btn-danger[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-danger[disabled] > a:only-child,
.tbs-btn-danger[disabled]:hover > a:only-child,
.tbs-btn-danger[disabled]:focus > a:only-child,
.tbs-btn-danger[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-danger[disabled] > a:only-child:after,
.tbs-btn-danger[disabled]:hover > a:only-child:after,
.tbs-btn-danger[disabled]:focus > a:only-child:after,
.tbs-btn-danger[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-link {
  color: var(--tbs-primary-color);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.tbs-btn-link > a:only-child {
  color: currentcolor;
}

.tbs-btn-link > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-link:hover,
.tbs-btn-link:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: transparent;
}

.tbs-btn-link:hover > a:only-child,
.tbs-btn-link:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-link:hover > a:only-child:after,
.tbs-btn-link:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-link:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: transparent;
}

.tbs-btn-link:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-link:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-link[disabled],
.tbs-btn-link[disabled]:hover,
.tbs-btn-link[disabled]:focus,
.tbs-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-link:hover {
  background: transparent;
}

.tbs-btn-link:hover,
.tbs-btn-link:focus,
.tbs-btn-link:active {
  border-color: transparent;
}

.tbs-btn-link[disabled],
.tbs-btn-link[disabled]:hover,
.tbs-btn-link[disabled]:focus,
.tbs-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-link[disabled] > a:only-child,
.tbs-btn-link[disabled]:hover > a:only-child,
.tbs-btn-link[disabled]:focus > a:only-child,
.tbs-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-link[disabled] > a:only-child:after,
.tbs-btn-link[disabled]:hover > a:only-child:after,
.tbs-btn-link[disabled]:focus > a:only-child:after,
.tbs-btn-link[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-text {
  color: rgba(0, 0, 0, 0.8509803922);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.tbs-btn-text > a:only-child {
  color: currentcolor;
}

.tbs-btn-text > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-text:hover,
.tbs-btn-text:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: transparent;
}

.tbs-btn-text:hover > a:only-child,
.tbs-btn-text:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-text:hover > a:only-child:after,
.tbs-btn-text:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-text:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: transparent;
}

.tbs-btn-text:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-text:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-text[disabled],
.tbs-btn-text[disabled]:hover,
.tbs-btn-text[disabled]:focus,
.tbs-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-text:hover,
.tbs-btn-text:focus {
  color: rgba(0, 0, 0, 0.8509803922);
  background: rgba(0, 0, 0, 0.0196078431);
  border-color: transparent;
}

.tbs-btn-text:active {
  color: rgba(0, 0, 0, 0.8509803922);
  background: rgba(0, 0, 0, 0.0274509804);
  border-color: transparent;
}

.tbs-btn-text[disabled],
.tbs-btn-text[disabled]:hover,
.tbs-btn-text[disabled]:focus,
.tbs-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-text[disabled] > a:only-child,
.tbs-btn-text[disabled]:hover > a:only-child,
.tbs-btn-text[disabled]:focus > a:only-child,
.tbs-btn-text[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-text[disabled] > a:only-child:after,
.tbs-btn-text[disabled]:hover > a:only-child:after,
.tbs-btn-text[disabled]:focus > a:only-child:after,
.tbs-btn-text[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous {
  color: var(--tbs-error-color);
  border-color: var(--tbs-error-color);
  background: #fff;
}

.tbs-btn-dangerous > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous:hover,
.tbs-btn-dangerous:focus {
  color: var(--tbs-error-color-hover);
  border-color: var(--tbs-error-color-hover);
  background: #fff;
}

.tbs-btn-dangerous:hover > a:only-child,
.tbs-btn-dangerous:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous:hover > a:only-child:after,
.tbs-btn-dangerous:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous:active {
  color: var(--tbs-error-color-active);
  border-color: var(--tbs-error-color-active);
  background: #fff;
}

.tbs-btn-dangerous:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous[disabled],
.tbs-btn-dangerous[disabled]:hover,
.tbs-btn-dangerous[disabled]:focus,
.tbs-btn-dangerous[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-dangerous[disabled] > a:only-child,
.tbs-btn-dangerous[disabled]:hover > a:only-child,
.tbs-btn-dangerous[disabled]:focus > a:only-child,
.tbs-btn-dangerous[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous[disabled] > a:only-child:after,
.tbs-btn-dangerous[disabled]:hover > a:only-child:after,
.tbs-btn-dangerous[disabled]:focus > a:only-child:after,
.tbs-btn-dangerous[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-primary {
  color: #fff;
  border-color: var(--tbs-error-color);
  background: var(--tbs-error-color);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px rgba(0, 0, 0, 0.0431372549);
}

.tbs-btn-dangerous.tbs-btn-primary > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-primary > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-primary:hover,
.tbs-btn-dangerous.tbs-btn-primary:focus {
  color: #fff;
  border-color: var(--tbs-error-color-hover);
  background: var(--tbs-error-color-hover);
}

.tbs-btn-dangerous.tbs-btn-primary:hover > a:only-child,
.tbs-btn-dangerous.tbs-btn-primary:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-primary:hover > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-primary:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-primary:active {
  color: #fff;
  border-color: var(--tbs-error-color-active);
  background: var(--tbs-error-color-active);
}

.tbs-btn-dangerous.tbs-btn-primary:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-primary:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-primary[disabled],
.tbs-btn-dangerous.tbs-btn-primary[disabled]:hover,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:focus,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-dangerous.tbs-btn-primary[disabled] > a:only-child,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:hover > a:only-child,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:focus > a:only-child,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-primary[disabled] > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:hover > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:focus > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-primary[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-link {
  color: var(--tbs-error-color);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.tbs-btn-dangerous.tbs-btn-link > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-link > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-link:hover,
.tbs-btn-dangerous.tbs-btn-link:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: transparent;
}

.tbs-btn-dangerous.tbs-btn-link:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: transparent;
}

.tbs-btn-dangerous.tbs-btn-link[disabled],
.tbs-btn-dangerous.tbs-btn-link[disabled]:hover,
.tbs-btn-dangerous.tbs-btn-link[disabled]:focus,
.tbs-btn-dangerous.tbs-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-dangerous.tbs-btn-link:hover,
.tbs-btn-dangerous.tbs-btn-link:focus {
  color: var(--tbs-error-color-hover);
  border-color: transparent;
  background: transparent;
}

.tbs-btn-dangerous.tbs-btn-link:hover > a:only-child,
.tbs-btn-dangerous.tbs-btn-link:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-link:hover > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-link:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-link:active {
  color: var(--tbs-error-color-active);
  border-color: transparent;
  background: transparent;
}

.tbs-btn-dangerous.tbs-btn-link:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-link:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-link[disabled],
.tbs-btn-dangerous.tbs-btn-link[disabled]:hover,
.tbs-btn-dangerous.tbs-btn-link[disabled]:focus,
.tbs-btn-dangerous.tbs-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-dangerous.tbs-btn-link[disabled] > a:only-child,
.tbs-btn-dangerous.tbs-btn-link[disabled]:hover > a:only-child,
.tbs-btn-dangerous.tbs-btn-link[disabled]:focus > a:only-child,
.tbs-btn-dangerous.tbs-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-link[disabled] > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-link[disabled]:hover > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-link[disabled]:focus > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-link[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-text {
  color: var(--tbs-error-color);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.tbs-btn-dangerous.tbs-btn-text > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-text > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-text:hover,
.tbs-btn-dangerous.tbs-btn-text:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: transparent;
}

.tbs-btn-dangerous.tbs-btn-text:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: transparent;
}

.tbs-btn-dangerous.tbs-btn-text[disabled],
.tbs-btn-dangerous.tbs-btn-text[disabled]:hover,
.tbs-btn-dangerous.tbs-btn-text[disabled]:focus,
.tbs-btn-dangerous.tbs-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-dangerous.tbs-btn-text:hover,
.tbs-btn-dangerous.tbs-btn-text:focus {
  color: var(--tbs-error-color-hover);
  border-color: transparent;
  background: rgba(0, 0, 0, 0.0196078431);
}

.tbs-btn-dangerous.tbs-btn-text:hover > a:only-child,
.tbs-btn-dangerous.tbs-btn-text:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-text:hover > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-text:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-text:active {
  color: var(--tbs-error-color-active);
  border-color: transparent;
  background: rgba(0, 0, 0, 0.0274509804);
}

.tbs-btn-dangerous.tbs-btn-text:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-text:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-dangerous.tbs-btn-text[disabled],
.tbs-btn-dangerous.tbs-btn-text[disabled]:hover,
.tbs-btn-dangerous.tbs-btn-text[disabled]:focus,
.tbs-btn-dangerous.tbs-btn-text[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-dangerous.tbs-btn-text[disabled] > a:only-child,
.tbs-btn-dangerous.tbs-btn-text[disabled]:hover > a:only-child,
.tbs-btn-dangerous.tbs-btn-text[disabled]:focus > a:only-child,
.tbs-btn-dangerous.tbs-btn-text[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-dangerous.tbs-btn-text[disabled] > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-text[disabled]:hover > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-text[disabled]:focus > a:only-child:after,
.tbs-btn-dangerous.tbs-btn-text[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-icon-only {
  width: 32px;
  height: 32px;
  padding: 2.4px 0;
  font-size: 16px;
  border-radius: 2px;
  vertical-align: -3px;
}

.tbs-btn-icon-only > * {
  font-size: 16px;
}

.tbs-btn-icon-only.tbs-btn-lg {
  width: 40px;
  height: 40px;
  padding: 4.9px 0;
  font-size: 18px;
  border-radius: 2px;
}

.tbs-btn-icon-only.tbs-btn-lg > * {
  font-size: 18px;
}

.tbs-btn-icon-only.tbs-btn-sm {
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 14px;
  border-radius: 2px;
}

.tbs-btn-icon-only.tbs-btn-sm > * {
  font-size: 14px;
}

.tbs-btn-icon-only > .anticon {
  display: flex;
  justify-content: center;
}

.tbs-btn-icon-only .anticon-loading {
  padding: 0 !important;
}

a.tbs-btn-icon-only {
  vertical-align: -1px;
}

a.tbs-btn-icon-only > .anticon {
  display: inline;
}

.tbs-btn-round {
  height: 32px;
  padding: 4px 16px;
  font-size: 14px;
  border-radius: 32px;
}

.tbs-btn-round.tbs-btn-lg {
  height: 40px;
  padding: 6.4px 20px;
  font-size: 16px;
  border-radius: 40px;
}

.tbs-btn-round.tbs-btn-sm {
  height: 24px;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 24px;
}

.tbs-btn-round.tbs-btn-icon-only {
  width: auto;
}

.tbs-btn-circle {
  min-width: 32px;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  border-radius: 50%;
}

.tbs-btn-circle.tbs-btn-lg {
  min-width: 40px;
  border-radius: 50%;
}

.tbs-btn-circle.tbs-btn-sm {
  min-width: 24px;
  border-radius: 50%;
}

.tbs-btn:before {
  position: absolute;
  inset: -1px;
  z-index: 1;
  display: none;
  background: #fff;
  border-radius: inherit;
  opacity: 0.35;
  transition: opacity 0.2s;
  content: "";
  pointer-events: none;
}

.tbs-btn .anticon {
  transition: margin-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-btn .anticon.anticon-plus > svg,
.tbs-btn .anticon.anticon-minus > svg {
  shape-rendering: optimizespeed;
}

.tbs-btn.tbs-btn-loading {
  position: relative;
  cursor: default;
}

.tbs-btn.tbs-btn-loading:before {
  display: block;
}

.tbs-btn > .tbs-btn-loading-icon {
  transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-btn > .tbs-btn-loading-icon .anticon {
  padding-right: 8px;
  animation: none;
}

.tbs-btn > .tbs-btn-loading-icon .anticon svg {
  animation: loadingCircle 1s infinite linear;
}

.tbs-btn-group {
  position: relative;
  display: inline-flex;
}

.tbs-btn-group > .tbs-btn,
.tbs-btn-group > span > .tbs-btn {
  position: relative;
}

.tbs-btn-group > .tbs-btn:hover,
.tbs-btn-group > span > .tbs-btn:hover,
.tbs-btn-group > .tbs-btn:focus,
.tbs-btn-group > span > .tbs-btn:focus,
.tbs-btn-group > .tbs-btn:active,
.tbs-btn-group > span > .tbs-btn:active {
  z-index: 2;
}

.tbs-btn-group > .tbs-btn[disabled],
.tbs-btn-group > span > .tbs-btn[disabled] {
  z-index: 0;
}

.tbs-btn-group .tbs-btn-icon-only {
  font-size: 14px;
}

.tbs-btn-group .tbs-btn + .tbs-btn,
.tbs-btn + .tbs-btn-group,
.tbs-btn-group span + .tbs-btn,
.tbs-btn-group .tbs-btn + span,
.tbs-btn-group > span + span,
.tbs-btn-group + .tbs-btn,
.tbs-btn-group + .tbs-btn-group {
  margin-left: -1px;
}

.tbs-btn-group .tbs-btn-primary + .tbs-btn:not(.tbs-btn-primary):not([disabled]) {
  border-left-color: transparent;
}

.tbs-btn-group .tbs-btn {
  border-radius: 0;
}

.tbs-btn-group > .tbs-btn:first-child,
.tbs-btn-group > span:first-child > .tbs-btn {
  margin-left: 0;
}

.tbs-btn-group > .tbs-btn:only-child {
  border-radius: 2px;
}

.tbs-btn-group > span:only-child > .tbs-btn {
  border-radius: 2px;
}

.tbs-btn-group > .tbs-btn:first-child:not(:last-child),
.tbs-btn-group > span:first-child:not(:last-child) > .tbs-btn {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.tbs-btn-group > .tbs-btn:last-child:not(:first-child),
.tbs-btn-group > span:last-child:not(:first-child) > .tbs-btn {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.tbs-btn-group-sm > .tbs-btn:only-child {
  border-radius: 2px;
}

.tbs-btn-group-sm > span:only-child > .tbs-btn {
  border-radius: 2px;
}

.tbs-btn-group-sm > .tbs-btn:first-child:not(:last-child),
.tbs-btn-group-sm > span:first-child:not(:last-child) > .tbs-btn {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.tbs-btn-group-sm > .tbs-btn:last-child:not(:first-child),
.tbs-btn-group-sm > span:last-child:not(:first-child) > .tbs-btn {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.tbs-btn-group > .tbs-btn-group {
  float: left;
}

.tbs-btn-group > .tbs-btn-group:not(:first-child):not(:last-child) > .tbs-btn {
  border-radius: 0;
}

.tbs-btn-group > .tbs-btn-group:first-child:not(:last-child) > .tbs-btn:last-child {
  padding-right: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-btn-group > .tbs-btn-group:last-child:not(:first-child) > .tbs-btn:first-child {
  padding-left: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-btn-rtl.tbs-btn-group .tbs-btn + .tbs-btn,
.tbs-btn-rtl.tbs-btn + .tbs-btn-group,
.tbs-btn-rtl.tbs-btn-group span + .tbs-btn,
.tbs-btn-rtl.tbs-btn-group .tbs-btn + span,
.tbs-btn-rtl.tbs-btn-group > span + span,
.tbs-btn-rtl.tbs-btn-group + .tbs-btn,
.tbs-btn-rtl.tbs-btn-group + .tbs-btn-group,
.tbs-btn-group-rtl.tbs-btn-group .tbs-btn + .tbs-btn,
.tbs-btn-group-rtl.tbs-btn + .tbs-btn-group,
.tbs-btn-group-rtl.tbs-btn-group span + .tbs-btn,
.tbs-btn-group-rtl.tbs-btn-group .tbs-btn + span,
.tbs-btn-group-rtl.tbs-btn-group > span + span,
.tbs-btn-group-rtl.tbs-btn-group + .tbs-btn,
.tbs-btn-group-rtl.tbs-btn-group + .tbs-btn-group {
  margin-right: -1px;
  margin-left: auto;
}

.tbs-btn-group.tbs-btn-group-rtl {
  direction: rtl;
}

.tbs-btn-group-rtl.tbs-btn-group > .tbs-btn:first-child:not(:last-child),
.tbs-btn-group-rtl.tbs-btn-group > span:first-child:not(:last-child) > .tbs-btn {
  border-radius: 0 2px 2px 0;
}

.tbs-btn-group-rtl.tbs-btn-group > .tbs-btn:last-child:not(:first-child),
.tbs-btn-group-rtl.tbs-btn-group > span:last-child:not(:first-child) > .tbs-btn {
  border-radius: 2px 0 0 2px;
}

.tbs-btn-group-rtl.tbs-btn-group-sm > .tbs-btn:first-child:not(:last-child),
.tbs-btn-group-rtl.tbs-btn-group-sm > span:first-child:not(:last-child) > .tbs-btn {
  border-radius: 0 2px 2px 0;
}

.tbs-btn-group-rtl.tbs-btn-group-sm > .tbs-btn:last-child:not(:first-child),
.tbs-btn-group-rtl.tbs-btn-group-sm > span:last-child:not(:first-child) > .tbs-btn {
  border-radius: 2px 0 0 2px;
}

.tbs-btn:focus > span,
.tbs-btn:active > span {
  position: relative;
}

.tbs-btn > .anticon + span,
.tbs-btn > span + .anticon {
  margin-left: 8px;
}

.tbs-btn.tbs-btn-background-ghost {
  color: #fff;
  border-color: #fff;
}

.tbs-btn.tbs-btn-background-ghost,
.tbs-btn.tbs-btn-background-ghost:hover,
.tbs-btn.tbs-btn-background-ghost:active,
.tbs-btn.tbs-btn-background-ghost:focus {
  background: transparent;
}

.tbs-btn.tbs-btn-background-ghost:hover,
.tbs-btn.tbs-btn-background-ghost:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
}

.tbs-btn.tbs-btn-background-ghost:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
}

.tbs-btn.tbs-btn-background-ghost[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background: transparent;
  border-color: var(--tbs-neutral-600);
}

.tbs-btn-background-ghost.tbs-btn-primary {
  color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
  text-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-primary > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-primary > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-primary:hover,
.tbs-btn-background-ghost.tbs-btn-primary:focus {
  color: var(--tbs-primary-color-hover);
  border-color: var(--tbs-primary-color-hover);
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-primary:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-primary:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-primary:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-primary:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-primary:active {
  color: var(--tbs-primary-color-active);
  border-color: var(--tbs-primary-color-active);
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-primary:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-primary:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-primary[disabled],
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:hover,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:focus,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-primary[disabled] > a:only-child,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:focus > a:only-child,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-primary[disabled] > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:focus > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-primary[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-danger {
  color: var(--tbs-error-color);
  border-color: var(--tbs-error-color);
  text-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-danger > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-danger > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-danger:hover,
.tbs-btn-background-ghost.tbs-btn-danger:focus {
  color: var(--tbs-error-color-hover);
  border-color: var(--tbs-error-color-hover);
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-danger:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-danger:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-danger:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-danger:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-danger:active {
  color: var(--tbs-error-color-active);
  border-color: var(--tbs-error-color-active);
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-danger:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-danger:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-danger[disabled],
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:hover,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:focus,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-danger[disabled] > a:only-child,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:focus > a:only-child,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-danger[disabled] > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:focus > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-danger[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous {
  color: var(--tbs-error-color);
  border-color: var(--tbs-error-color);
  text-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-dangerous > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous:hover,
.tbs-btn-background-ghost.tbs-btn-dangerous:focus {
  color: var(--tbs-error-color-hover);
  border-color: var(--tbs-error-color-hover);
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-dangerous:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous:active {
  color: var(--tbs-error-color-active);
  border-color: var(--tbs-error-color-active);
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-dangerous:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous[disabled],
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:hover,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:focus,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-dangerous[disabled] > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:focus > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous[disabled] > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:focus > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link {
  color: var(--tbs-error-color);
  border-color: transparent;
  text-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:hover,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:focus {
  color: var(--tbs-error-color-active);
  border-color: transparent;
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:focus > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:focus > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:active {
  color: var(--tbs-error-color-active);
  border-color: transparent;
  background: transparent;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled],
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:hover,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:focus,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  background: var(--tbs-neutral-400);
  text-shadow: none;
  box-shadow: none;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled] > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:hover > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:focus > a:only-child,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:active > a:only-child {
  color: currentcolor;
}

.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled] > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:hover > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:focus > a:only-child:after,
.tbs-btn-background-ghost.tbs-btn-dangerous.tbs-btn-link[disabled]:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.tbs-btn-two-chinese-chars:first-letter {
  letter-spacing: 0.34em;
}

.tbs-btn-two-chinese-chars > *:not(.anticon) {
  margin-right: -0.34em;
  letter-spacing: 0.34em;
}

.tbs-btn.tbs-btn-block {
  width: 100%;
}

.tbs-btn:empty {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: " ";
}

a.tbs-btn {
  padding-top: 0.01px !important;
  line-height: 30px;
}

a.tbs-btn-disabled {
  cursor: not-allowed;
}

a.tbs-btn-disabled > * {
  pointer-events: none;
}

a.tbs-btn-disabled,
a.tbs-btn-disabled:hover,
a.tbs-btn-disabled:focus,
a.tbs-btn-disabled:active {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: transparent;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}

a.tbs-btn-disabled > a:only-child,
a.tbs-btn-disabled:hover > a:only-child,
a.tbs-btn-disabled:focus > a:only-child,
a.tbs-btn-disabled:active > a:only-child {
  color: currentcolor;
}

a.tbs-btn-disabled > a:only-child:after,
a.tbs-btn-disabled:hover > a:only-child:after,
a.tbs-btn-disabled:focus > a:only-child:after,
a.tbs-btn-disabled:active > a:only-child:after {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

a.tbs-btn-lg {
  line-height: 38px;
}

a.tbs-btn-sm {
  line-height: 22px;
}

.tbs-btn-compact-item:not(.tbs-btn-compact-last-item):not(.tbs-btn-compact-item-rtl) {
  margin-right: -1px;
}

.tbs-btn-compact-item:not(.tbs-btn-compact-last-item).tbs-btn-compact-item-rtl {
  margin-left: -1px;
}

.tbs-btn-compact-item:hover,
.tbs-btn-compact-item:focus,
.tbs-btn-compact-item:active {
  z-index: 2;
}

.tbs-btn-compact-item[disabled] {
  z-index: 0;
}

.tbs-btn-compact-item:not(.tbs-btn-compact-first-item):not(.tbs-btn-compact-last-item).tbs-btn {
  border-radius: 0;
}

.tbs-btn-compact-item.tbs-btn.tbs-btn-compact-first-item:not(.tbs-btn-compact-last-item):not(.tbs-btn-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-btn-compact-item.tbs-btn.tbs-btn-compact-last-item:not(.tbs-btn-compact-first-item):not(.tbs-btn-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-btn-compact-item.tbs-btn.tbs-btn-compact-item-rtl.tbs-btn-compact-first-item:not(.tbs-btn-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-btn-compact-item.tbs-btn.tbs-btn-compact-item-rtl.tbs-btn-compact-last-item:not(.tbs-btn-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-btn-icon-only.tbs-btn-compact-item {
  flex: none;
}

.tbs-btn-compact-item.tbs-btn-primary:not([disabled]) + .tbs-btn-compact-item.tbs-btn-primary:not([disabled]) {
  position: relative;
}

.tbs-btn-compact-item.tbs-btn-primary:not([disabled]) + .tbs-btn-compact-item.tbs-btn-primary:not([disabled]):after {
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-block;
  width: 1px;
  height: calc(100% + 2px);
  background-color: var(--tbs-primary-5);
  content: " ";
}

.tbs-btn-compact-item-rtl.tbs-btn-compact-first-item.tbs-btn-compact-item-rtl:not(.tbs-btn-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-btn-compact-item-rtl.tbs-btn-compact-last-item.tbs-btn-compact-item-rtl:not(.tbs-btn-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-btn-compact-item-rtl.tbs-btn-sm.tbs-btn-compact-first-item.tbs-btn-compact-item-rtl.tbs-btn-sm:not(.tbs-btn-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-btn-compact-item-rtl.tbs-btn-sm.tbs-btn-compact-last-item.tbs-btn-compact-item-rtl.tbs-btn-sm:not(.tbs-btn-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-btn-compact-item-rtl.tbs-btn-primary:not([disabled]) + .tbs-btn-compact-item-rtl.tbs-btn-primary:not([disabled]):after {
  right: -1px;
}

.tbs-btn-compact-vertical-item:not(.tbs-btn-compact-vertical-last-item) {
  margin-bottom: -1px;
}

.tbs-btn-compact-vertical-item:hover,
.tbs-btn-compact-vertical-item:focus,
.tbs-btn-compact-vertical-item:active {
  z-index: 2;
}

.tbs-btn-compact-vertical-item[disabled] {
  z-index: 0;
}

.tbs-btn-compact-vertical-item:not(.tbs-btn-compact-vertical-first-item):not(.tbs-btn-compact-vertical-last-item) {
  border-radius: 0;
}

.tbs-btn-compact-vertical-item.tbs-btn-compact-vertical-first-item:not(.tbs-btn-compact-vertical-last-item) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-btn-compact-vertical-item.tbs-btn-compact-vertical-last-item:not(.tbs-btn-compact-vertical-first-item) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tbs-btn-compact-vertical-item.tbs-btn-primary:not([disabled]) + .tbs-btn-compact-vertical-item.tbs-btn-primary:not([disabled]) {
  position: relative;
}

.tbs-btn-compact-vertical-item.tbs-btn-primary:not([disabled]) + .tbs-btn-compact-vertical-item.tbs-btn-primary:not([disabled]):after {
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-block;
  width: calc(100% + 2px);
  height: 1px;
  background-color: var(--tbs-primary-5);
  content: " ";
}

.tbs-btn-rtl {
  direction: rtl;
}

.tbs-btn-group-rtl.tbs-btn-group .tbs-btn-primary:last-child:not(:first-child),
.tbs-btn-group-rtl.tbs-btn-group .tbs-btn-primary + .tbs-btn-primary {
  border-right-color: var(--tbs-primary-5);
  border-left-color: var(--tbs-neutral-600);
}

.tbs-btn-group-rtl.tbs-btn-group .tbs-btn-primary:last-child:not(:first-child)[disabled],
.tbs-btn-group-rtl.tbs-btn-group .tbs-btn-primary + .tbs-btn-primary[disabled] {
  border-right-color: var(--tbs-neutral-600);
  border-left-color: var(--tbs-primary-5);
}

.tbs-btn-rtl.tbs-btn > .tbs-btn-loading-icon .anticon {
  padding-right: 0;
  padding-left: 8px;
}

.tbs-btn-rtl.tbs-btn > .anticon + span,
.tbs-btn-rtl.tbs-btn > span + .anticon {
  margin-right: 8px;
  margin-left: 0;
}

.slick-dots {
  display: block;
}

.slick-track {
  opacity: 1;
}

.slick-list {
  direction: ltr;
}

@keyframes antCheckboxEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}
.tbs-comment {
  position: relative;
  background-color: inherit;
}

.tbs-comment-inner {
  display: flex;
  padding: 16px 0;
}

.tbs-comment-avatar {
  position: relative;
  flex-shrink: 0;
  margin-right: 12px;
  cursor: pointer;
}

.tbs-comment-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.tbs-comment-content {
  position: relative;
  flex: 1 1 auto;
  min-width: 1px;
  font-size: 14px;
  word-wrap: break-word;
}

.tbs-comment-content-author {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 4px;
  font-size: 14px;
}

.tbs-comment-content-author > a,
.tbs-comment-content-author > span {
  padding-right: 8px;
  font-size: 12px;
  line-height: 18px;
}

.tbs-comment-content-author-name {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
  transition: color 0.3s;
}

.tbs-comment-content-author-name > * {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-comment-content-author-name > *:hover {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-comment-content-author-time {
  color: #ccc;
  white-space: nowrap;
  cursor: auto;
}

.tbs-comment-content-detail p {
  margin-bottom: inherit;
  white-space: pre-wrap;
}

.tbs-comment-actions {
  margin-top: 12px;
  margin-bottom: inherit;
  padding-left: 0;
}

.tbs-comment-actions > li {
  display: inline-block;
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-comment-actions > li > span {
  margin-right: 10px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.3s;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-comment-actions > li > span:hover {
  color: #595959;
}

.tbs-comment-nested {
  margin-left: 44px;
}

.tbs-comment-rtl {
  direction: rtl;
}

.tbs-comment-rtl .tbs-comment-avatar {
  margin-right: 0;
  margin-left: 12px;
}

.tbs-comment-rtl .tbs-comment-content-author > a,
.tbs-comment-rtl .tbs-comment-content-author > span {
  padding-right: 0;
  padding-left: 8px;
}

.tbs-comment-rtl .tbs-comment-actions {
  padding-right: 0;
}

.tbs-comment-rtl .tbs-comment-actions > li > span {
  margin-right: 0;
  margin-left: 10px;
}

.tbs-comment-rtl .tbs-comment-nested {
  margin-right: 44px;
  margin-left: 0;
}

tbs-comment {
  display: block;
}

tbs-comment-content {
  display: block;
}

.tbs-picker-status-error.tbs-picker,
.tbs-picker-status-error.tbs-picker:not(.tbs-picker-disabled):hover {
  background-color: #fff;
  border-color: var(--tbs-error-color);
}

.tbs-picker-status-error.tbs-picker-focused,
.tbs-picker-status-error.tbs-picker:focus {
  border-color: var(--tbs-error-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-error-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-picker-status-error.tbs-picker .tbs-picker-active-bar {
  background: var(--tbs-error-color-hover);
}

.tbs-picker-status-warning.tbs-picker,
.tbs-picker-status-warning.tbs-picker:not(.tbs-picker-disabled):hover {
  background-color: #fff;
  border-color: var(--tbs-warning-color);
}

.tbs-picker-status-warning.tbs-picker-focused,
.tbs-picker-status-warning.tbs-picker:focus {
  border-color: var(--tbs-warning-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-warning-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-picker-status-warning.tbs-picker .tbs-picker-active-bar {
  background: var(--tbs-warning-color-hover);
}

.tbs-picker {
  box-sizing: border-box;
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  padding: 6px 11px;
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--tbs-neutral-800);
  border-radius: 2px;
  transition: border 0.3s, box-shadow 0.3s;
}

.tbs-picker:hover,
.tbs-picker-focused {
  background-color: var(--tbs-neutral-200);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-picker:hover,
.tbs-input-rtl .tbs-picker-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-picker-focused {
  border-color: var(--tbs-complimentary-blue);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-picker-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-picker.tbs-picker-disabled {
  background: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-picker.tbs-picker-disabled .tbs-picker-suffix {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-picker.tbs-picker-borderless {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.tbs-picker-input {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.tbs-picker-input > input {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  transition: all 0.3s;
  flex: auto;
  min-width: 1px;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.tbs-picker-input > input::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-picker-input > input:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-picker-input > input:hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-picker-input > input:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-picker-input > input:focus,
.tbs-picker-input > input-focused {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-picker-input > input:focus,
.tbs-input-rtl .tbs-picker-input > input-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-picker-input > input-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-picker-input > input-disabled:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-picker-input > input[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-picker-input > input[disabled]:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-picker-input > input-borderless,
.tbs-picker-input > input-borderless:hover,
.tbs-picker-input > input-borderless:focus,
.tbs-picker-input > input-borderless-focused,
.tbs-picker-input > input-borderless-disabled,
.tbs-picker-input > input-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

textarea.tbs-picker-input > input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}

.tbs-picker-input > input-lg {
  padding: 6.5px 11px;
  font-size: 16px;
}

.tbs-picker-input > input-sm {
  padding: 0 7px;
}

.tbs-picker-input > input-rtl {
  direction: rtl;
}

.tbs-picker-input > input-stepperless[type=number] {
  -moz-appearance: textfield;
}

.tbs-picker-input > input-stepperless[type=number]::-webkit-inner-spin-button,
.tbs-picker-input > input-stepperless[type=number] ::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tbs-picker-input > input:focus {
  box-shadow: none;
}

.tbs-picker-input > input[disabled] {
  background: transparent;
}

.tbs-picker-input:hover .tbs-picker-clear {
  opacity: 1;
}

.tbs-picker-input-placeholder > input {
  color: var(--tbs-neutral-1000);
}

.tbs-picker-large {
  padding: 6.5px 11px;
}

.tbs-picker-large .tbs-picker-input > input {
  font-size: 16px;
}

.tbs-picker-small {
  padding: 0 7px;
}

.tbs-picker-suffix {
  display: flex;
  flex: none;
  align-self: center;
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.2509803922);
  line-height: 1;
  pointer-events: none;
}

.tbs-picker-suffix > * {
  vertical-align: top;
}

.tbs-picker-suffix > *:not(:last-child) {
  margin-right: 8px;
}

.tbs-picker-clear {
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(0, 0, 0, 0.2509803922);
  line-height: 1;
  background: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, color 0.3s;
}

.tbs-picker-clear > * {
  vertical-align: top;
}

.tbs-picker-clear:hover {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-picker-separator {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 16px;
  color: rgba(0, 0, 0, 0.2509803922);
  font-size: 16px;
  vertical-align: top;
  cursor: default;
}

.tbs-picker-focused .tbs-picker-separator {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-picker-disabled .tbs-picker-range-separator .tbs-picker-separator {
  cursor: not-allowed;
}

.tbs-picker-range {
  position: relative;
  display: inline-flex;
}

.tbs-picker-range .tbs-picker-clear {
  right: 11px;
}

.tbs-picker-range:hover .tbs-picker-clear {
  opacity: 1;
}

.tbs-picker-range .tbs-picker-active-bar {
  bottom: -1px;
  height: 2px;
  margin-left: 11px;
  background: var(--tbs-primary-blue-1000);
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}

.tbs-picker-range.tbs-picker-focused .tbs-picker-active-bar {
  opacity: 1;
}

.tbs-picker-range-separator {
  align-items: center;
  padding: 0 8px;
  line-height: 1;
}

.tbs-picker-range.tbs-picker-small .tbs-picker-clear {
  right: 7px;
}

.tbs-picker-range.tbs-picker-small .tbs-picker-active-bar {
  margin-left: 7px;
}

.tbs-picker-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
}

.tbs-picker-dropdown-hidden {
  display: none;
}

.tbs-picker-dropdown-placement-bottomLeft .tbs-picker-range-arrow {
  top: 2.58561808px;
  display: block;
  transform: rotate(-135deg) translateY(1px);
}

.tbs-picker-dropdown-placement-topLeft .tbs-picker-range-arrow {
  bottom: 2.58561808px;
  display: block;
  transform: rotate(45deg);
}

.tbs-picker-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-picker-dropdown-placement-topLeft,
.tbs-picker-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-picker-dropdown-placement-topRight,
.tbs-picker-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-picker-dropdown-placement-topLeft,
.tbs-picker-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-picker-dropdown-placement-topRight {
  animation-name: antSlideDownIn;
}

.tbs-picker-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-picker-dropdown-placement-bottomLeft,
.tbs-picker-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-picker-dropdown-placement-bottomRight,
.tbs-picker-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-picker-dropdown-placement-bottomLeft,
.tbs-picker-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-picker-dropdown-placement-bottomRight {
  animation-name: antSlideUpIn;
}

.tbs-picker-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-picker-dropdown-placement-topLeft,
.tbs-picker-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-picker-dropdown-placement-topRight {
  animation-name: antSlideDownOut;
}

.tbs-picker-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-picker-dropdown-placement-bottomLeft,
.tbs-picker-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-picker-dropdown-placement-bottomRight {
  animation-name: antSlideUpOut;
}

.tbs-picker-dropdown-range {
  padding: 7.54247233px 0;
}

.tbs-picker-dropdown-range-hidden {
  display: none;
}

.tbs-picker-dropdown .tbs-picker-panel > .tbs-picker-time-panel {
  padding-top: 4px;
}

.tbs-picker-ranges {
  margin-bottom: 0;
  padding: 4px 12px;
  overflow: hidden;
  line-height: 34px;
  text-align: left;
  list-style: none;
}

.tbs-picker-ranges > li {
  display: inline-block;
}

.tbs-picker-ranges .tbs-picker-preset > .tbs-tag-blue {
  color: var(--tbs-primary-color);
  background: var(--tbs-primary-1);
  border-color: var(--tbs-primary-3);
  cursor: pointer;
}

.tbs-picker-ranges .tbs-picker-ok {
  float: right;
  margin-left: 8px;
}

.tbs-picker-range-wrapper {
  display: flex;
}

.tbs-picker-range-arrow {
  position: absolute;
  z-index: 1;
  width: 11.3137085px;
  height: 11.3137085px;
  margin-left: 16.5px;
  box-shadow: 2px 2px 6px -2px rgba(0, 0, 0, 0.1019607843);
  transition: left 0.3s ease-out;
  border-radius: 0 0 2px;
  pointer-events: none;
}

.tbs-picker-range-arrow:before {
  position: absolute;
  top: -11.3137085px;
  left: -11.3137085px;
  width: 33.9411255px;
  height: 33.9411255px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: -10px -10px;
  content: "";
  clip-path: inset(33% 33%);
  clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
}

.tbs-picker-panel-container {
  overflow: hidden;
  vertical-align: top;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1490196078);
  border: 1px solid silver;
  transition: margin 0.3s;
}

.tbs-picker-panel-container .tbs-picker-panels {
  display: inline-flex;
  flex-wrap: nowrap;
  direction: ltr;
}

.tbs-picker-panel-container .tbs-picker-panel {
  vertical-align: top;
  background: transparent;
  border-width: 0 0 1px 0;
  border-radius: 0;
}

.tbs-picker-panel-container .tbs-picker-panel .tbs-picker-content,
.tbs-picker-panel-container .tbs-picker-panel table {
  text-align: center;
}

.tbs-picker-panel-container .tbs-picker-panel-focused {
  border-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-picker-compact-item:not(.tbs-picker-compact-last-item):not(.tbs-picker-compact-item-rtl) {
  margin-right: -1px;
}

.tbs-picker-compact-item:not(.tbs-picker-compact-last-item).tbs-picker-compact-item-rtl {
  margin-left: -1px;
}

.tbs-picker-compact-item:hover,
.tbs-picker-compact-item:focus,
.tbs-picker-compact-item:active {
  z-index: 2;
}

.tbs-picker-compact-item.tbs-picker-focused {
  z-index: 2;
}

.tbs-picker-compact-item[disabled] {
  z-index: 0;
}

.tbs-picker-compact-item:not(.tbs-picker-compact-first-item):not(.tbs-picker-compact-last-item).tbs-picker {
  border-radius: 0;
}

.tbs-picker-compact-item.tbs-picker.tbs-picker-compact-first-item:not(.tbs-picker-compact-last-item):not(.tbs-picker-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-picker-compact-item.tbs-picker.tbs-picker-compact-last-item:not(.tbs-picker-compact-first-item):not(.tbs-picker-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-picker-compact-item.tbs-picker.tbs-picker-compact-item-rtl.tbs-picker-compact-first-item:not(.tbs-picker-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-picker-compact-item.tbs-picker.tbs-picker-compact-item-rtl.tbs-picker-compact-last-item:not(.tbs-picker-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-picker-panel {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  outline: none;
}

.tbs-picker-panel-focused {
  border-color: var(--tbs-primary-color);
}

.tbs-picker-decade-panel,
.tbs-picker-year-panel,
.tbs-picker-quarter-panel,
.tbs-picker-month-panel,
.tbs-picker-week-panel,
.tbs-picker-date-panel,
.tbs-picker-time-panel {
  display: flex;
  flex-direction: column;
  width: 280px;
}

.tbs-picker-header {
  display: flex;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.8509803922);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-picker-header > * {
  flex: none;
}

.tbs-picker-header button {
  padding: 0;
  color: rgba(0, 0, 0, 0.2509803922);
  line-height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.3s;
}

.tbs-picker-header > button {
  min-width: 1.6em;
  font-size: 14px;
}

.tbs-picker-header > button:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-picker-header-view {
  flex: auto;
  font-weight: 500;
  line-height: 40px;
}

.tbs-picker-header-view button {
  color: inherit;
  font-weight: inherit;
}

.tbs-picker-header-view button:not(:first-child) {
  margin-left: 8px;
}

.tbs-picker-header-view button:hover {
  color: var(--tbs-primary-blue-1000);
}

.tbs-picker-prev-icon,
.tbs-picker-next-icon,
.tbs-picker-super-prev-icon,
.tbs-picker-super-next-icon {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
}

.tbs-picker-prev-icon:before,
.tbs-picker-next-icon:before,
.tbs-picker-super-prev-icon:before,
.tbs-picker-super-next-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  border-width: 1.5px 0 0 1.5px;
  content: "";
}

.tbs-picker-super-prev-icon:after,
.tbs-picker-super-next-icon:after {
  position: absolute;
  top: 4px;
  left: 4px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  border-width: 1.5px 0 0 1.5px;
  content: "";
}

.tbs-picker-prev-icon,
.tbs-picker-super-prev-icon {
  transform: rotate(-45deg);
}

.tbs-picker-next-icon,
.tbs-picker-super-next-icon {
  transform: rotate(135deg);
}

.tbs-picker-content {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.tbs-picker-content th,
.tbs-picker-content td {
  position: relative;
  min-width: 24px;
  font-weight: 400;
}

.tbs-picker-content th {
  height: 30px;
  color: rgba(0, 0, 0, 0.8509803922);
  line-height: 30px;
}

.tbs-picker-cell {
  padding: 3px 0;
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: pointer;
}

.tbs-picker-cell-in-view {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-picker-cell:before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 1;
  height: 24px;
  transform: translateY(-50%);
  transition: all 0.3s;
  content: "";
}

.tbs-picker-cell:hover:not(.tbs-picker-cell-in-view) .tbs-picker-cell-inner,
.tbs-picker-cell:hover:not(.tbs-picker-cell-selected):not(.tbs-picker-cell-range-start):not(.tbs-picker-cell-range-end):not(.tbs-picker-cell-range-hover-start):not(.tbs-picker-cell-range-hover-end) .tbs-picker-cell-inner {
  background: var(--tbs-neutral-400);
}

.tbs-picker-cell-in-view.tbs-picker-cell-today .tbs-picker-cell-inner:before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid var(--tbs-primary-blue-1000);
  border-radius: 2px;
  content: "";
}

.tbs-picker-cell-in-view.tbs-picker-cell-in-range {
  position: relative;
}

.tbs-picker-cell-in-view.tbs-picker-cell-in-range:before {
  background: var(--tbs-primary-blue-50);
}

.tbs-picker-cell-in-view.tbs-picker-cell-selected .tbs-picker-cell-inner,
.tbs-picker-cell-in-view.tbs-picker-cell-range-start .tbs-picker-cell-inner,
.tbs-picker-cell-in-view.tbs-picker-cell-range-end .tbs-picker-cell-inner {
  color: #fff;
  background: var(--tbs-primary-blue-1000);
}

.tbs-picker-cell-in-view.tbs-picker-cell-range-start:not(.tbs-picker-cell-range-start-single):before,
.tbs-picker-cell-in-view.tbs-picker-cell-range-end:not(.tbs-picker-cell-range-end-single):before {
  background: var(--tbs-primary-blue-50);
}

.tbs-picker-cell-in-view.tbs-picker-cell-range-start:before {
  left: 50%;
}

.tbs-picker-cell-in-view.tbs-picker-cell-range-end:before {
  right: 50%;
}

.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-start:not(.tbs-picker-cell-in-range):not(.tbs-picker-cell-range-start):not(.tbs-picker-cell-range-end):after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-end:not(.tbs-picker-cell-in-range):not(.tbs-picker-cell-range-start):not(.tbs-picker-cell-range-end):after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-start.tbs-picker-cell-range-start-single:after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-start.tbs-picker-cell-range-start.tbs-picker-cell-range-end.tbs-picker-cell-range-end-near-hover:after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-end.tbs-picker-cell-range-start.tbs-picker-cell-range-end.tbs-picker-cell-range-start-near-hover:after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-end.tbs-picker-cell-range-end-single:after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover:not(.tbs-picker-cell-in-range):after {
  position: absolute;
  top: 50%;
  z-index: 0;
  height: 24px;
  border-top: 1px dashed var(--tbs-primary-blue-100);
  border-bottom: 1px dashed var(--tbs-primary-blue-100);
  transform: translateY(-50%);
  transition: all 0.3s;
  content: "";
}

.tbs-picker-cell-range-hover-start:after,
.tbs-picker-cell-range-hover-end:after,
.tbs-picker-cell-range-hover:after {
  right: 0;
  left: 2px;
}

.tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover:before,
.tbs-picker-cell-in-view.tbs-picker-cell-range-start.tbs-picker-cell-range-hover:before,
.tbs-picker-cell-in-view.tbs-picker-cell-range-end.tbs-picker-cell-range-hover:before,
.tbs-picker-cell-in-view.tbs-picker-cell-range-start:not(.tbs-picker-cell-range-start-single).tbs-picker-cell-range-hover-start:before,
.tbs-picker-cell-in-view.tbs-picker-cell-range-end:not(.tbs-picker-cell-range-end-single).tbs-picker-cell-range-hover-end:before,
.tbs-picker-panel > :not(.tbs-picker-date-panel) .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-start:before,
.tbs-picker-panel > :not(.tbs-picker-date-panel) .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-end:before {
  background: var(--tbs-primary-blue-200);
}

.tbs-picker-cell-in-view.tbs-picker-cell-range-start:not(.tbs-picker-cell-range-start-single):not(.tbs-picker-cell-range-end) .tbs-picker-cell-inner {
  border-radius: 2px 0 0 2px;
}

.tbs-picker-cell-in-view.tbs-picker-cell-range-end:not(.tbs-picker-cell-range-end-single):not(.tbs-picker-cell-range-start) .tbs-picker-cell-inner {
  border-radius: 0 2px 2px 0;
}

.tbs-picker-date-panel .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-start .tbs-picker-cell-inner:after,
.tbs-picker-date-panel .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-end .tbs-picker-cell-inner:after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: var(--tbs-primary-blue-200);
  transition: all 0.3s;
  content: "";
}

.tbs-picker-date-panel .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-start .tbs-picker-cell-inner:after {
  right: -6px;
  left: 0;
}

.tbs-picker-date-panel .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-end .tbs-picker-cell-inner:after {
  right: 0;
  left: -6px;
}

.tbs-picker-cell-range-hover.tbs-picker-cell-range-start:after {
  right: 50%;
}

.tbs-picker-cell-range-hover.tbs-picker-cell-range-end:after {
  left: 50%;
}

tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover:first-child:after,
tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-end:first-child:after,
.tbs-picker-cell-in-view.tbs-picker-cell-start.tbs-picker-cell-range-hover-edge-start.tbs-picker-cell-range-hover-edge-start-near-range:after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-edge-start:not(.tbs-picker-cell-range-hover-edge-start-near-range):after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-start:after {
  left: 6px;
  border-left: 1px dashed var(--tbs-primary-blue-100);
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover:last-child:after,
tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-start:last-child:after,
.tbs-picker-cell-in-view.tbs-picker-cell-end.tbs-picker-cell-range-hover-edge-end.tbs-picker-cell-range-hover-edge-end-near-range:after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-edge-end:not(.tbs-picker-cell-range-hover-edge-end-near-range):after,
.tbs-picker-cell-in-view.tbs-picker-cell-range-hover-end:after {
  right: 6px;
  border-right: 1px dashed var(--tbs-primary-blue-100);
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.tbs-picker-cell-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  pointer-events: none;
}

.tbs-picker-cell-disabled .tbs-picker-cell-inner {
  background: transparent;
}

.tbs-picker-cell-disabled:before {
  background: rgba(0, 0, 0, 0.0392156863);
}

.tbs-picker-cell-disabled.tbs-picker-cell-today .tbs-picker-cell-inner:before {
  border-color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-picker-decade-panel .tbs-picker-content,
.tbs-picker-year-panel .tbs-picker-content,
.tbs-picker-quarter-panel .tbs-picker-content,
.tbs-picker-month-panel .tbs-picker-content {
  height: 264px;
}

.tbs-picker-decade-panel .tbs-picker-cell-inner,
.tbs-picker-year-panel .tbs-picker-cell-inner,
.tbs-picker-quarter-panel .tbs-picker-cell-inner,
.tbs-picker-month-panel .tbs-picker-cell-inner {
  padding: 0 8px;
}

.tbs-picker-quarter-panel .tbs-picker-content {
  height: 56px;
}

.tbs-picker-footer {
  width: min-content;
  min-width: 100%;
  line-height: 38px;
  text-align: center;
  border-bottom: 1px solid transparent;
}

.tbs-picker-panel .tbs-picker-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-picker-footer-extra {
  padding: 0 12px;
  line-height: 38px;
  text-align: left;
}

.tbs-picker-footer-extra:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-picker-now {
  text-align: left;
}

.tbs-picker-today-btn {
  color: var(--tbs-primary-color);
}

.tbs-picker-today-btn:hover {
  color: var(--tbs-primary-color-hover);
}

.tbs-picker-today-btn:active {
  color: var(--tbs-primary-color-active);
}

.tbs-picker-today-btn.tbs-picker-today-btn-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-picker-decade-panel .tbs-picker-cell-inner {
  padding: 0 4px;
}

.tbs-picker-decade-panel .tbs-picker-cell:before {
  display: none;
}

.tbs-picker-year-panel .tbs-picker-body,
.tbs-picker-quarter-panel .tbs-picker-body,
.tbs-picker-month-panel .tbs-picker-body {
  padding: 0 8px;
}

.tbs-picker-year-panel .tbs-picker-cell-inner,
.tbs-picker-quarter-panel .tbs-picker-cell-inner,
.tbs-picker-month-panel .tbs-picker-cell-inner {
  width: 60px;
}

.tbs-picker-year-panel .tbs-picker-cell-range-hover-start:after,
.tbs-picker-quarter-panel .tbs-picker-cell-range-hover-start:after,
.tbs-picker-month-panel .tbs-picker-cell-range-hover-start:after {
  left: 14px;
  border-left: 1px dashed var(--tbs-primary-blue-100);
  border-radius: 2px 0 0 2px;
}

.tbs-picker-panel-rtl .tbs-picker-year-panel .tbs-picker-cell-range-hover-start:after,
.tbs-picker-panel-rtl .tbs-picker-quarter-panel .tbs-picker-cell-range-hover-start:after,
.tbs-picker-panel-rtl .tbs-picker-month-panel .tbs-picker-cell-range-hover-start:after {
  right: 14px;
  border-right: 1px dashed var(--tbs-primary-blue-100);
  border-radius: 0 2px 2px 0;
}

.tbs-picker-year-panel .tbs-picker-cell-range-hover-end:after,
.tbs-picker-quarter-panel .tbs-picker-cell-range-hover-end:after,
.tbs-picker-month-panel .tbs-picker-cell-range-hover-end:after {
  right: 14px;
  border-right: 1px dashed var(--tbs-primary-blue-100);
  border-radius: 0 2px 2px 0;
}

.tbs-picker-panel-rtl .tbs-picker-year-panel .tbs-picker-cell-range-hover-end:after,
.tbs-picker-panel-rtl .tbs-picker-quarter-panel .tbs-picker-cell-range-hover-end:after,
.tbs-picker-panel-rtl .tbs-picker-month-panel .tbs-picker-cell-range-hover-end:after {
  left: 14px;
  border-left: 1px dashed var(--tbs-primary-blue-100);
  border-radius: 2px 0 0 2px;
}

.tbs-picker-week-panel .tbs-picker-body {
  padding: 8px 12px;
}

.tbs-picker-week-panel .tbs-picker-cell:hover .tbs-picker-cell-inner,
.tbs-picker-week-panel .tbs-picker-cell-selected .tbs-picker-cell-inner,
.tbs-picker-week-panel .tbs-picker-cell .tbs-picker-cell-inner {
  background: transparent !important;
}

.tbs-picker-week-panel-row td {
  transition: background 0.3s;
}

.tbs-picker-week-panel-row:hover td {
  background: var(--tbs-neutral-400);
}

.tbs-picker-week-panel-row-selected td,
.tbs-picker-week-panel-row-selected:hover td {
  background: var(--tbs-primary-blue-1000);
}

.tbs-picker-week-panel-row-selected td.tbs-picker-cell-week,
.tbs-picker-week-panel-row-selected:hover td.tbs-picker-cell-week {
  color: rgba(255, 255, 255, 0.5019607843);
}

.tbs-picker-week-panel-row-selected td.tbs-picker-cell-today .tbs-picker-cell-inner:before,
.tbs-picker-week-panel-row-selected:hover td.tbs-picker-cell-today .tbs-picker-cell-inner:before {
  border-color: #fff;
}

.tbs-picker-week-panel-row-selected td .tbs-picker-cell-inner,
.tbs-picker-week-panel-row-selected:hover td .tbs-picker-cell-inner {
  color: #fff;
}

.tbs-picker-date-panel .tbs-picker-body {
  padding: 8px 12px;
}

.tbs-picker-date-panel .tbs-picker-content {
  width: 252px;
}

.tbs-picker-date-panel .tbs-picker-content th {
  width: 36px;
}

.tbs-picker-datetime-panel {
  display: flex;
}

.tbs-picker-datetime-panel .tbs-picker-time-panel {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-picker-datetime-panel .tbs-picker-date-panel,
.tbs-picker-datetime-panel .tbs-picker-time-panel {
  transition: opacity 0.3s;
}

.tbs-picker-datetime-panel-active .tbs-picker-date-panel,
.tbs-picker-datetime-panel-active .tbs-picker-time-panel {
  opacity: 0.3;
}

.tbs-picker-datetime-panel-active .tbs-picker-date-panel-active,
.tbs-picker-datetime-panel-active .tbs-picker-time-panel-active {
  opacity: 1;
}

.tbs-picker-time-panel {
  width: auto;
  min-width: auto;
}

.tbs-picker-time-panel .tbs-picker-content {
  display: flex;
  flex: auto;
  height: 224px;
}

.tbs-picker-time-panel-column {
  flex: 1 0 auto;
  width: 56px;
  margin: 0;
  padding: 0;
  overflow-y: hidden;
  text-align: left;
  list-style: none;
  transition: background 0.3s;
}

.tbs-picker-time-panel-column:after {
  display: block;
  height: 196px;
  content: "";
}

.tbs-picker-datetime-panel .tbs-picker-time-panel-column:after {
  height: 198px;
}

.tbs-picker-time-panel-column:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-picker-time-panel-column-active {
  background: var(--tbs-primary-color-active-deprecated-f-30);
}

.tbs-picker-time-panel-column:hover {
  overflow-y: auto;
}

.tbs-picker-time-panel-column > li {
  margin: 0;
  padding: 0;
}

.tbs-picker-time-panel-column > li.tbs-picker-time-panel-cell .tbs-picker-time-panel-cell-inner {
  display: block;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0 0 0 14px;
  color: rgba(0, 0, 0, 0.8509803922);
  line-height: 28px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.tbs-picker-time-panel-column > li.tbs-picker-time-panel-cell .tbs-picker-time-panel-cell-inner:hover {
  background: var(--tbs-neutral-400);
}

.tbs-picker-time-panel-column > li.tbs-picker-time-panel-cell-selected .tbs-picker-time-panel-cell-inner {
  background: var(--tbs-primary-blue-1000);
  color: white;
}

.tbs-picker-time-panel-column > li.tbs-picker-time-panel-cell-disabled .tbs-picker-time-panel-cell-inner {
  color: rgba(0, 0, 0, 0.2509803922);
  background: transparent;
  cursor: not-allowed;
}

_:-ms-fullscreen .tbs-picker-range-wrapper .tbs-picker-month-panel .tbs-picker-cell,
:root .tbs-picker-range-wrapper .tbs-picker-month-panel .tbs-picker-cell,
_:-ms-fullscreen .tbs-picker-range-wrapper .tbs-picker-year-panel .tbs-picker-cell,
:root .tbs-picker-range-wrapper .tbs-picker-year-panel .tbs-picker-cell {
  padding: 21px 0;
}

.tbs-picker-rtl {
  direction: rtl;
}

.tbs-picker-rtl .tbs-picker-suffix {
  margin-right: 4px;
  margin-left: 0;
}

.tbs-picker-rtl .tbs-picker-clear {
  right: auto;
  left: 0;
}

.tbs-picker-rtl .tbs-picker-separator {
  transform: rotate(180deg);
}

.tbs-picker-panel-rtl .tbs-picker-header-view button:not(:first-child) {
  margin-right: 8px;
  margin-left: 0;
}

.tbs-picker-rtl.tbs-picker-range .tbs-picker-clear {
  right: auto;
  left: 11px;
}

.tbs-picker-rtl.tbs-picker-range .tbs-picker-active-bar {
  margin-right: 11px;
  margin-left: 0;
}

.tbs-picker-rtl.tbs-picker-range.tbs-picker-small .tbs-picker-active-bar {
  margin-right: 7px;
}

.tbs-picker-dropdown-rtl .tbs-picker-ranges {
  text-align: right;
}

.tbs-picker-dropdown-rtl .tbs-picker-ranges .tbs-picker-ok {
  float: left;
  margin-right: 8px;
  margin-left: 0;
}

.tbs-picker-panel-rtl {
  direction: rtl;
}

.tbs-picker-panel-rtl .tbs-picker-prev-icon,
.tbs-picker-panel-rtl .tbs-picker-super-prev-icon {
  transform: rotate(135deg);
}

.tbs-picker-panel-rtl .tbs-picker-next-icon,
.tbs-picker-panel-rtl .tbs-picker-super-next-icon {
  transform: rotate(-45deg);
}

.tbs-picker-cell .tbs-picker-cell-inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  min-width: 35px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  transition: background 0.3s, border 0.3s;
}

.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-start:before {
  right: 50%;
  left: 0;
}

.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-end:before {
  right: 0;
  left: 50%;
}

.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-start.tbs-picker-cell-range-end:before {
  right: 50%;
  left: 50%;
}

.tbs-picker-panel-rtl .tbs-picker-date-panel .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-start .tbs-picker-cell-inner:after {
  right: 0;
  left: -6px;
}

.tbs-picker-panel-rtl .tbs-picker-date-panel .tbs-picker-cell-in-view.tbs-picker-cell-in-range.tbs-picker-cell-range-hover-end .tbs-picker-cell-inner:after {
  right: -6px;
  left: 0;
}

.tbs-picker-panel-rtl .tbs-picker-cell-range-hover.tbs-picker-cell-range-start:after {
  right: 0;
  left: 50%;
}

.tbs-picker-panel-rtl .tbs-picker-cell-range-hover.tbs-picker-cell-range-end:after {
  right: 50%;
  left: 0;
}

.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-start:not(.tbs-picker-cell-range-start-single):not(.tbs-picker-cell-range-end) .tbs-picker-cell-inner {
  border-radius: 0 2px 2px 0;
}

.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-end:not(.tbs-picker-cell-range-end-single):not(.tbs-picker-cell-range-start) .tbs-picker-cell-inner {
  border-radius: 2px 0 0 2px;
}

.tbs-picker-panel-rtl tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover:not(.tbs-picker-cell-selected):first-child:after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-start.tbs-picker-cell-range-hover-edge-start.tbs-picker-cell-range-hover-edge-start-near-range:after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-edge-start:not(.tbs-picker-cell-range-hover-edge-start-near-range):after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-start:after {
  right: 6px;
  left: 0;
  border-right: 1px dashed var(--tbs-primary-blue-100);
  border-left: none;
  border-radius: 0 2px 2px 0;
}

.tbs-picker-panel-rtl tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover:not(.tbs-picker-cell-selected):last-child:after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-end.tbs-picker-cell-range-hover-edge-end.tbs-picker-cell-range-hover-edge-end-near-range:after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-edge-end:not(.tbs-picker-cell-range-hover-edge-end-near-range):after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-end:after {
  right: 0;
  left: 6px;
  border-right: none;
  border-left: 1px dashed var(--tbs-primary-blue-100);
  border-radius: 2px 0 0 2px;
}

.tbs-picker-panel-rtl tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-start:last-child:after,
.tbs-picker-panel-rtl tr > .tbs-picker-cell-in-view.tbs-picker-cell-range-hover-end:first-child:after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-start.tbs-picker-cell-range-hover-edge-start:not(.tbs-picker-cell-range-hover):after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-start.tbs-picker-cell-range-hover-end.tbs-picker-cell-range-hover-edge-start:not(.tbs-picker-cell-range-hover):after,
.tbs-picker-panel-rtl .tbs-picker-cell-in-view.tbs-picker-cell-end.tbs-picker-cell-range-hover-start.tbs-picker-cell-range-hover-edge-end:not(.tbs-picker-cell-range-hover):after,
.tbs-picker-panel-rtl tr > .tbs-picker-cell-in-view.tbs-picker-cell-start.tbs-picker-cell-range-hover.tbs-picker-cell-range-hover-edge-start:last-child:after,
.tbs-picker-panel-rtl tr > .tbs-picker-cell-in-view.tbs-picker-cell-end.tbs-picker-cell-range-hover.tbs-picker-cell-range-hover-edge-end:first-child:after {
  right: 6px;
  left: 6px;
  border-right: 1px dashed var(--tbs-primary-blue-100);
  border-left: 1px dashed var(--tbs-primary-blue-100);
  border-radius: 2px;
}

.tbs-picker-dropdown-rtl .tbs-picker-footer-extra {
  direction: rtl;
  text-align: right;
}

.tbs-picker-panel-rtl .tbs-picker-time-panel {
  direction: ltr;
}

.tbs-picker-inline {
  padding: 0;
  border: none;
}

.tbs-picker-inline .tbs-picker-range-arrow {
  display: none !important;
}

.tbs-picker-inline .tbs-picker-dropdown {
  z-index: auto;
}

.tbs-picker-dropdown {
  top: unset;
  left: unset;
}

.tbs-picker-panel-container.tbs-picker-week-number .tbs-picker-date-panel .tbs-picker-content {
  width: 100%;
}

.tbs-picker-panel-container.tbs-picker-week-number .tbs-picker-date-panel .tbs-picker-content th {
  width: inherit;
}

.tbs-picker-range-arrow {
  margin-right: 16.5px;
}

.tbs-descriptions-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.tbs-descriptions-title {
  flex: auto;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5715;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tbs-descriptions-extra {
  margin-left: auto;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
}

.tbs-descriptions-view {
  width: 100%;
  border-radius: 2px;
}

.tbs-descriptions-view table {
  width: 100%;
  table-layout: fixed;
}

.tbs-descriptions-row > th,
.tbs-descriptions-row > td {
  padding-bottom: 16px;
}

.tbs-descriptions-row:last-child {
  border-bottom: none;
}

.tbs-descriptions-item-label {
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5715;
  text-align: start;
}

.tbs-descriptions-item-label:after {
  content: ":";
  position: relative;
  top: -0.5px;
  margin: 0 8px 0 2px;
}

.tbs-descriptions-item-label.tbs-descriptions-item-no-colon:after {
  content: " ";
}

.tbs-descriptions-item-no-label:after {
  margin: 0;
  content: "";
}

.tbs-descriptions-item-content {
  display: table-cell;
  flex: 1;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  word-break: break-word;
  overflow-wrap: break-word;
}

.tbs-descriptions-item {
  padding-bottom: 0;
  vertical-align: top;
}

.tbs-descriptions-item-container {
  display: flex;
}

.tbs-descriptions-item-container .tbs-descriptions-item-label,
.tbs-descriptions-item-container .tbs-descriptions-item-content {
  display: inline-flex;
  align-items: baseline;
}

.tbs-descriptions-middle .tbs-descriptions-row > th,
.tbs-descriptions-middle .tbs-descriptions-row > td {
  padding-bottom: 12px;
}

.tbs-descriptions-small .tbs-descriptions-row > th,
.tbs-descriptions-small .tbs-descriptions-row > td {
  padding-bottom: 8px;
}

.tbs-descriptions-bordered .tbs-descriptions-view {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-descriptions-bordered .tbs-descriptions-view > table {
  table-layout: auto;
  border-collapse: collapse;
}

.tbs-descriptions-bordered .tbs-descriptions-item-label,
.tbs-descriptions-bordered .tbs-descriptions-item-content {
  padding: 16px 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-descriptions-bordered .tbs-descriptions-item-label:last-child,
.tbs-descriptions-bordered .tbs-descriptions-item-content:last-child {
  border-right: none;
}

.tbs-descriptions-bordered .tbs-descriptions-item-label {
  background-color: #fafafa;
}

.tbs-descriptions-bordered .tbs-descriptions-item-label:after {
  display: none;
}

.tbs-descriptions-bordered .tbs-descriptions-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-descriptions-bordered .tbs-descriptions-row:last-child {
  border-bottom: none;
}

.tbs-descriptions-bordered.tbs-descriptions-middle .tbs-descriptions-item-label,
.tbs-descriptions-bordered.tbs-descriptions-middle .tbs-descriptions-item-content {
  padding: 12px 24px;
}

.tbs-descriptions-bordered.tbs-descriptions-small .tbs-descriptions-item-label,
.tbs-descriptions-bordered.tbs-descriptions-small .tbs-descriptions-item-content {
  padding: 8px 16px;
}

.tbs-descriptions-rtl {
  direction: rtl;
}

.tbs-descriptions-rtl .tbs-descriptions-item-label:after {
  margin: 0 2px 0 8px;
}

.tbs-descriptions-rtl.tbs-descriptions-bordered .tbs-descriptions-item-label,
.tbs-descriptions-rtl.tbs-descriptions-bordered .tbs-descriptions-item-content {
  border-right: none;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-descriptions-rtl.tbs-descriptions-bordered .tbs-descriptions-item-label:last-child,
.tbs-descriptions-rtl.tbs-descriptions-bordered .tbs-descriptions-item-content:last-child {
  border-left: none;
}

tbs-descriptions {
  display: block;
}

.tbs-divider {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-divider-vertical {
  position: relative;
  top: -0.06em;
  display: inline-block;
  height: 0.9em;
  margin: 0 8px;
  vertical-align: middle;
  border-top: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-divider-horizontal {
  display: flex;
  clear: both;
  width: 100%;
  min-width: 100%;
  margin: 24px 0;
}

.tbs-divider-horizontal.tbs-divider-with-text {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  border-top: 0;
  border-top-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-divider-horizontal.tbs-divider-with-text:before,
.tbs-divider-horizontal.tbs-divider-with-text:after {
  position: relative;
  width: 50%;
  border-top: 1px solid transparent;
  border-top-color: inherit;
  border-bottom: 0;
  transform: translateY(50%);
  content: "";
}

.tbs-divider-horizontal.tbs-divider-with-text-left:before {
  width: 5%;
}

.tbs-divider-horizontal.tbs-divider-with-text-left:after {
  width: 95%;
}

.tbs-divider-horizontal.tbs-divider-with-text-right:before {
  width: 95%;
}

.tbs-divider-horizontal.tbs-divider-with-text-right:after {
  width: 5%;
}

.tbs-divider-inner-text {
  display: inline-block;
  padding: 0 1em;
}

.tbs-divider-dashed {
  background: none;
  border-color: rgba(0, 0, 0, 0.0588235294);
  border-style: dashed;
  border-width: 1px 0 0;
}

.tbs-divider-horizontal.tbs-divider-with-text.tbs-divider-dashed:before,
.tbs-divider-horizontal.tbs-divider-with-text.tbs-divider-dashed:after {
  border-style: dashed none none;
}

.tbs-divider-vertical.tbs-divider-dashed {
  border-width: 0 0 0 1px;
}

.tbs-divider-plain.tbs-divider-with-text {
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
}

.tbs-divider-horizontal.tbs-divider-with-text-left.tbs-divider-no-default-orientation-margin-left:before {
  width: 0;
}

.tbs-divider-horizontal.tbs-divider-with-text-left.tbs-divider-no-default-orientation-margin-left:after {
  width: 100%;
}

.tbs-divider-horizontal.tbs-divider-with-text-left.tbs-divider-no-default-orientation-margin-left .tbs-divider-inner-text {
  padding-left: 0;
}

.tbs-divider-horizontal.tbs-divider-with-text-right.tbs-divider-no-default-orientation-margin-right:before {
  width: 100%;
}

.tbs-divider-horizontal.tbs-divider-with-text-right.tbs-divider-no-default-orientation-margin-right:after {
  width: 0;
}

.tbs-divider-horizontal.tbs-divider-with-text-right.tbs-divider-no-default-orientation-margin-right .tbs-divider-inner-text {
  padding-right: 0;
}

.tbs-divider-rtl {
  direction: rtl;
}

.tbs-divider-rtl.tbs-divider-horizontal.tbs-divider-with-text-left:before {
  width: 95%;
}

.tbs-divider-rtl.tbs-divider-horizontal.tbs-divider-with-text-left:after {
  width: 5%;
}

.tbs-divider-rtl.tbs-divider-horizontal.tbs-divider-with-text-right:before {
  width: 5%;
}

.tbs-divider-rtl.tbs-divider-horizontal.tbs-divider-with-text-right:after {
  width: 95%;
}

.tbs-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.tbs-drawer-inline {
  position: absolute;
}

.tbs-drawer-mask {
  position: absolute;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4509803922);
  pointer-events: auto;
}

.tbs-drawer-content-wrapper {
  position: absolute;
  z-index: 1000;
  transition: all 0.3s;
}

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

.tbs-drawer-left > .tbs-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);
}

.tbs-drawer-right > .tbs-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);
}

.tbs-drawer-top > .tbs-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);
}

.tbs-drawer-bottom > .tbs-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);
}

.tbs-drawer-content {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  pointer-events: auto;
}

.tbs-drawer-wrapper-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.tbs-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);
}

.tbs-drawer-header-title {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  min-height: 0;
}

.tbs-drawer-extra {
  flex: none;
}

.tbs-drawer-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: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
  text-rendering: auto;
}

.tbs-drawer-close:focus,
.tbs-drawer-close:hover {
  color: rgba(0, 0, 0, 0.7490196078);
  text-decoration: none;
}

.tbs-drawer-title {
  flex: 1;
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.tbs-drawer-body {
  flex: 1;
  min-width: 0;
  min-height: 0;
  padding: 24px;
  overflow: auto;
}

.tbs-drawer-footer {
  flex-shrink: 0;
  padding: 10px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.panel-motion-enter-start,
.panel-motion-appear-start,
.panel-motion-leave-start {
  transition: none;
}

.panel-motion-enter-active,
.panel-motion-appear-active,
.panel-motion-leave-active,
.tbs-drawer-mask-motion-enter-active,
.tbs-drawer-mask-motion-appear-active,
.tbs-drawer-mask-motion-leave-active {
  transition: all 0.3s;
}

.tbs-drawer-mask-motion-enter,
.tbs-drawer-mask-motion-appear {
  opacity: 0;
}

.tbs-drawer-mask-motion-enter-active,
.tbs-drawer-mask-motion-appear-active,
.tbs-drawer-mask-motion-leave {
  opacity: 1;
}

.tbs-drawer-mask-motion-leave-active {
  opacity: 0;
}

.tbs-drawer-panel-motion-left-enter-start,
.tbs-drawer-panel-motion-left-appear-start,
.tbs-drawer-panel-motion-left-leave-start {
  transition: none;
}

.tbs-drawer-panel-motion-left-enter-active,
.tbs-drawer-panel-motion-left-appear-active,
.tbs-drawer-panel-motion-left-leave-active {
  transition: all 0.3s;
}

.tbs-drawer-panel-motion-left-enter-start,
.tbs-drawer-panel-motion-left-appear-start {
  transform: translate(-100%) !important;
}

.tbs-drawer-panel-motion-left-enter-active,
.tbs-drawer-panel-motion-left-appear-active,
.tbs-drawer-panel-motion-left-leave {
  transform: translate(0);
}

.tbs-drawer-panel-motion-left-leave-active {
  transform: translate(-100%);
}

.tbs-drawer-panel-motion-right-enter-start,
.tbs-drawer-panel-motion-right-appear-start,
.tbs-drawer-panel-motion-right-leave-start {
  transition: none;
}

.tbs-drawer-panel-motion-right-enter-active,
.tbs-drawer-panel-motion-right-appear-active,
.tbs-drawer-panel-motion-right-leave-active {
  transition: all 0.3s;
}

.tbs-drawer-panel-motion-right-enter-start,
.tbs-drawer-panel-motion-right-appear-start {
  transform: translate(100%) !important;
}

.tbs-drawer-panel-motion-right-enter-active,
.tbs-drawer-panel-motion-right-appear-active,
.tbs-drawer-panel-motion-right-leave {
  transform: translate(0);
}

.tbs-drawer-panel-motion-right-leave-active {
  transform: translate(100%);
}

.tbs-drawer-panel-motion-top-enter-start,
.tbs-drawer-panel-motion-top-appear-start,
.tbs-drawer-panel-motion-top-leave-start {
  transition: none;
}

.tbs-drawer-panel-motion-top-enter-active,
.tbs-drawer-panel-motion-top-appear-active,
.tbs-drawer-panel-motion-top-leave-active {
  transition: all 0.3s;
}

.tbs-drawer-panel-motion-top-enter-start,
.tbs-drawer-panel-motion-top-appear-start {
  transform: translateY(-100%) !important;
}

.tbs-drawer-panel-motion-top-enter-active,
.tbs-drawer-panel-motion-top-appear-active,
.tbs-drawer-panel-motion-top-leave {
  transform: translateY(0);
}

.tbs-drawer-panel-motion-top-leave-active {
  transform: translateY(-100%);
}

.tbs-drawer-panel-motion-bottom-enter-start,
.tbs-drawer-panel-motion-bottom-appear-start,
.tbs-drawer-panel-motion-bottom-leave-start {
  transition: none;
}

.tbs-drawer-panel-motion-bottom-enter-active,
.tbs-drawer-panel-motion-bottom-appear-active,
.tbs-drawer-panel-motion-bottom-leave-active {
  transition: all 0.3s;
}

.tbs-drawer-panel-motion-bottom-enter-start,
.tbs-drawer-panel-motion-bottom-appear-start {
  transform: translateY(100%) !important;
}

.tbs-drawer-panel-motion-bottom-enter-active,
.tbs-drawer-panel-motion-bottom-appear-active,
.tbs-drawer-panel-motion-bottom-leave {
  transform: translateY(0);
}

.tbs-drawer-panel-motion-bottom-leave-active {
  transform: translateY(100%);
}

.tbs-drawer-rtl {
  direction: rtl;
}

.tbs-drawer-rtl .tbs-drawer-close {
  margin-right: 0;
  margin-left: 12px;
}

.tbs-drawer:not(.tbs-drawer-open) .tbs-drawer-content-wrapper {
  box-shadow: none;
}

.tbs-dropdown-menu-item.tbs-dropdown-menu-item-danger {
  color: var(--tbs-error-color);
}

.tbs-dropdown-menu-item.tbs-dropdown-menu-item-danger:hover {
  color: #fff;
  background-color: var(--tbs-error-color);
}

.tbs-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  display: block;
}

.tbs-dropdown:before {
  position: absolute;
  inset: -4px 0 -4px -7px;
  z-index: -9999;
  opacity: 0.0001;
  content: " ";
}

.tbs-dropdown-wrap {
  position: relative;
}

.tbs-dropdown-wrap .tbs-btn > .anticon-down {
  font-size: 10px;
}

.tbs-dropdown-wrap .anticon-down:before {
  transition: transform 0.2s;
}

.tbs-dropdown-wrap-open .anticon-down:before {
  transform: rotate(180deg);
}

.tbs-dropdown-hidden,
.tbs-dropdown-menu-hidden,
.tbs-dropdown-menu-submenu-hidden {
  display: none;
}

.tbs-dropdown-show-arrow.tbs-dropdown-placement-topLeft,
.tbs-dropdown-show-arrow.tbs-dropdown-placement-top,
.tbs-dropdown-show-arrow.tbs-dropdown-placement-topRight {
  padding-bottom: 15.3137085px;
}

.tbs-dropdown-show-arrow.tbs-dropdown-placement-bottomLeft,
.tbs-dropdown-show-arrow.tbs-dropdown-placement-bottom,
.tbs-dropdown-show-arrow.tbs-dropdown-placement-bottomRight {
  padding-top: 15.3137085px;
}

.tbs-dropdown-arrow {
  position: absolute;
  z-index: 1;
  display: block;
  width: 11.3137085px;
  height: 11.3137085px;
  border-radius: 0 0 2px;
  pointer-events: none;
}

.tbs-dropdown-arrow:before {
  position: absolute;
  top: -11.3137085px;
  left: -11.3137085px;
  width: 33.9411255px;
  height: 33.9411255px;
  background: #fff;
  background-repeat: no-repeat;
  background-position: -10px -10px;
  content: "";
  clip-path: inset(33% 33%);
  clip-path: path("M 9.849242404917499 24.091883092036785 A 5 5 0 0 1 13.384776310850237 22.627416997969522 L 20.627416997969522 22.627416997969522 A 2 2 0 0 0 22.627416997969522 20.627416997969522 L 22.627416997969522 13.384776310850237 A 5 5 0 0 1 24.091883092036785 9.849242404917499 L 23.091883092036785 9.849242404917499 L 9.849242404917499 23.091883092036785 Z");
}

.tbs-dropdown-placement-top > .tbs-dropdown-arrow,
.tbs-dropdown-placement-topLeft > .tbs-dropdown-arrow,
.tbs-dropdown-placement-topRight > .tbs-dropdown-arrow {
  bottom: 10px;
  box-shadow: 3px 3px 7px -3px rgba(0, 0, 0, 0.1019607843);
  transform: rotate(45deg);
}

.tbs-dropdown-placement-top > .tbs-dropdown-arrow {
  left: 50%;
  transform: translate(-50%) rotate(45deg);
}

.tbs-dropdown-placement-topLeft > .tbs-dropdown-arrow {
  left: 16px;
}

.tbs-dropdown-placement-topRight > .tbs-dropdown-arrow {
  right: 16px;
}

.tbs-dropdown-placement-bottom > .tbs-dropdown-arrow,
.tbs-dropdown-placement-bottomLeft > .tbs-dropdown-arrow,
.tbs-dropdown-placement-bottomRight > .tbs-dropdown-arrow {
  top: 9.41421356px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.1019607843);
  transform: rotate(-135deg) translateY(-0.5px);
}

.tbs-dropdown-placement-bottom > .tbs-dropdown-arrow {
  left: 50%;
  transform: translate(-50%) rotate(-135deg) translateY(-0.5px);
}

.tbs-dropdown-placement-bottomLeft > .tbs-dropdown-arrow {
  left: 16px;
}

.tbs-dropdown-placement-bottomRight > .tbs-dropdown-arrow {
  right: 16px;
}

.tbs-dropdown-menu {
  position: relative;
  margin: 0;
  padding: 4px 0;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.tbs-dropdown-menu-item-group-title {
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.4509803922);
  transition: all 0.3s;
}

.tbs-dropdown-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  background: transparent;
  box-shadow: none;
  transform-origin: 0 0;
}

.tbs-dropdown-menu-submenu-popup ul,
.tbs-dropdown-menu-submenu-popup li {
  list-style: none;
}

.tbs-dropdown-menu-submenu-popup ul {
  margin-right: 0.3em;
  margin-left: 0.3em;
}

.tbs-dropdown-menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.tbs-dropdown-menu-item-icon {
  min-width: 12px;
  margin-right: 8px;
  font-size: 12px;
}

.tbs-dropdown-menu-title-content {
  flex: auto;
}

.tbs-dropdown-menu-title-content > a {
  color: inherit;
  transition: all 0.3s;
}

.tbs-dropdown-menu-title-content > a:hover {
  color: inherit;
}

.tbs-dropdown-menu-title-content > a:after {
  position: absolute;
  inset: 0;
  content: "";
}

.tbs-dropdown-menu-item,
.tbs-dropdown-menu-submenu-title {
  clear: both;
  margin: 0;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-dropdown-menu-item-selected,
.tbs-dropdown-menu-submenu-title-selected {
  color: var(--tbs-primary-color);
  background-color: var(--tbs-primary-1);
}

.tbs-dropdown-menu-item:hover,
.tbs-dropdown-menu-submenu-title:hover,
.tbs-dropdown-menu-item.tbs-dropdown-menu-item-active,
.tbs-dropdown-menu-item.tbs-dropdown-menu-submenu-title-active,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-item-active,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-submenu-title-active {
  background-color: var(--tbs-neutral-400);
}

.tbs-dropdown-menu-item.tbs-dropdown-menu-item-disabled,
.tbs-dropdown-menu-item.tbs-dropdown-menu-submenu-title-disabled,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-item-disabled,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-submenu-title-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-dropdown-menu-item.tbs-dropdown-menu-item-disabled:hover,
.tbs-dropdown-menu-item.tbs-dropdown-menu-submenu-title-disabled:hover,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-item-disabled:hover,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-submenu-title-disabled:hover {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  cursor: not-allowed;
}

.tbs-dropdown-menu-item.tbs-dropdown-menu-item-disabled a,
.tbs-dropdown-menu-item.tbs-dropdown-menu-submenu-title-disabled a,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-item-disabled a,
.tbs-dropdown-menu-submenu-title.tbs-dropdown-menu-submenu-title-disabled a {
  pointer-events: none;
}

.tbs-dropdown-menu-item-divider,
.tbs-dropdown-menu-submenu-title-divider {
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  line-height: 0;
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-dropdown-menu-item .tbs-dropdown-menu-submenu-expand-icon,
.tbs-dropdown-menu-submenu-title .tbs-dropdown-menu-submenu-expand-icon {
  position: absolute;
  right: 8px;
}

.tbs-dropdown-menu-item .tbs-dropdown-menu-submenu-expand-icon .tbs-dropdown-menu-submenu-arrow-icon,
.tbs-dropdown-menu-submenu-title .tbs-dropdown-menu-submenu-expand-icon .tbs-dropdown-menu-submenu-arrow-icon {
  margin-right: 0 !important;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 10px;
  font-style: normal;
}

.tbs-dropdown-menu-item-group-list {
  margin: 0 8px;
  padding: 0;
  list-style: none;
}

.tbs-dropdown-menu-submenu-title {
  padding-right: 24px;
}

.tbs-dropdown-menu-submenu-vertical {
  position: relative;
}

.tbs-dropdown-menu-submenu-vertical > .tbs-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  margin-left: 4px;
  transform-origin: 0 0;
}

.tbs-dropdown-menu-submenu.tbs-dropdown-menu-submenu-disabled .tbs-dropdown-menu-submenu-title,
.tbs-dropdown-menu-submenu.tbs-dropdown-menu-submenu-disabled .tbs-dropdown-menu-submenu-title .tbs-dropdown-menu-submenu-arrow-icon {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  cursor: not-allowed;
}

.tbs-dropdown-menu-submenu-selected .tbs-dropdown-menu-submenu-title {
  color: var(--tbs-primary-color);
}

.tbs-dropdown.tbs-slide-down-enter.tbs-slide-down-enter-active.tbs-dropdown-placement-bottomLeft,
.tbs-dropdown.tbs-slide-down-appear.tbs-slide-down-appear-active.tbs-dropdown-placement-bottomLeft,
.tbs-dropdown.tbs-slide-down-enter.tbs-slide-down-enter-active.tbs-dropdown-placement-bottom,
.tbs-dropdown.tbs-slide-down-appear.tbs-slide-down-appear-active.tbs-dropdown-placement-bottom,
.tbs-dropdown.tbs-slide-down-enter.tbs-slide-down-enter-active.tbs-dropdown-placement-bottomRight,
.tbs-dropdown.tbs-slide-down-appear.tbs-slide-down-appear-active.tbs-dropdown-placement-bottomRight {
  animation-name: antSlideUpIn;
}

.tbs-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-dropdown-placement-topLeft,
.tbs-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-dropdown-placement-topLeft,
.tbs-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-dropdown-placement-top,
.tbs-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-dropdown-placement-top,
.tbs-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-dropdown-placement-topRight,
.tbs-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-dropdown-placement-topRight {
  animation-name: antSlideDownIn;
}

.tbs-dropdown.tbs-slide-down-leave.tbs-slide-down-leave-active.tbs-dropdown-placement-bottomLeft,
.tbs-dropdown.tbs-slide-down-leave.tbs-slide-down-leave-active.tbs-dropdown-placement-bottom,
.tbs-dropdown.tbs-slide-down-leave.tbs-slide-down-leave-active.tbs-dropdown-placement-bottomRight {
  animation-name: antSlideUpOut;
}

.tbs-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-dropdown-placement-topLeft,
.tbs-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-dropdown-placement-top,
.tbs-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-dropdown-placement-topRight {
  animation-name: antSlideDownOut;
}

.tbs-dropdown-trigger > .anticon.anticon-down,
.tbs-dropdown-link > .anticon.anticon-down,
.tbs-dropdown-button > .anticon.anticon-down {
  font-size: 10px;
  vertical-align: baseline;
}

.tbs-dropdown-button {
  white-space: nowrap;
}

.tbs-dropdown-button.tbs-btn-group > .tbs-btn-loading,
.tbs-dropdown-button.tbs-btn-group > .tbs-btn-loading + .tbs-btn {
  cursor: default;
  pointer-events: none;
}

.tbs-dropdown-button.tbs-btn-group > .tbs-btn-loading + .tbs-btn:before {
  display: block;
}

.tbs-dropdown-button.tbs-btn-group > .tbs-btn:last-child:not(:first-child):not(.tbs-btn-icon-only) {
  padding-right: 8px;
  padding-left: 8px;
}

.tbs-dropdown-menu-dark,
.tbs-dropdown-menu-dark .tbs-dropdown-menu {
  background: #001529;
}

.tbs-dropdown-menu-dark .tbs-dropdown-menu-item,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-submenu-title,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item > a,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item > .anticon + span > a {
  color: rgba(255, 255, 255, 0.6509803922);
}

.tbs-dropdown-menu-dark .tbs-dropdown-menu-item .tbs-dropdown-menu-submenu-arrow:after,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-submenu-title .tbs-dropdown-menu-submenu-arrow:after,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item > a .tbs-dropdown-menu-submenu-arrow:after,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item > .anticon + span > a .tbs-dropdown-menu-submenu-arrow:after {
  color: rgba(255, 255, 255, 0.6509803922);
}

.tbs-dropdown-menu-dark .tbs-dropdown-menu-item:hover,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-submenu-title:hover,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item > a:hover,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item > .anticon + span > a:hover {
  color: #fff;
  background: transparent;
}

.tbs-dropdown-menu-dark .tbs-dropdown-menu-item-selected,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item-selected:hover,
.tbs-dropdown-menu-dark .tbs-dropdown-menu-item-selected > a {
  color: #fff;
  background: var(--tbs-primary-color);
}

.tbs-dropdown-rtl {
  direction: rtl;
}

.tbs-dropdown-rtl.tbs-dropdown:before {
  right: -7px;
  left: 0;
}

.tbs-dropdown-menu.tbs-dropdown-menu-rtl,
.tbs-dropdown-rtl .tbs-dropdown-menu-item-group-title,
.tbs-dropdown-menu-submenu-rtl .tbs-dropdown-menu-item-group-title {
  direction: rtl;
  text-align: right;
}

.tbs-dropdown-menu-submenu-popup.tbs-dropdown-menu-submenu-rtl {
  transform-origin: 100% 0;
}

.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-popup ul,
.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-popup li,
.tbs-dropdown-rtl .tbs-dropdown-menu-item,
.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-title {
  text-align: right;
}

.tbs-dropdown-rtl .tbs-dropdown-menu-item > .anticon:first-child,
.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-title > .anticon:first-child,
.tbs-dropdown-rtl .tbs-dropdown-menu-item > span > .anticon:first-child,
.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-title > span > .anticon:first-child {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-dropdown-rtl .tbs-dropdown-menu-item .tbs-dropdown-menu-submenu-expand-icon,
.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-title .tbs-dropdown-menu-submenu-expand-icon {
  right: auto;
  left: 8px;
}

.tbs-dropdown-rtl .tbs-dropdown-menu-item .tbs-dropdown-menu-submenu-expand-icon .tbs-dropdown-menu-submenu-arrow-icon,
.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-title .tbs-dropdown-menu-submenu-expand-icon .tbs-dropdown-menu-submenu-arrow-icon {
  margin-left: 0 !important;
  transform: scaleX(-1);
}

.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-title {
  padding-right: 12px;
  padding-left: 24px;
}

.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-vertical > .tbs-dropdown-menu {
  right: 100%;
  left: 0;
  margin-right: 4px;
  margin-left: 0;
}

.tbs-dropdown-menu > ul {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

.tbs-dropdown {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
}

.tbs-dropdown-rtl .tbs-dropdown-menu-item .tbs-dropdown-menu-submenu-arrow,
.tbs-dropdown-rtl .tbs-dropdown-menu-submenu-title .tbs-dropdown-menu-submenu-arrow {
  transform: rotate(180deg);
}

.tbs-empty {
  margin: 0 8px;
  font-size: 14px;
  line-height: 1.5715;
  text-align: center;
}

.tbs-empty-image {
  height: 100px;
  margin-bottom: 8px;
}

.tbs-empty-image img {
  height: 100%;
}

.tbs-empty-image svg {
  height: 100%;
  margin: auto;
}

.tbs-empty-footer {
  margin-top: 16px;
}

.tbs-empty-normal {
  margin: 32px 0;
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-empty-normal .tbs-empty-image {
  height: 40px;
}

.tbs-empty-small {
  margin: 8px 0;
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-empty-small .tbs-empty-image {
  height: 35px;
}

.tbs-empty-img-default-ellipse {
  fill: var(--tbs-neutral-400);
  fill-opacity: 0.8;
}

.tbs-empty-img-default-path-1 {
  fill: #aeb8c2;
}

.tbs-empty-img-default-path-2 {
  fill: url(#linearGradient-1);
}

.tbs-empty-img-default-path-3 {
  fill: #f5f5f7;
}

.tbs-empty-img-default-path-4,
.tbs-empty-img-default-path-5 {
  fill: #dce0e6;
}

.tbs-empty-img-default-g {
  fill: #fff;
}

.tbs-empty-img-simple-ellipse {
  fill: var(--tbs-neutral-400);
}

.tbs-empty-img-simple-g {
  stroke: var(--tbs-neutral-600);
}

.tbs-empty-img-simple-path {
  fill: #fafafa;
}

.tbs-empty-rtl {
  direction: rtl;
}

tbs-empty {
  display: block;
}

.tbs-row {
  display: flex;
  flex-flow: row wrap;
  min-width: 0;
}

.tbs-row:before,
.tbs-row:after {
  display: flex;
}

.tbs-row-no-wrap {
  flex-wrap: nowrap;
}

.tbs-row-start {
  justify-content: flex-start;
}

.tbs-row-center {
  justify-content: center;
}

.tbs-row-end {
  justify-content: flex-end;
}

.tbs-row-space-between {
  justify-content: space-between;
}

.tbs-row-space-around {
  justify-content: space-around;
}

.tbs-row-space-evenly {
  justify-content: space-evenly;
}

.tbs-row-top {
  align-items: flex-start;
}

.tbs-row-middle {
  align-items: center;
}

.tbs-row-bottom {
  align-items: flex-end;
}

.tbs-col {
  position: relative;
  max-width: 100%;
  min-height: 1px;
}

.tbs-col-24 {
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
}

.tbs-col-push-24 {
  left: 100%;
}

.tbs-col-pull-24 {
  right: 100%;
}

.tbs-col-offset-24 {
  margin-left: 100%;
}

.tbs-col-order-24 {
  order: 24;
}

.tbs-col-23 {
  display: block;
  flex: 0 0 95.83333333%;
  max-width: 95.83333333%;
}

.tbs-col-push-23 {
  left: 95.83333333%;
}

.tbs-col-pull-23 {
  right: 95.83333333%;
}

.tbs-col-offset-23 {
  margin-left: 95.83333333%;
}

.tbs-col-order-23 {
  order: 23;
}

.tbs-col-22 {
  display: block;
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.tbs-col-push-22 {
  left: 91.66666667%;
}

.tbs-col-pull-22 {
  right: 91.66666667%;
}

.tbs-col-offset-22 {
  margin-left: 91.66666667%;
}

.tbs-col-order-22 {
  order: 22;
}

.tbs-col-21 {
  display: block;
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

.tbs-col-push-21 {
  left: 87.5%;
}

.tbs-col-pull-21 {
  right: 87.5%;
}

.tbs-col-offset-21 {
  margin-left: 87.5%;
}

.tbs-col-order-21 {
  order: 21;
}

.tbs-col-20 {
  display: block;
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.tbs-col-push-20 {
  left: 83.33333333%;
}

.tbs-col-pull-20 {
  right: 83.33333333%;
}

.tbs-col-offset-20 {
  margin-left: 83.33333333%;
}

.tbs-col-order-20 {
  order: 20;
}

.tbs-col-19 {
  display: block;
  flex: 0 0 79.16666667%;
  max-width: 79.16666667%;
}

.tbs-col-push-19 {
  left: 79.16666667%;
}

.tbs-col-pull-19 {
  right: 79.16666667%;
}

.tbs-col-offset-19 {
  margin-left: 79.16666667%;
}

.tbs-col-order-19 {
  order: 19;
}

.tbs-col-18 {
  display: block;
  flex: 0 0 75%;
  max-width: 75%;
}

.tbs-col-push-18 {
  left: 75%;
}

.tbs-col-pull-18 {
  right: 75%;
}

.tbs-col-offset-18 {
  margin-left: 75%;
}

.tbs-col-order-18 {
  order: 18;
}

.tbs-col-17 {
  display: block;
  flex: 0 0 70.83333333%;
  max-width: 70.83333333%;
}

.tbs-col-push-17 {
  left: 70.83333333%;
}

.tbs-col-pull-17 {
  right: 70.83333333%;
}

.tbs-col-offset-17 {
  margin-left: 70.83333333%;
}

.tbs-col-order-17 {
  order: 17;
}

.tbs-col-16 {
  display: block;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.tbs-col-push-16 {
  left: 66.66666667%;
}

.tbs-col-pull-16 {
  right: 66.66666667%;
}

.tbs-col-offset-16 {
  margin-left: 66.66666667%;
}

.tbs-col-order-16 {
  order: 16;
}

.tbs-col-15 {
  display: block;
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

.tbs-col-push-15 {
  left: 62.5%;
}

.tbs-col-pull-15 {
  right: 62.5%;
}

.tbs-col-offset-15 {
  margin-left: 62.5%;
}

.tbs-col-order-15 {
  order: 15;
}

.tbs-col-14 {
  display: block;
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.tbs-col-push-14 {
  left: 58.33333333%;
}

.tbs-col-pull-14 {
  right: 58.33333333%;
}

.tbs-col-offset-14 {
  margin-left: 58.33333333%;
}

.tbs-col-order-14 {
  order: 14;
}

.tbs-col-13 {
  display: block;
  flex: 0 0 54.16666667%;
  max-width: 54.16666667%;
}

.tbs-col-push-13 {
  left: 54.16666667%;
}

.tbs-col-pull-13 {
  right: 54.16666667%;
}

.tbs-col-offset-13 {
  margin-left: 54.16666667%;
}

.tbs-col-order-13 {
  order: 13;
}

.tbs-col-12 {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
}

.tbs-col-push-12 {
  left: 50%;
}

.tbs-col-pull-12 {
  right: 50%;
}

.tbs-col-offset-12 {
  margin-left: 50%;
}

.tbs-col-order-12 {
  order: 12;
}

.tbs-col-11 {
  display: block;
  flex: 0 0 45.83333333%;
  max-width: 45.83333333%;
}

.tbs-col-push-11 {
  left: 45.83333333%;
}

.tbs-col-pull-11 {
  right: 45.83333333%;
}

.tbs-col-offset-11 {
  margin-left: 45.83333333%;
}

.tbs-col-order-11 {
  order: 11;
}

.tbs-col-10 {
  display: block;
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.tbs-col-push-10 {
  left: 41.66666667%;
}

.tbs-col-pull-10 {
  right: 41.66666667%;
}

.tbs-col-offset-10 {
  margin-left: 41.66666667%;
}

.tbs-col-order-10 {
  order: 10;
}

.tbs-col-9 {
  display: block;
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

.tbs-col-push-9 {
  left: 37.5%;
}

.tbs-col-pull-9 {
  right: 37.5%;
}

.tbs-col-offset-9 {
  margin-left: 37.5%;
}

.tbs-col-order-9 {
  order: 9;
}

.tbs-col-8 {
  display: block;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.tbs-col-push-8 {
  left: 33.33333333%;
}

.tbs-col-pull-8 {
  right: 33.33333333%;
}

.tbs-col-offset-8 {
  margin-left: 33.33333333%;
}

.tbs-col-order-8 {
  order: 8;
}

.tbs-col-7 {
  display: block;
  flex: 0 0 29.16666667%;
  max-width: 29.16666667%;
}

.tbs-col-push-7 {
  left: 29.16666667%;
}

.tbs-col-pull-7 {
  right: 29.16666667%;
}

.tbs-col-offset-7 {
  margin-left: 29.16666667%;
}

.tbs-col-order-7 {
  order: 7;
}

.tbs-col-6 {
  display: block;
  flex: 0 0 25%;
  max-width: 25%;
}

.tbs-col-push-6 {
  left: 25%;
}

.tbs-col-pull-6 {
  right: 25%;
}

.tbs-col-offset-6 {
  margin-left: 25%;
}

.tbs-col-order-6 {
  order: 6;
}

.tbs-col-5 {
  display: block;
  flex: 0 0 20.83333333%;
  max-width: 20.83333333%;
}

.tbs-col-push-5 {
  left: 20.83333333%;
}

.tbs-col-pull-5 {
  right: 20.83333333%;
}

.tbs-col-offset-5 {
  margin-left: 20.83333333%;
}

.tbs-col-order-5 {
  order: 5;
}

.tbs-col-4 {
  display: block;
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.tbs-col-push-4 {
  left: 16.66666667%;
}

.tbs-col-pull-4 {
  right: 16.66666667%;
}

.tbs-col-offset-4 {
  margin-left: 16.66666667%;
}

.tbs-col-order-4 {
  order: 4;
}

.tbs-col-3 {
  display: block;
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.tbs-col-push-3 {
  left: 12.5%;
}

.tbs-col-pull-3 {
  right: 12.5%;
}

.tbs-col-offset-3 {
  margin-left: 12.5%;
}

.tbs-col-order-3 {
  order: 3;
}

.tbs-col-2 {
  display: block;
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.tbs-col-push-2 {
  left: 8.33333333%;
}

.tbs-col-pull-2 {
  right: 8.33333333%;
}

.tbs-col-offset-2 {
  margin-left: 8.33333333%;
}

.tbs-col-order-2 {
  order: 2;
}

.tbs-col-1 {
  display: block;
  flex: 0 0 4.16666667%;
  max-width: 4.16666667%;
}

.tbs-col-push-1 {
  left: 4.16666667%;
}

.tbs-col-pull-1 {
  right: 4.16666667%;
}

.tbs-col-offset-1 {
  margin-left: 4.16666667%;
}

.tbs-col-order-1 {
  order: 1;
}

.tbs-col-0 {
  display: none;
}

.tbs-col-offset-0 {
  margin-left: 0;
}

.tbs-col-order-0 {
  order: 0;
}

.tbs-col-offset-0.tbs-col-rtl {
  margin-right: 0;
}

.tbs-col-push-1.tbs-col-rtl {
  right: 4.16666667%;
  left: auto;
}

.tbs-col-pull-1.tbs-col-rtl {
  right: auto;
  left: 4.16666667%;
}

.tbs-col-offset-1.tbs-col-rtl {
  margin-right: 4.16666667%;
  margin-left: 0;
}

.tbs-col-push-2.tbs-col-rtl {
  right: 8.33333333%;
  left: auto;
}

.tbs-col-pull-2.tbs-col-rtl {
  right: auto;
  left: 8.33333333%;
}

.tbs-col-offset-2.tbs-col-rtl {
  margin-right: 8.33333333%;
  margin-left: 0;
}

.tbs-col-push-3.tbs-col-rtl {
  right: 12.5%;
  left: auto;
}

.tbs-col-pull-3.tbs-col-rtl {
  right: auto;
  left: 12.5%;
}

.tbs-col-offset-3.tbs-col-rtl {
  margin-right: 12.5%;
  margin-left: 0;
}

.tbs-col-push-4.tbs-col-rtl {
  right: 16.66666667%;
  left: auto;
}

.tbs-col-pull-4.tbs-col-rtl {
  right: auto;
  left: 16.66666667%;
}

.tbs-col-offset-4.tbs-col-rtl {
  margin-right: 16.66666667%;
  margin-left: 0;
}

.tbs-col-push-5.tbs-col-rtl {
  right: 20.83333333%;
  left: auto;
}

.tbs-col-pull-5.tbs-col-rtl {
  right: auto;
  left: 20.83333333%;
}

.tbs-col-offset-5.tbs-col-rtl {
  margin-right: 20.83333333%;
  margin-left: 0;
}

.tbs-col-push-6.tbs-col-rtl {
  right: 25%;
  left: auto;
}

.tbs-col-pull-6.tbs-col-rtl {
  right: auto;
  left: 25%;
}

.tbs-col-offset-6.tbs-col-rtl {
  margin-right: 25%;
  margin-left: 0;
}

.tbs-col-push-7.tbs-col-rtl {
  right: 29.16666667%;
  left: auto;
}

.tbs-col-pull-7.tbs-col-rtl {
  right: auto;
  left: 29.16666667%;
}

.tbs-col-offset-7.tbs-col-rtl {
  margin-right: 29.16666667%;
  margin-left: 0;
}

.tbs-col-push-8.tbs-col-rtl {
  right: 33.33333333%;
  left: auto;
}

.tbs-col-pull-8.tbs-col-rtl {
  right: auto;
  left: 33.33333333%;
}

.tbs-col-offset-8.tbs-col-rtl {
  margin-right: 33.33333333%;
  margin-left: 0;
}

.tbs-col-push-9.tbs-col-rtl {
  right: 37.5%;
  left: auto;
}

.tbs-col-pull-9.tbs-col-rtl {
  right: auto;
  left: 37.5%;
}

.tbs-col-offset-9.tbs-col-rtl {
  margin-right: 37.5%;
  margin-left: 0;
}

.tbs-col-push-10.tbs-col-rtl {
  right: 41.66666667%;
  left: auto;
}

.tbs-col-pull-10.tbs-col-rtl {
  right: auto;
  left: 41.66666667%;
}

.tbs-col-offset-10.tbs-col-rtl {
  margin-right: 41.66666667%;
  margin-left: 0;
}

.tbs-col-push-11.tbs-col-rtl {
  right: 45.83333333%;
  left: auto;
}

.tbs-col-pull-11.tbs-col-rtl {
  right: auto;
  left: 45.83333333%;
}

.tbs-col-offset-11.tbs-col-rtl {
  margin-right: 45.83333333%;
  margin-left: 0;
}

.tbs-col-push-12.tbs-col-rtl {
  right: 50%;
  left: auto;
}

.tbs-col-pull-12.tbs-col-rtl {
  right: auto;
  left: 50%;
}

.tbs-col-offset-12.tbs-col-rtl {
  margin-right: 50%;
  margin-left: 0;
}

.tbs-col-push-13.tbs-col-rtl {
  right: 54.16666667%;
  left: auto;
}

.tbs-col-pull-13.tbs-col-rtl {
  right: auto;
  left: 54.16666667%;
}

.tbs-col-offset-13.tbs-col-rtl {
  margin-right: 54.16666667%;
  margin-left: 0;
}

.tbs-col-push-14.tbs-col-rtl {
  right: 58.33333333%;
  left: auto;
}

.tbs-col-pull-14.tbs-col-rtl {
  right: auto;
  left: 58.33333333%;
}

.tbs-col-offset-14.tbs-col-rtl {
  margin-right: 58.33333333%;
  margin-left: 0;
}

.tbs-col-push-15.tbs-col-rtl {
  right: 62.5%;
  left: auto;
}

.tbs-col-pull-15.tbs-col-rtl {
  right: auto;
  left: 62.5%;
}

.tbs-col-offset-15.tbs-col-rtl {
  margin-right: 62.5%;
  margin-left: 0;
}

.tbs-col-push-16.tbs-col-rtl {
  right: 66.66666667%;
  left: auto;
}

.tbs-col-pull-16.tbs-col-rtl {
  right: auto;
  left: 66.66666667%;
}

.tbs-col-offset-16.tbs-col-rtl {
  margin-right: 66.66666667%;
  margin-left: 0;
}

.tbs-col-push-17.tbs-col-rtl {
  right: 70.83333333%;
  left: auto;
}

.tbs-col-pull-17.tbs-col-rtl {
  right: auto;
  left: 70.83333333%;
}

.tbs-col-offset-17.tbs-col-rtl {
  margin-right: 70.83333333%;
  margin-left: 0;
}

.tbs-col-push-18.tbs-col-rtl {
  right: 75%;
  left: auto;
}

.tbs-col-pull-18.tbs-col-rtl {
  right: auto;
  left: 75%;
}

.tbs-col-offset-18.tbs-col-rtl {
  margin-right: 75%;
  margin-left: 0;
}

.tbs-col-push-19.tbs-col-rtl {
  right: 79.16666667%;
  left: auto;
}

.tbs-col-pull-19.tbs-col-rtl {
  right: auto;
  left: 79.16666667%;
}

.tbs-col-offset-19.tbs-col-rtl {
  margin-right: 79.16666667%;
  margin-left: 0;
}

.tbs-col-push-20.tbs-col-rtl {
  right: 83.33333333%;
  left: auto;
}

.tbs-col-pull-20.tbs-col-rtl {
  right: auto;
  left: 83.33333333%;
}

.tbs-col-offset-20.tbs-col-rtl {
  margin-right: 83.33333333%;
  margin-left: 0;
}

.tbs-col-push-21.tbs-col-rtl {
  right: 87.5%;
  left: auto;
}

.tbs-col-pull-21.tbs-col-rtl {
  right: auto;
  left: 87.5%;
}

.tbs-col-offset-21.tbs-col-rtl {
  margin-right: 87.5%;
  margin-left: 0;
}

.tbs-col-push-22.tbs-col-rtl {
  right: 91.66666667%;
  left: auto;
}

.tbs-col-pull-22.tbs-col-rtl {
  right: auto;
  left: 91.66666667%;
}

.tbs-col-offset-22.tbs-col-rtl {
  margin-right: 91.66666667%;
  margin-left: 0;
}

.tbs-col-push-23.tbs-col-rtl {
  right: 95.83333333%;
  left: auto;
}

.tbs-col-pull-23.tbs-col-rtl {
  right: auto;
  left: 95.83333333%;
}

.tbs-col-offset-23.tbs-col-rtl {
  margin-right: 95.83333333%;
  margin-left: 0;
}

.tbs-col-push-24.tbs-col-rtl {
  right: 100%;
  left: auto;
}

.tbs-col-pull-24.tbs-col-rtl {
  right: auto;
  left: 100%;
}

.tbs-col-offset-24.tbs-col-rtl {
  margin-right: 100%;
  margin-left: 0;
}

.tbs-col-xs-24 {
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
}

.tbs-col-xs-push-24 {
  left: 100%;
}

.tbs-col-xs-pull-24 {
  right: 100%;
}

.tbs-col-xs-offset-24 {
  margin-left: 100%;
}

.tbs-col-xs-order-24 {
  order: 24;
}

.tbs-col-xs-23 {
  display: block;
  flex: 0 0 95.83333333%;
  max-width: 95.83333333%;
}

.tbs-col-xs-push-23 {
  left: 95.83333333%;
}

.tbs-col-xs-pull-23 {
  right: 95.83333333%;
}

.tbs-col-xs-offset-23 {
  margin-left: 95.83333333%;
}

.tbs-col-xs-order-23 {
  order: 23;
}

.tbs-col-xs-22 {
  display: block;
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.tbs-col-xs-push-22 {
  left: 91.66666667%;
}

.tbs-col-xs-pull-22 {
  right: 91.66666667%;
}

.tbs-col-xs-offset-22 {
  margin-left: 91.66666667%;
}

.tbs-col-xs-order-22 {
  order: 22;
}

.tbs-col-xs-21 {
  display: block;
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

.tbs-col-xs-push-21 {
  left: 87.5%;
}

.tbs-col-xs-pull-21 {
  right: 87.5%;
}

.tbs-col-xs-offset-21 {
  margin-left: 87.5%;
}

.tbs-col-xs-order-21 {
  order: 21;
}

.tbs-col-xs-20 {
  display: block;
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.tbs-col-xs-push-20 {
  left: 83.33333333%;
}

.tbs-col-xs-pull-20 {
  right: 83.33333333%;
}

.tbs-col-xs-offset-20 {
  margin-left: 83.33333333%;
}

.tbs-col-xs-order-20 {
  order: 20;
}

.tbs-col-xs-19 {
  display: block;
  flex: 0 0 79.16666667%;
  max-width: 79.16666667%;
}

.tbs-col-xs-push-19 {
  left: 79.16666667%;
}

.tbs-col-xs-pull-19 {
  right: 79.16666667%;
}

.tbs-col-xs-offset-19 {
  margin-left: 79.16666667%;
}

.tbs-col-xs-order-19 {
  order: 19;
}

.tbs-col-xs-18 {
  display: block;
  flex: 0 0 75%;
  max-width: 75%;
}

.tbs-col-xs-push-18 {
  left: 75%;
}

.tbs-col-xs-pull-18 {
  right: 75%;
}

.tbs-col-xs-offset-18 {
  margin-left: 75%;
}

.tbs-col-xs-order-18 {
  order: 18;
}

.tbs-col-xs-17 {
  display: block;
  flex: 0 0 70.83333333%;
  max-width: 70.83333333%;
}

.tbs-col-xs-push-17 {
  left: 70.83333333%;
}

.tbs-col-xs-pull-17 {
  right: 70.83333333%;
}

.tbs-col-xs-offset-17 {
  margin-left: 70.83333333%;
}

.tbs-col-xs-order-17 {
  order: 17;
}

.tbs-col-xs-16 {
  display: block;
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.tbs-col-xs-push-16 {
  left: 66.66666667%;
}

.tbs-col-xs-pull-16 {
  right: 66.66666667%;
}

.tbs-col-xs-offset-16 {
  margin-left: 66.66666667%;
}

.tbs-col-xs-order-16 {
  order: 16;
}

.tbs-col-xs-15 {
  display: block;
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

.tbs-col-xs-push-15 {
  left: 62.5%;
}

.tbs-col-xs-pull-15 {
  right: 62.5%;
}

.tbs-col-xs-offset-15 {
  margin-left: 62.5%;
}

.tbs-col-xs-order-15 {
  order: 15;
}

.tbs-col-xs-14 {
  display: block;
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.tbs-col-xs-push-14 {
  left: 58.33333333%;
}

.tbs-col-xs-pull-14 {
  right: 58.33333333%;
}

.tbs-col-xs-offset-14 {
  margin-left: 58.33333333%;
}

.tbs-col-xs-order-14 {
  order: 14;
}

.tbs-col-xs-13 {
  display: block;
  flex: 0 0 54.16666667%;
  max-width: 54.16666667%;
}

.tbs-col-xs-push-13 {
  left: 54.16666667%;
}

.tbs-col-xs-pull-13 {
  right: 54.16666667%;
}

.tbs-col-xs-offset-13 {
  margin-left: 54.16666667%;
}

.tbs-col-xs-order-13 {
  order: 13;
}

.tbs-col-xs-12 {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
}

.tbs-col-xs-push-12 {
  left: 50%;
}

.tbs-col-xs-pull-12 {
  right: 50%;
}

.tbs-col-xs-offset-12 {
  margin-left: 50%;
}

.tbs-col-xs-order-12 {
  order: 12;
}

.tbs-col-xs-11 {
  display: block;
  flex: 0 0 45.83333333%;
  max-width: 45.83333333%;
}

.tbs-col-xs-push-11 {
  left: 45.83333333%;
}

.tbs-col-xs-pull-11 {
  right: 45.83333333%;
}

.tbs-col-xs-offset-11 {
  margin-left: 45.83333333%;
}

.tbs-col-xs-order-11 {
  order: 11;
}

.tbs-col-xs-10 {
  display: block;
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.tbs-col-xs-push-10 {
  left: 41.66666667%;
}

.tbs-col-xs-pull-10 {
  right: 41.66666667%;
}

.tbs-col-xs-offset-10 {
  margin-left: 41.66666667%;
}

.tbs-col-xs-order-10 {
  order: 10;
}

.tbs-col-xs-9 {
  display: block;
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

.tbs-col-xs-push-9 {
  left: 37.5%;
}

.tbs-col-xs-pull-9 {
  right: 37.5%;
}

.tbs-col-xs-offset-9 {
  margin-left: 37.5%;
}

.tbs-col-xs-order-9 {
  order: 9;
}

.tbs-col-xs-8 {
  display: block;
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.tbs-col-xs-push-8 {
  left: 33.33333333%;
}

.tbs-col-xs-pull-8 {
  right: 33.33333333%;
}

.tbs-col-xs-offset-8 {
  margin-left: 33.33333333%;
}

.tbs-col-xs-order-8 {
  order: 8;
}

.tbs-col-xs-7 {
  display: block;
  flex: 0 0 29.16666667%;
  max-width: 29.16666667%;
}

.tbs-col-xs-push-7 {
  left: 29.16666667%;
}

.tbs-col-xs-pull-7 {
  right: 29.16666667%;
}

.tbs-col-xs-offset-7 {
  margin-left: 29.16666667%;
}

.tbs-col-xs-order-7 {
  order: 7;
}

.tbs-col-xs-6 {
  display: block;
  flex: 0 0 25%;
  max-width: 25%;
}

.tbs-col-xs-push-6 {
  left: 25%;
}

.tbs-col-xs-pull-6 {
  right: 25%;
}

.tbs-col-xs-offset-6 {
  margin-left: 25%;
}

.tbs-col-xs-order-6 {
  order: 6;
}

.tbs-col-xs-5 {
  display: block;
  flex: 0 0 20.83333333%;
  max-width: 20.83333333%;
}

.tbs-col-xs-push-5 {
  left: 20.83333333%;
}

.tbs-col-xs-pull-5 {
  right: 20.83333333%;
}

.tbs-col-xs-offset-5 {
  margin-left: 20.83333333%;
}

.tbs-col-xs-order-5 {
  order: 5;
}

.tbs-col-xs-4 {
  display: block;
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.tbs-col-xs-push-4 {
  left: 16.66666667%;
}

.tbs-col-xs-pull-4 {
  right: 16.66666667%;
}

.tbs-col-xs-offset-4 {
  margin-left: 16.66666667%;
}

.tbs-col-xs-order-4 {
  order: 4;
}

.tbs-col-xs-3 {
  display: block;
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.tbs-col-xs-push-3 {
  left: 12.5%;
}

.tbs-col-xs-pull-3 {
  right: 12.5%;
}

.tbs-col-xs-offset-3 {
  margin-left: 12.5%;
}

.tbs-col-xs-order-3 {
  order: 3;
}

.tbs-col-xs-2 {
  display: block;
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.tbs-col-xs-push-2 {
  left: 8.33333333%;
}

.tbs-col-xs-pull-2 {
  right: 8.33333333%;
}

.tbs-col-xs-offset-2 {
  margin-left: 8.33333333%;
}

.tbs-col-xs-order-2 {
  order: 2;
}

.tbs-col-xs-1 {
  display: block;
  flex: 0 0 4.16666667%;
  max-width: 4.16666667%;
}

.tbs-col-xs-push-1 {
  left: 4.16666667%;
}

.tbs-col-xs-pull-1 {
  right: 4.16666667%;
}

.tbs-col-xs-offset-1 {
  margin-left: 4.16666667%;
}

.tbs-col-xs-order-1 {
  order: 1;
}

.tbs-col-xs-0 {
  display: none;
}

.tbs-col-push-0 {
  left: auto;
}

.tbs-col-pull-0 {
  right: auto;
}

.tbs-col-xs-push-0 {
  left: auto;
}

.tbs-col-xs-pull-0 {
  right: auto;
}

.tbs-col-xs-offset-0 {
  margin-left: 0;
}

.tbs-col-xs-order-0 {
  order: 0;
}

.tbs-col-push-0.tbs-col-rtl {
  right: auto;
}

.tbs-col-pull-0.tbs-col-rtl {
  left: auto;
}

.tbs-col-xs-push-0.tbs-col-rtl {
  right: auto;
}

.tbs-col-xs-pull-0.tbs-col-rtl {
  left: auto;
}

.tbs-col-xs-offset-0.tbs-col-rtl {
  margin-right: 0;
}

.tbs-col-xs-push-1.tbs-col-rtl {
  right: 4.16666667%;
  left: auto;
}

.tbs-col-xs-pull-1.tbs-col-rtl {
  right: auto;
  left: 4.16666667%;
}

.tbs-col-xs-offset-1.tbs-col-rtl {
  margin-right: 4.16666667%;
  margin-left: 0;
}

.tbs-col-xs-push-2.tbs-col-rtl {
  right: 8.33333333%;
  left: auto;
}

.tbs-col-xs-pull-2.tbs-col-rtl {
  right: auto;
  left: 8.33333333%;
}

.tbs-col-xs-offset-2.tbs-col-rtl {
  margin-right: 8.33333333%;
  margin-left: 0;
}

.tbs-col-xs-push-3.tbs-col-rtl {
  right: 12.5%;
  left: auto;
}

.tbs-col-xs-pull-3.tbs-col-rtl {
  right: auto;
  left: 12.5%;
}

.tbs-col-xs-offset-3.tbs-col-rtl {
  margin-right: 12.5%;
  margin-left: 0;
}

.tbs-col-xs-push-4.tbs-col-rtl {
  right: 16.66666667%;
  left: auto;
}

.tbs-col-xs-pull-4.tbs-col-rtl {
  right: auto;
  left: 16.66666667%;
}

.tbs-col-xs-offset-4.tbs-col-rtl {
  margin-right: 16.66666667%;
  margin-left: 0;
}

.tbs-col-xs-push-5.tbs-col-rtl {
  right: 20.83333333%;
  left: auto;
}

.tbs-col-xs-pull-5.tbs-col-rtl {
  right: auto;
  left: 20.83333333%;
}

.tbs-col-xs-offset-5.tbs-col-rtl {
  margin-right: 20.83333333%;
  margin-left: 0;
}

.tbs-col-xs-push-6.tbs-col-rtl {
  right: 25%;
  left: auto;
}

.tbs-col-xs-pull-6.tbs-col-rtl {
  right: auto;
  left: 25%;
}

.tbs-col-xs-offset-6.tbs-col-rtl {
  margin-right: 25%;
  margin-left: 0;
}

.tbs-col-xs-push-7.tbs-col-rtl {
  right: 29.16666667%;
  left: auto;
}

.tbs-col-xs-pull-7.tbs-col-rtl {
  right: auto;
  left: 29.16666667%;
}

.tbs-col-xs-offset-7.tbs-col-rtl {
  margin-right: 29.16666667%;
  margin-left: 0;
}

.tbs-col-xs-push-8.tbs-col-rtl {
  right: 33.33333333%;
  left: auto;
}

.tbs-col-xs-pull-8.tbs-col-rtl {
  right: auto;
  left: 33.33333333%;
}

.tbs-col-xs-offset-8.tbs-col-rtl {
  margin-right: 33.33333333%;
  margin-left: 0;
}

.tbs-col-xs-push-9.tbs-col-rtl {
  right: 37.5%;
  left: auto;
}

.tbs-col-xs-pull-9.tbs-col-rtl {
  right: auto;
  left: 37.5%;
}

.tbs-col-xs-offset-9.tbs-col-rtl {
  margin-right: 37.5%;
  margin-left: 0;
}

.tbs-col-xs-push-10.tbs-col-rtl {
  right: 41.66666667%;
  left: auto;
}

.tbs-col-xs-pull-10.tbs-col-rtl {
  right: auto;
  left: 41.66666667%;
}

.tbs-col-xs-offset-10.tbs-col-rtl {
  margin-right: 41.66666667%;
  margin-left: 0;
}

.tbs-col-xs-push-11.tbs-col-rtl {
  right: 45.83333333%;
  left: auto;
}

.tbs-col-xs-pull-11.tbs-col-rtl {
  right: auto;
  left: 45.83333333%;
}

.tbs-col-xs-offset-11.tbs-col-rtl {
  margin-right: 45.83333333%;
  margin-left: 0;
}

.tbs-col-xs-push-12.tbs-col-rtl {
  right: 50%;
  left: auto;
}

.tbs-col-xs-pull-12.tbs-col-rtl {
  right: auto;
  left: 50%;
}

.tbs-col-xs-offset-12.tbs-col-rtl {
  margin-right: 50%;
  margin-left: 0;
}

.tbs-col-xs-push-13.tbs-col-rtl {
  right: 54.16666667%;
  left: auto;
}

.tbs-col-xs-pull-13.tbs-col-rtl {
  right: auto;
  left: 54.16666667%;
}

.tbs-col-xs-offset-13.tbs-col-rtl {
  margin-right: 54.16666667%;
  margin-left: 0;
}

.tbs-col-xs-push-14.tbs-col-rtl {
  right: 58.33333333%;
  left: auto;
}

.tbs-col-xs-pull-14.tbs-col-rtl {
  right: auto;
  left: 58.33333333%;
}

.tbs-col-xs-offset-14.tbs-col-rtl {
  margin-right: 58.33333333%;
  margin-left: 0;
}

.tbs-col-xs-push-15.tbs-col-rtl {
  right: 62.5%;
  left: auto;
}

.tbs-col-xs-pull-15.tbs-col-rtl {
  right: auto;
  left: 62.5%;
}

.tbs-col-xs-offset-15.tbs-col-rtl {
  margin-right: 62.5%;
  margin-left: 0;
}

.tbs-col-xs-push-16.tbs-col-rtl {
  right: 66.66666667%;
  left: auto;
}

.tbs-col-xs-pull-16.tbs-col-rtl {
  right: auto;
  left: 66.66666667%;
}

.tbs-col-xs-offset-16.tbs-col-rtl {
  margin-right: 66.66666667%;
  margin-left: 0;
}

.tbs-col-xs-push-17.tbs-col-rtl {
  right: 70.83333333%;
  left: auto;
}

.tbs-col-xs-pull-17.tbs-col-rtl {
  right: auto;
  left: 70.83333333%;
}

.tbs-col-xs-offset-17.tbs-col-rtl {
  margin-right: 70.83333333%;
  margin-left: 0;
}

.tbs-col-xs-push-18.tbs-col-rtl {
  right: 75%;
  left: auto;
}

.tbs-col-xs-pull-18.tbs-col-rtl {
  right: auto;
  left: 75%;
}

.tbs-col-xs-offset-18.tbs-col-rtl {
  margin-right: 75%;
  margin-left: 0;
}

.tbs-col-xs-push-19.tbs-col-rtl {
  right: 79.16666667%;
  left: auto;
}

.tbs-col-xs-pull-19.tbs-col-rtl {
  right: auto;
  left: 79.16666667%;
}

.tbs-col-xs-offset-19.tbs-col-rtl {
  margin-right: 79.16666667%;
  margin-left: 0;
}

.tbs-col-xs-push-20.tbs-col-rtl {
  right: 83.33333333%;
  left: auto;
}

.tbs-col-xs-pull-20.tbs-col-rtl {
  right: auto;
  left: 83.33333333%;
}

.tbs-col-xs-offset-20.tbs-col-rtl {
  margin-right: 83.33333333%;
  margin-left: 0;
}

.tbs-col-xs-push-21.tbs-col-rtl {
  right: 87.5%;
  left: auto;
}

.tbs-col-xs-pull-21.tbs-col-rtl {
  right: auto;
  left: 87.5%;
}

.tbs-col-xs-offset-21.tbs-col-rtl {
  margin-right: 87.5%;
  margin-left: 0;
}

.tbs-col-xs-push-22.tbs-col-rtl {
  right: 91.66666667%;
  left: auto;
}

.tbs-col-xs-pull-22.tbs-col-rtl {
  right: auto;
  left: 91.66666667%;
}

.tbs-col-xs-offset-22.tbs-col-rtl {
  margin-right: 91.66666667%;
  margin-left: 0;
}

.tbs-col-xs-push-23.tbs-col-rtl {
  right: 95.83333333%;
  left: auto;
}

.tbs-col-xs-pull-23.tbs-col-rtl {
  right: auto;
  left: 95.83333333%;
}

.tbs-col-xs-offset-23.tbs-col-rtl {
  margin-right: 95.83333333%;
  margin-left: 0;
}

.tbs-col-xs-push-24.tbs-col-rtl {
  right: 100%;
  left: auto;
}

.tbs-col-xs-pull-24.tbs-col-rtl {
  right: auto;
  left: 100%;
}

.tbs-col-xs-offset-24.tbs-col-rtl {
  margin-right: 100%;
  margin-left: 0;
}

@media (min-width: 576px) {
  .tbs-col-sm-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tbs-col-sm-push-24 {
    left: 100%;
  }
  .tbs-col-sm-pull-24 {
    right: 100%;
  }
  .tbs-col-sm-offset-24 {
    margin-left: 100%;
  }
  .tbs-col-sm-order-24 {
    order: 24;
  }
  .tbs-col-sm-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .tbs-col-sm-push-23 {
    left: 95.83333333%;
  }
  .tbs-col-sm-pull-23 {
    right: 95.83333333%;
  }
  .tbs-col-sm-offset-23 {
    margin-left: 95.83333333%;
  }
  .tbs-col-sm-order-23 {
    order: 23;
  }
  .tbs-col-sm-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .tbs-col-sm-push-22 {
    left: 91.66666667%;
  }
  .tbs-col-sm-pull-22 {
    right: 91.66666667%;
  }
  .tbs-col-sm-offset-22 {
    margin-left: 91.66666667%;
  }
  .tbs-col-sm-order-22 {
    order: 22;
  }
  .tbs-col-sm-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .tbs-col-sm-push-21 {
    left: 87.5%;
  }
  .tbs-col-sm-pull-21 {
    right: 87.5%;
  }
  .tbs-col-sm-offset-21 {
    margin-left: 87.5%;
  }
  .tbs-col-sm-order-21 {
    order: 21;
  }
  .tbs-col-sm-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .tbs-col-sm-push-20 {
    left: 83.33333333%;
  }
  .tbs-col-sm-pull-20 {
    right: 83.33333333%;
  }
  .tbs-col-sm-offset-20 {
    margin-left: 83.33333333%;
  }
  .tbs-col-sm-order-20 {
    order: 20;
  }
  .tbs-col-sm-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .tbs-col-sm-push-19 {
    left: 79.16666667%;
  }
  .tbs-col-sm-pull-19 {
    right: 79.16666667%;
  }
  .tbs-col-sm-offset-19 {
    margin-left: 79.16666667%;
  }
  .tbs-col-sm-order-19 {
    order: 19;
  }
  .tbs-col-sm-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .tbs-col-sm-push-18 {
    left: 75%;
  }
  .tbs-col-sm-pull-18 {
    right: 75%;
  }
  .tbs-col-sm-offset-18 {
    margin-left: 75%;
  }
  .tbs-col-sm-order-18 {
    order: 18;
  }
  .tbs-col-sm-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .tbs-col-sm-push-17 {
    left: 70.83333333%;
  }
  .tbs-col-sm-pull-17 {
    right: 70.83333333%;
  }
  .tbs-col-sm-offset-17 {
    margin-left: 70.83333333%;
  }
  .tbs-col-sm-order-17 {
    order: 17;
  }
  .tbs-col-sm-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .tbs-col-sm-push-16 {
    left: 66.66666667%;
  }
  .tbs-col-sm-pull-16 {
    right: 66.66666667%;
  }
  .tbs-col-sm-offset-16 {
    margin-left: 66.66666667%;
  }
  .tbs-col-sm-order-16 {
    order: 16;
  }
  .tbs-col-sm-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .tbs-col-sm-push-15 {
    left: 62.5%;
  }
  .tbs-col-sm-pull-15 {
    right: 62.5%;
  }
  .tbs-col-sm-offset-15 {
    margin-left: 62.5%;
  }
  .tbs-col-sm-order-15 {
    order: 15;
  }
  .tbs-col-sm-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .tbs-col-sm-push-14 {
    left: 58.33333333%;
  }
  .tbs-col-sm-pull-14 {
    right: 58.33333333%;
  }
  .tbs-col-sm-offset-14 {
    margin-left: 58.33333333%;
  }
  .tbs-col-sm-order-14 {
    order: 14;
  }
  .tbs-col-sm-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .tbs-col-sm-push-13 {
    left: 54.16666667%;
  }
  .tbs-col-sm-pull-13 {
    right: 54.16666667%;
  }
  .tbs-col-sm-offset-13 {
    margin-left: 54.16666667%;
  }
  .tbs-col-sm-order-13 {
    order: 13;
  }
  .tbs-col-sm-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tbs-col-sm-push-12 {
    left: 50%;
  }
  .tbs-col-sm-pull-12 {
    right: 50%;
  }
  .tbs-col-sm-offset-12 {
    margin-left: 50%;
  }
  .tbs-col-sm-order-12 {
    order: 12;
  }
  .tbs-col-sm-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .tbs-col-sm-push-11 {
    left: 45.83333333%;
  }
  .tbs-col-sm-pull-11 {
    right: 45.83333333%;
  }
  .tbs-col-sm-offset-11 {
    margin-left: 45.83333333%;
  }
  .tbs-col-sm-order-11 {
    order: 11;
  }
  .tbs-col-sm-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .tbs-col-sm-push-10 {
    left: 41.66666667%;
  }
  .tbs-col-sm-pull-10 {
    right: 41.66666667%;
  }
  .tbs-col-sm-offset-10 {
    margin-left: 41.66666667%;
  }
  .tbs-col-sm-order-10 {
    order: 10;
  }
  .tbs-col-sm-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .tbs-col-sm-push-9 {
    left: 37.5%;
  }
  .tbs-col-sm-pull-9 {
    right: 37.5%;
  }
  .tbs-col-sm-offset-9 {
    margin-left: 37.5%;
  }
  .tbs-col-sm-order-9 {
    order: 9;
  }
  .tbs-col-sm-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .tbs-col-sm-push-8 {
    left: 33.33333333%;
  }
  .tbs-col-sm-pull-8 {
    right: 33.33333333%;
  }
  .tbs-col-sm-offset-8 {
    margin-left: 33.33333333%;
  }
  .tbs-col-sm-order-8 {
    order: 8;
  }
  .tbs-col-sm-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .tbs-col-sm-push-7 {
    left: 29.16666667%;
  }
  .tbs-col-sm-pull-7 {
    right: 29.16666667%;
  }
  .tbs-col-sm-offset-7 {
    margin-left: 29.16666667%;
  }
  .tbs-col-sm-order-7 {
    order: 7;
  }
  .tbs-col-sm-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .tbs-col-sm-push-6 {
    left: 25%;
  }
  .tbs-col-sm-pull-6 {
    right: 25%;
  }
  .tbs-col-sm-offset-6 {
    margin-left: 25%;
  }
  .tbs-col-sm-order-6 {
    order: 6;
  }
  .tbs-col-sm-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .tbs-col-sm-push-5 {
    left: 20.83333333%;
  }
  .tbs-col-sm-pull-5 {
    right: 20.83333333%;
  }
  .tbs-col-sm-offset-5 {
    margin-left: 20.83333333%;
  }
  .tbs-col-sm-order-5 {
    order: 5;
  }
  .tbs-col-sm-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .tbs-col-sm-push-4 {
    left: 16.66666667%;
  }
  .tbs-col-sm-pull-4 {
    right: 16.66666667%;
  }
  .tbs-col-sm-offset-4 {
    margin-left: 16.66666667%;
  }
  .tbs-col-sm-order-4 {
    order: 4;
  }
  .tbs-col-sm-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .tbs-col-sm-push-3 {
    left: 12.5%;
  }
  .tbs-col-sm-pull-3 {
    right: 12.5%;
  }
  .tbs-col-sm-offset-3 {
    margin-left: 12.5%;
  }
  .tbs-col-sm-order-3 {
    order: 3;
  }
  .tbs-col-sm-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .tbs-col-sm-push-2 {
    left: 8.33333333%;
  }
  .tbs-col-sm-pull-2 {
    right: 8.33333333%;
  }
  .tbs-col-sm-offset-2 {
    margin-left: 8.33333333%;
  }
  .tbs-col-sm-order-2 {
    order: 2;
  }
  .tbs-col-sm-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .tbs-col-sm-push-1 {
    left: 4.16666667%;
  }
  .tbs-col-sm-pull-1 {
    right: 4.16666667%;
  }
  .tbs-col-sm-offset-1 {
    margin-left: 4.16666667%;
  }
  .tbs-col-sm-order-1 {
    order: 1;
  }
  .tbs-col-sm-0 {
    display: none;
  }
  .tbs-col-push-0 {
    left: auto;
  }
  .tbs-col-pull-0 {
    right: auto;
  }
  .tbs-col-sm-push-0 {
    left: auto;
  }
  .tbs-col-sm-pull-0 {
    right: auto;
  }
  .tbs-col-sm-offset-0 {
    margin-left: 0;
  }
  .tbs-col-sm-order-0 {
    order: 0;
  }
  .tbs-col-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-sm-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-sm-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-sm-offset-0.tbs-col-rtl {
    margin-right: 0;
  }
  .tbs-col-sm-push-1.tbs-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .tbs-col-sm-pull-1.tbs-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .tbs-col-sm-offset-1.tbs-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-2.tbs-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .tbs-col-sm-pull-2.tbs-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .tbs-col-sm-offset-2.tbs-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-3.tbs-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .tbs-col-sm-pull-3.tbs-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .tbs-col-sm-offset-3.tbs-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .tbs-col-sm-push-4.tbs-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .tbs-col-sm-pull-4.tbs-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .tbs-col-sm-offset-4.tbs-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-5.tbs-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .tbs-col-sm-pull-5.tbs-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .tbs-col-sm-offset-5.tbs-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-6.tbs-col-rtl {
    right: 25%;
    left: auto;
  }
  .tbs-col-sm-pull-6.tbs-col-rtl {
    right: auto;
    left: 25%;
  }
  .tbs-col-sm-offset-6.tbs-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .tbs-col-sm-push-7.tbs-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .tbs-col-sm-pull-7.tbs-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .tbs-col-sm-offset-7.tbs-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-8.tbs-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .tbs-col-sm-pull-8.tbs-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .tbs-col-sm-offset-8.tbs-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-9.tbs-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .tbs-col-sm-pull-9.tbs-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .tbs-col-sm-offset-9.tbs-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .tbs-col-sm-push-10.tbs-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .tbs-col-sm-pull-10.tbs-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .tbs-col-sm-offset-10.tbs-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-11.tbs-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .tbs-col-sm-pull-11.tbs-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .tbs-col-sm-offset-11.tbs-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-12.tbs-col-rtl {
    right: 50%;
    left: auto;
  }
  .tbs-col-sm-pull-12.tbs-col-rtl {
    right: auto;
    left: 50%;
  }
  .tbs-col-sm-offset-12.tbs-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .tbs-col-sm-push-13.tbs-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .tbs-col-sm-pull-13.tbs-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .tbs-col-sm-offset-13.tbs-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-14.tbs-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .tbs-col-sm-pull-14.tbs-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .tbs-col-sm-offset-14.tbs-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-15.tbs-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .tbs-col-sm-pull-15.tbs-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .tbs-col-sm-offset-15.tbs-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .tbs-col-sm-push-16.tbs-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .tbs-col-sm-pull-16.tbs-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .tbs-col-sm-offset-16.tbs-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-17.tbs-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .tbs-col-sm-pull-17.tbs-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .tbs-col-sm-offset-17.tbs-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-18.tbs-col-rtl {
    right: 75%;
    left: auto;
  }
  .tbs-col-sm-pull-18.tbs-col-rtl {
    right: auto;
    left: 75%;
  }
  .tbs-col-sm-offset-18.tbs-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .tbs-col-sm-push-19.tbs-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .tbs-col-sm-pull-19.tbs-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .tbs-col-sm-offset-19.tbs-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-20.tbs-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .tbs-col-sm-pull-20.tbs-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .tbs-col-sm-offset-20.tbs-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-21.tbs-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .tbs-col-sm-pull-21.tbs-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .tbs-col-sm-offset-21.tbs-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .tbs-col-sm-push-22.tbs-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .tbs-col-sm-pull-22.tbs-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .tbs-col-sm-offset-22.tbs-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .tbs-col-sm-push-23.tbs-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .tbs-col-sm-pull-23.tbs-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .tbs-col-sm-offset-23.tbs-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .tbs-col-sm-push-24.tbs-col-rtl {
    right: 100%;
    left: auto;
  }
  .tbs-col-sm-pull-24.tbs-col-rtl {
    right: auto;
    left: 100%;
  }
  .tbs-col-sm-offset-24.tbs-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .tbs-col-md-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tbs-col-md-push-24 {
    left: 100%;
  }
  .tbs-col-md-pull-24 {
    right: 100%;
  }
  .tbs-col-md-offset-24 {
    margin-left: 100%;
  }
  .tbs-col-md-order-24 {
    order: 24;
  }
  .tbs-col-md-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .tbs-col-md-push-23 {
    left: 95.83333333%;
  }
  .tbs-col-md-pull-23 {
    right: 95.83333333%;
  }
  .tbs-col-md-offset-23 {
    margin-left: 95.83333333%;
  }
  .tbs-col-md-order-23 {
    order: 23;
  }
  .tbs-col-md-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .tbs-col-md-push-22 {
    left: 91.66666667%;
  }
  .tbs-col-md-pull-22 {
    right: 91.66666667%;
  }
  .tbs-col-md-offset-22 {
    margin-left: 91.66666667%;
  }
  .tbs-col-md-order-22 {
    order: 22;
  }
  .tbs-col-md-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .tbs-col-md-push-21 {
    left: 87.5%;
  }
  .tbs-col-md-pull-21 {
    right: 87.5%;
  }
  .tbs-col-md-offset-21 {
    margin-left: 87.5%;
  }
  .tbs-col-md-order-21 {
    order: 21;
  }
  .tbs-col-md-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .tbs-col-md-push-20 {
    left: 83.33333333%;
  }
  .tbs-col-md-pull-20 {
    right: 83.33333333%;
  }
  .tbs-col-md-offset-20 {
    margin-left: 83.33333333%;
  }
  .tbs-col-md-order-20 {
    order: 20;
  }
  .tbs-col-md-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .tbs-col-md-push-19 {
    left: 79.16666667%;
  }
  .tbs-col-md-pull-19 {
    right: 79.16666667%;
  }
  .tbs-col-md-offset-19 {
    margin-left: 79.16666667%;
  }
  .tbs-col-md-order-19 {
    order: 19;
  }
  .tbs-col-md-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .tbs-col-md-push-18 {
    left: 75%;
  }
  .tbs-col-md-pull-18 {
    right: 75%;
  }
  .tbs-col-md-offset-18 {
    margin-left: 75%;
  }
  .tbs-col-md-order-18 {
    order: 18;
  }
  .tbs-col-md-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .tbs-col-md-push-17 {
    left: 70.83333333%;
  }
  .tbs-col-md-pull-17 {
    right: 70.83333333%;
  }
  .tbs-col-md-offset-17 {
    margin-left: 70.83333333%;
  }
  .tbs-col-md-order-17 {
    order: 17;
  }
  .tbs-col-md-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .tbs-col-md-push-16 {
    left: 66.66666667%;
  }
  .tbs-col-md-pull-16 {
    right: 66.66666667%;
  }
  .tbs-col-md-offset-16 {
    margin-left: 66.66666667%;
  }
  .tbs-col-md-order-16 {
    order: 16;
  }
  .tbs-col-md-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .tbs-col-md-push-15 {
    left: 62.5%;
  }
  .tbs-col-md-pull-15 {
    right: 62.5%;
  }
  .tbs-col-md-offset-15 {
    margin-left: 62.5%;
  }
  .tbs-col-md-order-15 {
    order: 15;
  }
  .tbs-col-md-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .tbs-col-md-push-14 {
    left: 58.33333333%;
  }
  .tbs-col-md-pull-14 {
    right: 58.33333333%;
  }
  .tbs-col-md-offset-14 {
    margin-left: 58.33333333%;
  }
  .tbs-col-md-order-14 {
    order: 14;
  }
  .tbs-col-md-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .tbs-col-md-push-13 {
    left: 54.16666667%;
  }
  .tbs-col-md-pull-13 {
    right: 54.16666667%;
  }
  .tbs-col-md-offset-13 {
    margin-left: 54.16666667%;
  }
  .tbs-col-md-order-13 {
    order: 13;
  }
  .tbs-col-md-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tbs-col-md-push-12 {
    left: 50%;
  }
  .tbs-col-md-pull-12 {
    right: 50%;
  }
  .tbs-col-md-offset-12 {
    margin-left: 50%;
  }
  .tbs-col-md-order-12 {
    order: 12;
  }
  .tbs-col-md-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .tbs-col-md-push-11 {
    left: 45.83333333%;
  }
  .tbs-col-md-pull-11 {
    right: 45.83333333%;
  }
  .tbs-col-md-offset-11 {
    margin-left: 45.83333333%;
  }
  .tbs-col-md-order-11 {
    order: 11;
  }
  .tbs-col-md-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .tbs-col-md-push-10 {
    left: 41.66666667%;
  }
  .tbs-col-md-pull-10 {
    right: 41.66666667%;
  }
  .tbs-col-md-offset-10 {
    margin-left: 41.66666667%;
  }
  .tbs-col-md-order-10 {
    order: 10;
  }
  .tbs-col-md-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .tbs-col-md-push-9 {
    left: 37.5%;
  }
  .tbs-col-md-pull-9 {
    right: 37.5%;
  }
  .tbs-col-md-offset-9 {
    margin-left: 37.5%;
  }
  .tbs-col-md-order-9 {
    order: 9;
  }
  .tbs-col-md-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .tbs-col-md-push-8 {
    left: 33.33333333%;
  }
  .tbs-col-md-pull-8 {
    right: 33.33333333%;
  }
  .tbs-col-md-offset-8 {
    margin-left: 33.33333333%;
  }
  .tbs-col-md-order-8 {
    order: 8;
  }
  .tbs-col-md-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .tbs-col-md-push-7 {
    left: 29.16666667%;
  }
  .tbs-col-md-pull-7 {
    right: 29.16666667%;
  }
  .tbs-col-md-offset-7 {
    margin-left: 29.16666667%;
  }
  .tbs-col-md-order-7 {
    order: 7;
  }
  .tbs-col-md-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .tbs-col-md-push-6 {
    left: 25%;
  }
  .tbs-col-md-pull-6 {
    right: 25%;
  }
  .tbs-col-md-offset-6 {
    margin-left: 25%;
  }
  .tbs-col-md-order-6 {
    order: 6;
  }
  .tbs-col-md-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .tbs-col-md-push-5 {
    left: 20.83333333%;
  }
  .tbs-col-md-pull-5 {
    right: 20.83333333%;
  }
  .tbs-col-md-offset-5 {
    margin-left: 20.83333333%;
  }
  .tbs-col-md-order-5 {
    order: 5;
  }
  .tbs-col-md-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .tbs-col-md-push-4 {
    left: 16.66666667%;
  }
  .tbs-col-md-pull-4 {
    right: 16.66666667%;
  }
  .tbs-col-md-offset-4 {
    margin-left: 16.66666667%;
  }
  .tbs-col-md-order-4 {
    order: 4;
  }
  .tbs-col-md-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .tbs-col-md-push-3 {
    left: 12.5%;
  }
  .tbs-col-md-pull-3 {
    right: 12.5%;
  }
  .tbs-col-md-offset-3 {
    margin-left: 12.5%;
  }
  .tbs-col-md-order-3 {
    order: 3;
  }
  .tbs-col-md-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .tbs-col-md-push-2 {
    left: 8.33333333%;
  }
  .tbs-col-md-pull-2 {
    right: 8.33333333%;
  }
  .tbs-col-md-offset-2 {
    margin-left: 8.33333333%;
  }
  .tbs-col-md-order-2 {
    order: 2;
  }
  .tbs-col-md-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .tbs-col-md-push-1 {
    left: 4.16666667%;
  }
  .tbs-col-md-pull-1 {
    right: 4.16666667%;
  }
  .tbs-col-md-offset-1 {
    margin-left: 4.16666667%;
  }
  .tbs-col-md-order-1 {
    order: 1;
  }
  .tbs-col-md-0 {
    display: none;
  }
  .tbs-col-push-0 {
    left: auto;
  }
  .tbs-col-pull-0 {
    right: auto;
  }
  .tbs-col-md-push-0 {
    left: auto;
  }
  .tbs-col-md-pull-0 {
    right: auto;
  }
  .tbs-col-md-offset-0 {
    margin-left: 0;
  }
  .tbs-col-md-order-0 {
    order: 0;
  }
  .tbs-col-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-md-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-md-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-md-offset-0.tbs-col-rtl {
    margin-right: 0;
  }
  .tbs-col-md-push-1.tbs-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .tbs-col-md-pull-1.tbs-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .tbs-col-md-offset-1.tbs-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-2.tbs-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .tbs-col-md-pull-2.tbs-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .tbs-col-md-offset-2.tbs-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-3.tbs-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .tbs-col-md-pull-3.tbs-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .tbs-col-md-offset-3.tbs-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .tbs-col-md-push-4.tbs-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .tbs-col-md-pull-4.tbs-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .tbs-col-md-offset-4.tbs-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-5.tbs-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .tbs-col-md-pull-5.tbs-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .tbs-col-md-offset-5.tbs-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-6.tbs-col-rtl {
    right: 25%;
    left: auto;
  }
  .tbs-col-md-pull-6.tbs-col-rtl {
    right: auto;
    left: 25%;
  }
  .tbs-col-md-offset-6.tbs-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .tbs-col-md-push-7.tbs-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .tbs-col-md-pull-7.tbs-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .tbs-col-md-offset-7.tbs-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-8.tbs-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .tbs-col-md-pull-8.tbs-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .tbs-col-md-offset-8.tbs-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-9.tbs-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .tbs-col-md-pull-9.tbs-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .tbs-col-md-offset-9.tbs-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .tbs-col-md-push-10.tbs-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .tbs-col-md-pull-10.tbs-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .tbs-col-md-offset-10.tbs-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-11.tbs-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .tbs-col-md-pull-11.tbs-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .tbs-col-md-offset-11.tbs-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-12.tbs-col-rtl {
    right: 50%;
    left: auto;
  }
  .tbs-col-md-pull-12.tbs-col-rtl {
    right: auto;
    left: 50%;
  }
  .tbs-col-md-offset-12.tbs-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .tbs-col-md-push-13.tbs-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .tbs-col-md-pull-13.tbs-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .tbs-col-md-offset-13.tbs-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-14.tbs-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .tbs-col-md-pull-14.tbs-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .tbs-col-md-offset-14.tbs-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-15.tbs-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .tbs-col-md-pull-15.tbs-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .tbs-col-md-offset-15.tbs-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .tbs-col-md-push-16.tbs-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .tbs-col-md-pull-16.tbs-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .tbs-col-md-offset-16.tbs-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-17.tbs-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .tbs-col-md-pull-17.tbs-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .tbs-col-md-offset-17.tbs-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-18.tbs-col-rtl {
    right: 75%;
    left: auto;
  }
  .tbs-col-md-pull-18.tbs-col-rtl {
    right: auto;
    left: 75%;
  }
  .tbs-col-md-offset-18.tbs-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .tbs-col-md-push-19.tbs-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .tbs-col-md-pull-19.tbs-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .tbs-col-md-offset-19.tbs-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-20.tbs-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .tbs-col-md-pull-20.tbs-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .tbs-col-md-offset-20.tbs-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-21.tbs-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .tbs-col-md-pull-21.tbs-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .tbs-col-md-offset-21.tbs-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .tbs-col-md-push-22.tbs-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .tbs-col-md-pull-22.tbs-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .tbs-col-md-offset-22.tbs-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .tbs-col-md-push-23.tbs-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .tbs-col-md-pull-23.tbs-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .tbs-col-md-offset-23.tbs-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .tbs-col-md-push-24.tbs-col-rtl {
    right: 100%;
    left: auto;
  }
  .tbs-col-md-pull-24.tbs-col-rtl {
    right: auto;
    left: 100%;
  }
  .tbs-col-md-offset-24.tbs-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .tbs-col-lg-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tbs-col-lg-push-24 {
    left: 100%;
  }
  .tbs-col-lg-pull-24 {
    right: 100%;
  }
  .tbs-col-lg-offset-24 {
    margin-left: 100%;
  }
  .tbs-col-lg-order-24 {
    order: 24;
  }
  .tbs-col-lg-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .tbs-col-lg-push-23 {
    left: 95.83333333%;
  }
  .tbs-col-lg-pull-23 {
    right: 95.83333333%;
  }
  .tbs-col-lg-offset-23 {
    margin-left: 95.83333333%;
  }
  .tbs-col-lg-order-23 {
    order: 23;
  }
  .tbs-col-lg-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .tbs-col-lg-push-22 {
    left: 91.66666667%;
  }
  .tbs-col-lg-pull-22 {
    right: 91.66666667%;
  }
  .tbs-col-lg-offset-22 {
    margin-left: 91.66666667%;
  }
  .tbs-col-lg-order-22 {
    order: 22;
  }
  .tbs-col-lg-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .tbs-col-lg-push-21 {
    left: 87.5%;
  }
  .tbs-col-lg-pull-21 {
    right: 87.5%;
  }
  .tbs-col-lg-offset-21 {
    margin-left: 87.5%;
  }
  .tbs-col-lg-order-21 {
    order: 21;
  }
  .tbs-col-lg-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .tbs-col-lg-push-20 {
    left: 83.33333333%;
  }
  .tbs-col-lg-pull-20 {
    right: 83.33333333%;
  }
  .tbs-col-lg-offset-20 {
    margin-left: 83.33333333%;
  }
  .tbs-col-lg-order-20 {
    order: 20;
  }
  .tbs-col-lg-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .tbs-col-lg-push-19 {
    left: 79.16666667%;
  }
  .tbs-col-lg-pull-19 {
    right: 79.16666667%;
  }
  .tbs-col-lg-offset-19 {
    margin-left: 79.16666667%;
  }
  .tbs-col-lg-order-19 {
    order: 19;
  }
  .tbs-col-lg-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .tbs-col-lg-push-18 {
    left: 75%;
  }
  .tbs-col-lg-pull-18 {
    right: 75%;
  }
  .tbs-col-lg-offset-18 {
    margin-left: 75%;
  }
  .tbs-col-lg-order-18 {
    order: 18;
  }
  .tbs-col-lg-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .tbs-col-lg-push-17 {
    left: 70.83333333%;
  }
  .tbs-col-lg-pull-17 {
    right: 70.83333333%;
  }
  .tbs-col-lg-offset-17 {
    margin-left: 70.83333333%;
  }
  .tbs-col-lg-order-17 {
    order: 17;
  }
  .tbs-col-lg-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .tbs-col-lg-push-16 {
    left: 66.66666667%;
  }
  .tbs-col-lg-pull-16 {
    right: 66.66666667%;
  }
  .tbs-col-lg-offset-16 {
    margin-left: 66.66666667%;
  }
  .tbs-col-lg-order-16 {
    order: 16;
  }
  .tbs-col-lg-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .tbs-col-lg-push-15 {
    left: 62.5%;
  }
  .tbs-col-lg-pull-15 {
    right: 62.5%;
  }
  .tbs-col-lg-offset-15 {
    margin-left: 62.5%;
  }
  .tbs-col-lg-order-15 {
    order: 15;
  }
  .tbs-col-lg-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .tbs-col-lg-push-14 {
    left: 58.33333333%;
  }
  .tbs-col-lg-pull-14 {
    right: 58.33333333%;
  }
  .tbs-col-lg-offset-14 {
    margin-left: 58.33333333%;
  }
  .tbs-col-lg-order-14 {
    order: 14;
  }
  .tbs-col-lg-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .tbs-col-lg-push-13 {
    left: 54.16666667%;
  }
  .tbs-col-lg-pull-13 {
    right: 54.16666667%;
  }
  .tbs-col-lg-offset-13 {
    margin-left: 54.16666667%;
  }
  .tbs-col-lg-order-13 {
    order: 13;
  }
  .tbs-col-lg-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tbs-col-lg-push-12 {
    left: 50%;
  }
  .tbs-col-lg-pull-12 {
    right: 50%;
  }
  .tbs-col-lg-offset-12 {
    margin-left: 50%;
  }
  .tbs-col-lg-order-12 {
    order: 12;
  }
  .tbs-col-lg-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .tbs-col-lg-push-11 {
    left: 45.83333333%;
  }
  .tbs-col-lg-pull-11 {
    right: 45.83333333%;
  }
  .tbs-col-lg-offset-11 {
    margin-left: 45.83333333%;
  }
  .tbs-col-lg-order-11 {
    order: 11;
  }
  .tbs-col-lg-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .tbs-col-lg-push-10 {
    left: 41.66666667%;
  }
  .tbs-col-lg-pull-10 {
    right: 41.66666667%;
  }
  .tbs-col-lg-offset-10 {
    margin-left: 41.66666667%;
  }
  .tbs-col-lg-order-10 {
    order: 10;
  }
  .tbs-col-lg-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .tbs-col-lg-push-9 {
    left: 37.5%;
  }
  .tbs-col-lg-pull-9 {
    right: 37.5%;
  }
  .tbs-col-lg-offset-9 {
    margin-left: 37.5%;
  }
  .tbs-col-lg-order-9 {
    order: 9;
  }
  .tbs-col-lg-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .tbs-col-lg-push-8 {
    left: 33.33333333%;
  }
  .tbs-col-lg-pull-8 {
    right: 33.33333333%;
  }
  .tbs-col-lg-offset-8 {
    margin-left: 33.33333333%;
  }
  .tbs-col-lg-order-8 {
    order: 8;
  }
  .tbs-col-lg-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .tbs-col-lg-push-7 {
    left: 29.16666667%;
  }
  .tbs-col-lg-pull-7 {
    right: 29.16666667%;
  }
  .tbs-col-lg-offset-7 {
    margin-left: 29.16666667%;
  }
  .tbs-col-lg-order-7 {
    order: 7;
  }
  .tbs-col-lg-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .tbs-col-lg-push-6 {
    left: 25%;
  }
  .tbs-col-lg-pull-6 {
    right: 25%;
  }
  .tbs-col-lg-offset-6 {
    margin-left: 25%;
  }
  .tbs-col-lg-order-6 {
    order: 6;
  }
  .tbs-col-lg-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .tbs-col-lg-push-5 {
    left: 20.83333333%;
  }
  .tbs-col-lg-pull-5 {
    right: 20.83333333%;
  }
  .tbs-col-lg-offset-5 {
    margin-left: 20.83333333%;
  }
  .tbs-col-lg-order-5 {
    order: 5;
  }
  .tbs-col-lg-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .tbs-col-lg-push-4 {
    left: 16.66666667%;
  }
  .tbs-col-lg-pull-4 {
    right: 16.66666667%;
  }
  .tbs-col-lg-offset-4 {
    margin-left: 16.66666667%;
  }
  .tbs-col-lg-order-4 {
    order: 4;
  }
  .tbs-col-lg-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .tbs-col-lg-push-3 {
    left: 12.5%;
  }
  .tbs-col-lg-pull-3 {
    right: 12.5%;
  }
  .tbs-col-lg-offset-3 {
    margin-left: 12.5%;
  }
  .tbs-col-lg-order-3 {
    order: 3;
  }
  .tbs-col-lg-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .tbs-col-lg-push-2 {
    left: 8.33333333%;
  }
  .tbs-col-lg-pull-2 {
    right: 8.33333333%;
  }
  .tbs-col-lg-offset-2 {
    margin-left: 8.33333333%;
  }
  .tbs-col-lg-order-2 {
    order: 2;
  }
  .tbs-col-lg-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .tbs-col-lg-push-1 {
    left: 4.16666667%;
  }
  .tbs-col-lg-pull-1 {
    right: 4.16666667%;
  }
  .tbs-col-lg-offset-1 {
    margin-left: 4.16666667%;
  }
  .tbs-col-lg-order-1 {
    order: 1;
  }
  .tbs-col-lg-0 {
    display: none;
  }
  .tbs-col-push-0 {
    left: auto;
  }
  .tbs-col-pull-0 {
    right: auto;
  }
  .tbs-col-lg-push-0 {
    left: auto;
  }
  .tbs-col-lg-pull-0 {
    right: auto;
  }
  .tbs-col-lg-offset-0 {
    margin-left: 0;
  }
  .tbs-col-lg-order-0 {
    order: 0;
  }
  .tbs-col-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-lg-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-lg-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-lg-offset-0.tbs-col-rtl {
    margin-right: 0;
  }
  .tbs-col-lg-push-1.tbs-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .tbs-col-lg-pull-1.tbs-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .tbs-col-lg-offset-1.tbs-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-2.tbs-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .tbs-col-lg-pull-2.tbs-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .tbs-col-lg-offset-2.tbs-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-3.tbs-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .tbs-col-lg-pull-3.tbs-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .tbs-col-lg-offset-3.tbs-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .tbs-col-lg-push-4.tbs-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .tbs-col-lg-pull-4.tbs-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .tbs-col-lg-offset-4.tbs-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-5.tbs-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .tbs-col-lg-pull-5.tbs-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .tbs-col-lg-offset-5.tbs-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-6.tbs-col-rtl {
    right: 25%;
    left: auto;
  }
  .tbs-col-lg-pull-6.tbs-col-rtl {
    right: auto;
    left: 25%;
  }
  .tbs-col-lg-offset-6.tbs-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .tbs-col-lg-push-7.tbs-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .tbs-col-lg-pull-7.tbs-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .tbs-col-lg-offset-7.tbs-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-8.tbs-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .tbs-col-lg-pull-8.tbs-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .tbs-col-lg-offset-8.tbs-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-9.tbs-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .tbs-col-lg-pull-9.tbs-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .tbs-col-lg-offset-9.tbs-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .tbs-col-lg-push-10.tbs-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .tbs-col-lg-pull-10.tbs-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .tbs-col-lg-offset-10.tbs-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-11.tbs-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .tbs-col-lg-pull-11.tbs-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .tbs-col-lg-offset-11.tbs-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-12.tbs-col-rtl {
    right: 50%;
    left: auto;
  }
  .tbs-col-lg-pull-12.tbs-col-rtl {
    right: auto;
    left: 50%;
  }
  .tbs-col-lg-offset-12.tbs-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .tbs-col-lg-push-13.tbs-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .tbs-col-lg-pull-13.tbs-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .tbs-col-lg-offset-13.tbs-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-14.tbs-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .tbs-col-lg-pull-14.tbs-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .tbs-col-lg-offset-14.tbs-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-15.tbs-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .tbs-col-lg-pull-15.tbs-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .tbs-col-lg-offset-15.tbs-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .tbs-col-lg-push-16.tbs-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .tbs-col-lg-pull-16.tbs-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .tbs-col-lg-offset-16.tbs-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-17.tbs-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .tbs-col-lg-pull-17.tbs-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .tbs-col-lg-offset-17.tbs-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-18.tbs-col-rtl {
    right: 75%;
    left: auto;
  }
  .tbs-col-lg-pull-18.tbs-col-rtl {
    right: auto;
    left: 75%;
  }
  .tbs-col-lg-offset-18.tbs-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .tbs-col-lg-push-19.tbs-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .tbs-col-lg-pull-19.tbs-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .tbs-col-lg-offset-19.tbs-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-20.tbs-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .tbs-col-lg-pull-20.tbs-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .tbs-col-lg-offset-20.tbs-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-21.tbs-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .tbs-col-lg-pull-21.tbs-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .tbs-col-lg-offset-21.tbs-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .tbs-col-lg-push-22.tbs-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .tbs-col-lg-pull-22.tbs-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .tbs-col-lg-offset-22.tbs-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .tbs-col-lg-push-23.tbs-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .tbs-col-lg-pull-23.tbs-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .tbs-col-lg-offset-23.tbs-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .tbs-col-lg-push-24.tbs-col-rtl {
    right: 100%;
    left: auto;
  }
  .tbs-col-lg-pull-24.tbs-col-rtl {
    right: auto;
    left: 100%;
  }
  .tbs-col-lg-offset-24.tbs-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .tbs-col-xl-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tbs-col-xl-push-24 {
    left: 100%;
  }
  .tbs-col-xl-pull-24 {
    right: 100%;
  }
  .tbs-col-xl-offset-24 {
    margin-left: 100%;
  }
  .tbs-col-xl-order-24 {
    order: 24;
  }
  .tbs-col-xl-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .tbs-col-xl-push-23 {
    left: 95.83333333%;
  }
  .tbs-col-xl-pull-23 {
    right: 95.83333333%;
  }
  .tbs-col-xl-offset-23 {
    margin-left: 95.83333333%;
  }
  .tbs-col-xl-order-23 {
    order: 23;
  }
  .tbs-col-xl-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .tbs-col-xl-push-22 {
    left: 91.66666667%;
  }
  .tbs-col-xl-pull-22 {
    right: 91.66666667%;
  }
  .tbs-col-xl-offset-22 {
    margin-left: 91.66666667%;
  }
  .tbs-col-xl-order-22 {
    order: 22;
  }
  .tbs-col-xl-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .tbs-col-xl-push-21 {
    left: 87.5%;
  }
  .tbs-col-xl-pull-21 {
    right: 87.5%;
  }
  .tbs-col-xl-offset-21 {
    margin-left: 87.5%;
  }
  .tbs-col-xl-order-21 {
    order: 21;
  }
  .tbs-col-xl-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .tbs-col-xl-push-20 {
    left: 83.33333333%;
  }
  .tbs-col-xl-pull-20 {
    right: 83.33333333%;
  }
  .tbs-col-xl-offset-20 {
    margin-left: 83.33333333%;
  }
  .tbs-col-xl-order-20 {
    order: 20;
  }
  .tbs-col-xl-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .tbs-col-xl-push-19 {
    left: 79.16666667%;
  }
  .tbs-col-xl-pull-19 {
    right: 79.16666667%;
  }
  .tbs-col-xl-offset-19 {
    margin-left: 79.16666667%;
  }
  .tbs-col-xl-order-19 {
    order: 19;
  }
  .tbs-col-xl-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .tbs-col-xl-push-18 {
    left: 75%;
  }
  .tbs-col-xl-pull-18 {
    right: 75%;
  }
  .tbs-col-xl-offset-18 {
    margin-left: 75%;
  }
  .tbs-col-xl-order-18 {
    order: 18;
  }
  .tbs-col-xl-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .tbs-col-xl-push-17 {
    left: 70.83333333%;
  }
  .tbs-col-xl-pull-17 {
    right: 70.83333333%;
  }
  .tbs-col-xl-offset-17 {
    margin-left: 70.83333333%;
  }
  .tbs-col-xl-order-17 {
    order: 17;
  }
  .tbs-col-xl-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .tbs-col-xl-push-16 {
    left: 66.66666667%;
  }
  .tbs-col-xl-pull-16 {
    right: 66.66666667%;
  }
  .tbs-col-xl-offset-16 {
    margin-left: 66.66666667%;
  }
  .tbs-col-xl-order-16 {
    order: 16;
  }
  .tbs-col-xl-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .tbs-col-xl-push-15 {
    left: 62.5%;
  }
  .tbs-col-xl-pull-15 {
    right: 62.5%;
  }
  .tbs-col-xl-offset-15 {
    margin-left: 62.5%;
  }
  .tbs-col-xl-order-15 {
    order: 15;
  }
  .tbs-col-xl-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .tbs-col-xl-push-14 {
    left: 58.33333333%;
  }
  .tbs-col-xl-pull-14 {
    right: 58.33333333%;
  }
  .tbs-col-xl-offset-14 {
    margin-left: 58.33333333%;
  }
  .tbs-col-xl-order-14 {
    order: 14;
  }
  .tbs-col-xl-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .tbs-col-xl-push-13 {
    left: 54.16666667%;
  }
  .tbs-col-xl-pull-13 {
    right: 54.16666667%;
  }
  .tbs-col-xl-offset-13 {
    margin-left: 54.16666667%;
  }
  .tbs-col-xl-order-13 {
    order: 13;
  }
  .tbs-col-xl-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tbs-col-xl-push-12 {
    left: 50%;
  }
  .tbs-col-xl-pull-12 {
    right: 50%;
  }
  .tbs-col-xl-offset-12 {
    margin-left: 50%;
  }
  .tbs-col-xl-order-12 {
    order: 12;
  }
  .tbs-col-xl-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .tbs-col-xl-push-11 {
    left: 45.83333333%;
  }
  .tbs-col-xl-pull-11 {
    right: 45.83333333%;
  }
  .tbs-col-xl-offset-11 {
    margin-left: 45.83333333%;
  }
  .tbs-col-xl-order-11 {
    order: 11;
  }
  .tbs-col-xl-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .tbs-col-xl-push-10 {
    left: 41.66666667%;
  }
  .tbs-col-xl-pull-10 {
    right: 41.66666667%;
  }
  .tbs-col-xl-offset-10 {
    margin-left: 41.66666667%;
  }
  .tbs-col-xl-order-10 {
    order: 10;
  }
  .tbs-col-xl-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .tbs-col-xl-push-9 {
    left: 37.5%;
  }
  .tbs-col-xl-pull-9 {
    right: 37.5%;
  }
  .tbs-col-xl-offset-9 {
    margin-left: 37.5%;
  }
  .tbs-col-xl-order-9 {
    order: 9;
  }
  .tbs-col-xl-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .tbs-col-xl-push-8 {
    left: 33.33333333%;
  }
  .tbs-col-xl-pull-8 {
    right: 33.33333333%;
  }
  .tbs-col-xl-offset-8 {
    margin-left: 33.33333333%;
  }
  .tbs-col-xl-order-8 {
    order: 8;
  }
  .tbs-col-xl-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .tbs-col-xl-push-7 {
    left: 29.16666667%;
  }
  .tbs-col-xl-pull-7 {
    right: 29.16666667%;
  }
  .tbs-col-xl-offset-7 {
    margin-left: 29.16666667%;
  }
  .tbs-col-xl-order-7 {
    order: 7;
  }
  .tbs-col-xl-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .tbs-col-xl-push-6 {
    left: 25%;
  }
  .tbs-col-xl-pull-6 {
    right: 25%;
  }
  .tbs-col-xl-offset-6 {
    margin-left: 25%;
  }
  .tbs-col-xl-order-6 {
    order: 6;
  }
  .tbs-col-xl-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .tbs-col-xl-push-5 {
    left: 20.83333333%;
  }
  .tbs-col-xl-pull-5 {
    right: 20.83333333%;
  }
  .tbs-col-xl-offset-5 {
    margin-left: 20.83333333%;
  }
  .tbs-col-xl-order-5 {
    order: 5;
  }
  .tbs-col-xl-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .tbs-col-xl-push-4 {
    left: 16.66666667%;
  }
  .tbs-col-xl-pull-4 {
    right: 16.66666667%;
  }
  .tbs-col-xl-offset-4 {
    margin-left: 16.66666667%;
  }
  .tbs-col-xl-order-4 {
    order: 4;
  }
  .tbs-col-xl-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .tbs-col-xl-push-3 {
    left: 12.5%;
  }
  .tbs-col-xl-pull-3 {
    right: 12.5%;
  }
  .tbs-col-xl-offset-3 {
    margin-left: 12.5%;
  }
  .tbs-col-xl-order-3 {
    order: 3;
  }
  .tbs-col-xl-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .tbs-col-xl-push-2 {
    left: 8.33333333%;
  }
  .tbs-col-xl-pull-2 {
    right: 8.33333333%;
  }
  .tbs-col-xl-offset-2 {
    margin-left: 8.33333333%;
  }
  .tbs-col-xl-order-2 {
    order: 2;
  }
  .tbs-col-xl-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .tbs-col-xl-push-1 {
    left: 4.16666667%;
  }
  .tbs-col-xl-pull-1 {
    right: 4.16666667%;
  }
  .tbs-col-xl-offset-1 {
    margin-left: 4.16666667%;
  }
  .tbs-col-xl-order-1 {
    order: 1;
  }
  .tbs-col-xl-0 {
    display: none;
  }
  .tbs-col-push-0 {
    left: auto;
  }
  .tbs-col-pull-0 {
    right: auto;
  }
  .tbs-col-xl-push-0 {
    left: auto;
  }
  .tbs-col-xl-pull-0 {
    right: auto;
  }
  .tbs-col-xl-offset-0 {
    margin-left: 0;
  }
  .tbs-col-xl-order-0 {
    order: 0;
  }
  .tbs-col-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-xl-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-xl-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-xl-offset-0.tbs-col-rtl {
    margin-right: 0;
  }
  .tbs-col-xl-push-1.tbs-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .tbs-col-xl-pull-1.tbs-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .tbs-col-xl-offset-1.tbs-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-2.tbs-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .tbs-col-xl-pull-2.tbs-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .tbs-col-xl-offset-2.tbs-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-3.tbs-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .tbs-col-xl-pull-3.tbs-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .tbs-col-xl-offset-3.tbs-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .tbs-col-xl-push-4.tbs-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .tbs-col-xl-pull-4.tbs-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .tbs-col-xl-offset-4.tbs-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-5.tbs-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .tbs-col-xl-pull-5.tbs-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .tbs-col-xl-offset-5.tbs-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-6.tbs-col-rtl {
    right: 25%;
    left: auto;
  }
  .tbs-col-xl-pull-6.tbs-col-rtl {
    right: auto;
    left: 25%;
  }
  .tbs-col-xl-offset-6.tbs-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .tbs-col-xl-push-7.tbs-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .tbs-col-xl-pull-7.tbs-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .tbs-col-xl-offset-7.tbs-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-8.tbs-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .tbs-col-xl-pull-8.tbs-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .tbs-col-xl-offset-8.tbs-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-9.tbs-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .tbs-col-xl-pull-9.tbs-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .tbs-col-xl-offset-9.tbs-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .tbs-col-xl-push-10.tbs-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .tbs-col-xl-pull-10.tbs-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .tbs-col-xl-offset-10.tbs-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-11.tbs-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .tbs-col-xl-pull-11.tbs-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .tbs-col-xl-offset-11.tbs-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-12.tbs-col-rtl {
    right: 50%;
    left: auto;
  }
  .tbs-col-xl-pull-12.tbs-col-rtl {
    right: auto;
    left: 50%;
  }
  .tbs-col-xl-offset-12.tbs-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .tbs-col-xl-push-13.tbs-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .tbs-col-xl-pull-13.tbs-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .tbs-col-xl-offset-13.tbs-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-14.tbs-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .tbs-col-xl-pull-14.tbs-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .tbs-col-xl-offset-14.tbs-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-15.tbs-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .tbs-col-xl-pull-15.tbs-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .tbs-col-xl-offset-15.tbs-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .tbs-col-xl-push-16.tbs-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .tbs-col-xl-pull-16.tbs-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .tbs-col-xl-offset-16.tbs-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-17.tbs-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .tbs-col-xl-pull-17.tbs-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .tbs-col-xl-offset-17.tbs-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-18.tbs-col-rtl {
    right: 75%;
    left: auto;
  }
  .tbs-col-xl-pull-18.tbs-col-rtl {
    right: auto;
    left: 75%;
  }
  .tbs-col-xl-offset-18.tbs-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .tbs-col-xl-push-19.tbs-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .tbs-col-xl-pull-19.tbs-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .tbs-col-xl-offset-19.tbs-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-20.tbs-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .tbs-col-xl-pull-20.tbs-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .tbs-col-xl-offset-20.tbs-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-21.tbs-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .tbs-col-xl-pull-21.tbs-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .tbs-col-xl-offset-21.tbs-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .tbs-col-xl-push-22.tbs-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .tbs-col-xl-pull-22.tbs-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .tbs-col-xl-offset-22.tbs-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .tbs-col-xl-push-23.tbs-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .tbs-col-xl-pull-23.tbs-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .tbs-col-xl-offset-23.tbs-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .tbs-col-xl-push-24.tbs-col-rtl {
    right: 100%;
    left: auto;
  }
  .tbs-col-xl-pull-24.tbs-col-rtl {
    right: auto;
    left: 100%;
  }
  .tbs-col-xl-offset-24.tbs-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
@media (min-width: 1600px) {
  .tbs-col-xxl-24 {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tbs-col-xxl-push-24 {
    left: 100%;
  }
  .tbs-col-xxl-pull-24 {
    right: 100%;
  }
  .tbs-col-xxl-offset-24 {
    margin-left: 100%;
  }
  .tbs-col-xxl-order-24 {
    order: 24;
  }
  .tbs-col-xxl-23 {
    display: block;
    flex: 0 0 95.83333333%;
    max-width: 95.83333333%;
  }
  .tbs-col-xxl-push-23 {
    left: 95.83333333%;
  }
  .tbs-col-xxl-pull-23 {
    right: 95.83333333%;
  }
  .tbs-col-xxl-offset-23 {
    margin-left: 95.83333333%;
  }
  .tbs-col-xxl-order-23 {
    order: 23;
  }
  .tbs-col-xxl-22 {
    display: block;
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .tbs-col-xxl-push-22 {
    left: 91.66666667%;
  }
  .tbs-col-xxl-pull-22 {
    right: 91.66666667%;
  }
  .tbs-col-xxl-offset-22 {
    margin-left: 91.66666667%;
  }
  .tbs-col-xxl-order-22 {
    order: 22;
  }
  .tbs-col-xxl-21 {
    display: block;
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .tbs-col-xxl-push-21 {
    left: 87.5%;
  }
  .tbs-col-xxl-pull-21 {
    right: 87.5%;
  }
  .tbs-col-xxl-offset-21 {
    margin-left: 87.5%;
  }
  .tbs-col-xxl-order-21 {
    order: 21;
  }
  .tbs-col-xxl-20 {
    display: block;
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .tbs-col-xxl-push-20 {
    left: 83.33333333%;
  }
  .tbs-col-xxl-pull-20 {
    right: 83.33333333%;
  }
  .tbs-col-xxl-offset-20 {
    margin-left: 83.33333333%;
  }
  .tbs-col-xxl-order-20 {
    order: 20;
  }
  .tbs-col-xxl-19 {
    display: block;
    flex: 0 0 79.16666667%;
    max-width: 79.16666667%;
  }
  .tbs-col-xxl-push-19 {
    left: 79.16666667%;
  }
  .tbs-col-xxl-pull-19 {
    right: 79.16666667%;
  }
  .tbs-col-xxl-offset-19 {
    margin-left: 79.16666667%;
  }
  .tbs-col-xxl-order-19 {
    order: 19;
  }
  .tbs-col-xxl-18 {
    display: block;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .tbs-col-xxl-push-18 {
    left: 75%;
  }
  .tbs-col-xxl-pull-18 {
    right: 75%;
  }
  .tbs-col-xxl-offset-18 {
    margin-left: 75%;
  }
  .tbs-col-xxl-order-18 {
    order: 18;
  }
  .tbs-col-xxl-17 {
    display: block;
    flex: 0 0 70.83333333%;
    max-width: 70.83333333%;
  }
  .tbs-col-xxl-push-17 {
    left: 70.83333333%;
  }
  .tbs-col-xxl-pull-17 {
    right: 70.83333333%;
  }
  .tbs-col-xxl-offset-17 {
    margin-left: 70.83333333%;
  }
  .tbs-col-xxl-order-17 {
    order: 17;
  }
  .tbs-col-xxl-16 {
    display: block;
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .tbs-col-xxl-push-16 {
    left: 66.66666667%;
  }
  .tbs-col-xxl-pull-16 {
    right: 66.66666667%;
  }
  .tbs-col-xxl-offset-16 {
    margin-left: 66.66666667%;
  }
  .tbs-col-xxl-order-16 {
    order: 16;
  }
  .tbs-col-xxl-15 {
    display: block;
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .tbs-col-xxl-push-15 {
    left: 62.5%;
  }
  .tbs-col-xxl-pull-15 {
    right: 62.5%;
  }
  .tbs-col-xxl-offset-15 {
    margin-left: 62.5%;
  }
  .tbs-col-xxl-order-15 {
    order: 15;
  }
  .tbs-col-xxl-14 {
    display: block;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .tbs-col-xxl-push-14 {
    left: 58.33333333%;
  }
  .tbs-col-xxl-pull-14 {
    right: 58.33333333%;
  }
  .tbs-col-xxl-offset-14 {
    margin-left: 58.33333333%;
  }
  .tbs-col-xxl-order-14 {
    order: 14;
  }
  .tbs-col-xxl-13 {
    display: block;
    flex: 0 0 54.16666667%;
    max-width: 54.16666667%;
  }
  .tbs-col-xxl-push-13 {
    left: 54.16666667%;
  }
  .tbs-col-xxl-pull-13 {
    right: 54.16666667%;
  }
  .tbs-col-xxl-offset-13 {
    margin-left: 54.16666667%;
  }
  .tbs-col-xxl-order-13 {
    order: 13;
  }
  .tbs-col-xxl-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .tbs-col-xxl-push-12 {
    left: 50%;
  }
  .tbs-col-xxl-pull-12 {
    right: 50%;
  }
  .tbs-col-xxl-offset-12 {
    margin-left: 50%;
  }
  .tbs-col-xxl-order-12 {
    order: 12;
  }
  .tbs-col-xxl-11 {
    display: block;
    flex: 0 0 45.83333333%;
    max-width: 45.83333333%;
  }
  .tbs-col-xxl-push-11 {
    left: 45.83333333%;
  }
  .tbs-col-xxl-pull-11 {
    right: 45.83333333%;
  }
  .tbs-col-xxl-offset-11 {
    margin-left: 45.83333333%;
  }
  .tbs-col-xxl-order-11 {
    order: 11;
  }
  .tbs-col-xxl-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .tbs-col-xxl-push-10 {
    left: 41.66666667%;
  }
  .tbs-col-xxl-pull-10 {
    right: 41.66666667%;
  }
  .tbs-col-xxl-offset-10 {
    margin-left: 41.66666667%;
  }
  .tbs-col-xxl-order-10 {
    order: 10;
  }
  .tbs-col-xxl-9 {
    display: block;
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .tbs-col-xxl-push-9 {
    left: 37.5%;
  }
  .tbs-col-xxl-pull-9 {
    right: 37.5%;
  }
  .tbs-col-xxl-offset-9 {
    margin-left: 37.5%;
  }
  .tbs-col-xxl-order-9 {
    order: 9;
  }
  .tbs-col-xxl-8 {
    display: block;
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .tbs-col-xxl-push-8 {
    left: 33.33333333%;
  }
  .tbs-col-xxl-pull-8 {
    right: 33.33333333%;
  }
  .tbs-col-xxl-offset-8 {
    margin-left: 33.33333333%;
  }
  .tbs-col-xxl-order-8 {
    order: 8;
  }
  .tbs-col-xxl-7 {
    display: block;
    flex: 0 0 29.16666667%;
    max-width: 29.16666667%;
  }
  .tbs-col-xxl-push-7 {
    left: 29.16666667%;
  }
  .tbs-col-xxl-pull-7 {
    right: 29.16666667%;
  }
  .tbs-col-xxl-offset-7 {
    margin-left: 29.16666667%;
  }
  .tbs-col-xxl-order-7 {
    order: 7;
  }
  .tbs-col-xxl-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .tbs-col-xxl-push-6 {
    left: 25%;
  }
  .tbs-col-xxl-pull-6 {
    right: 25%;
  }
  .tbs-col-xxl-offset-6 {
    margin-left: 25%;
  }
  .tbs-col-xxl-order-6 {
    order: 6;
  }
  .tbs-col-xxl-5 {
    display: block;
    flex: 0 0 20.83333333%;
    max-width: 20.83333333%;
  }
  .tbs-col-xxl-push-5 {
    left: 20.83333333%;
  }
  .tbs-col-xxl-pull-5 {
    right: 20.83333333%;
  }
  .tbs-col-xxl-offset-5 {
    margin-left: 20.83333333%;
  }
  .tbs-col-xxl-order-5 {
    order: 5;
  }
  .tbs-col-xxl-4 {
    display: block;
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .tbs-col-xxl-push-4 {
    left: 16.66666667%;
  }
  .tbs-col-xxl-pull-4 {
    right: 16.66666667%;
  }
  .tbs-col-xxl-offset-4 {
    margin-left: 16.66666667%;
  }
  .tbs-col-xxl-order-4 {
    order: 4;
  }
  .tbs-col-xxl-3 {
    display: block;
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .tbs-col-xxl-push-3 {
    left: 12.5%;
  }
  .tbs-col-xxl-pull-3 {
    right: 12.5%;
  }
  .tbs-col-xxl-offset-3 {
    margin-left: 12.5%;
  }
  .tbs-col-xxl-order-3 {
    order: 3;
  }
  .tbs-col-xxl-2 {
    display: block;
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .tbs-col-xxl-push-2 {
    left: 8.33333333%;
  }
  .tbs-col-xxl-pull-2 {
    right: 8.33333333%;
  }
  .tbs-col-xxl-offset-2 {
    margin-left: 8.33333333%;
  }
  .tbs-col-xxl-order-2 {
    order: 2;
  }
  .tbs-col-xxl-1 {
    display: block;
    flex: 0 0 4.16666667%;
    max-width: 4.16666667%;
  }
  .tbs-col-xxl-push-1 {
    left: 4.16666667%;
  }
  .tbs-col-xxl-pull-1 {
    right: 4.16666667%;
  }
  .tbs-col-xxl-offset-1 {
    margin-left: 4.16666667%;
  }
  .tbs-col-xxl-order-1 {
    order: 1;
  }
  .tbs-col-xxl-0 {
    display: none;
  }
  .tbs-col-push-0 {
    left: auto;
  }
  .tbs-col-pull-0 {
    right: auto;
  }
  .tbs-col-xxl-push-0 {
    left: auto;
  }
  .tbs-col-xxl-pull-0 {
    right: auto;
  }
  .tbs-col-xxl-offset-0 {
    margin-left: 0;
  }
  .tbs-col-xxl-order-0 {
    order: 0;
  }
  .tbs-col-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-xxl-push-0.tbs-col-rtl {
    right: auto;
  }
  .tbs-col-xxl-pull-0.tbs-col-rtl {
    left: auto;
  }
  .tbs-col-xxl-offset-0.tbs-col-rtl {
    margin-right: 0;
  }
  .tbs-col-xxl-push-1.tbs-col-rtl {
    right: 4.16666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-1.tbs-col-rtl {
    right: auto;
    left: 4.16666667%;
  }
  .tbs-col-xxl-offset-1.tbs-col-rtl {
    margin-right: 4.16666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-2.tbs-col-rtl {
    right: 8.33333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-2.tbs-col-rtl {
    right: auto;
    left: 8.33333333%;
  }
  .tbs-col-xxl-offset-2.tbs-col-rtl {
    margin-right: 8.33333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-3.tbs-col-rtl {
    right: 12.5%;
    left: auto;
  }
  .tbs-col-xxl-pull-3.tbs-col-rtl {
    right: auto;
    left: 12.5%;
  }
  .tbs-col-xxl-offset-3.tbs-col-rtl {
    margin-right: 12.5%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-4.tbs-col-rtl {
    right: 16.66666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-4.tbs-col-rtl {
    right: auto;
    left: 16.66666667%;
  }
  .tbs-col-xxl-offset-4.tbs-col-rtl {
    margin-right: 16.66666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-5.tbs-col-rtl {
    right: 20.83333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-5.tbs-col-rtl {
    right: auto;
    left: 20.83333333%;
  }
  .tbs-col-xxl-offset-5.tbs-col-rtl {
    margin-right: 20.83333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-6.tbs-col-rtl {
    right: 25%;
    left: auto;
  }
  .tbs-col-xxl-pull-6.tbs-col-rtl {
    right: auto;
    left: 25%;
  }
  .tbs-col-xxl-offset-6.tbs-col-rtl {
    margin-right: 25%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-7.tbs-col-rtl {
    right: 29.16666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-7.tbs-col-rtl {
    right: auto;
    left: 29.16666667%;
  }
  .tbs-col-xxl-offset-7.tbs-col-rtl {
    margin-right: 29.16666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-8.tbs-col-rtl {
    right: 33.33333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-8.tbs-col-rtl {
    right: auto;
    left: 33.33333333%;
  }
  .tbs-col-xxl-offset-8.tbs-col-rtl {
    margin-right: 33.33333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-9.tbs-col-rtl {
    right: 37.5%;
    left: auto;
  }
  .tbs-col-xxl-pull-9.tbs-col-rtl {
    right: auto;
    left: 37.5%;
  }
  .tbs-col-xxl-offset-9.tbs-col-rtl {
    margin-right: 37.5%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-10.tbs-col-rtl {
    right: 41.66666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-10.tbs-col-rtl {
    right: auto;
    left: 41.66666667%;
  }
  .tbs-col-xxl-offset-10.tbs-col-rtl {
    margin-right: 41.66666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-11.tbs-col-rtl {
    right: 45.83333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-11.tbs-col-rtl {
    right: auto;
    left: 45.83333333%;
  }
  .tbs-col-xxl-offset-11.tbs-col-rtl {
    margin-right: 45.83333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-12.tbs-col-rtl {
    right: 50%;
    left: auto;
  }
  .tbs-col-xxl-pull-12.tbs-col-rtl {
    right: auto;
    left: 50%;
  }
  .tbs-col-xxl-offset-12.tbs-col-rtl {
    margin-right: 50%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-13.tbs-col-rtl {
    right: 54.16666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-13.tbs-col-rtl {
    right: auto;
    left: 54.16666667%;
  }
  .tbs-col-xxl-offset-13.tbs-col-rtl {
    margin-right: 54.16666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-14.tbs-col-rtl {
    right: 58.33333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-14.tbs-col-rtl {
    right: auto;
    left: 58.33333333%;
  }
  .tbs-col-xxl-offset-14.tbs-col-rtl {
    margin-right: 58.33333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-15.tbs-col-rtl {
    right: 62.5%;
    left: auto;
  }
  .tbs-col-xxl-pull-15.tbs-col-rtl {
    right: auto;
    left: 62.5%;
  }
  .tbs-col-xxl-offset-15.tbs-col-rtl {
    margin-right: 62.5%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-16.tbs-col-rtl {
    right: 66.66666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-16.tbs-col-rtl {
    right: auto;
    left: 66.66666667%;
  }
  .tbs-col-xxl-offset-16.tbs-col-rtl {
    margin-right: 66.66666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-17.tbs-col-rtl {
    right: 70.83333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-17.tbs-col-rtl {
    right: auto;
    left: 70.83333333%;
  }
  .tbs-col-xxl-offset-17.tbs-col-rtl {
    margin-right: 70.83333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-18.tbs-col-rtl {
    right: 75%;
    left: auto;
  }
  .tbs-col-xxl-pull-18.tbs-col-rtl {
    right: auto;
    left: 75%;
  }
  .tbs-col-xxl-offset-18.tbs-col-rtl {
    margin-right: 75%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-19.tbs-col-rtl {
    right: 79.16666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-19.tbs-col-rtl {
    right: auto;
    left: 79.16666667%;
  }
  .tbs-col-xxl-offset-19.tbs-col-rtl {
    margin-right: 79.16666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-20.tbs-col-rtl {
    right: 83.33333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-20.tbs-col-rtl {
    right: auto;
    left: 83.33333333%;
  }
  .tbs-col-xxl-offset-20.tbs-col-rtl {
    margin-right: 83.33333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-21.tbs-col-rtl {
    right: 87.5%;
    left: auto;
  }
  .tbs-col-xxl-pull-21.tbs-col-rtl {
    right: auto;
    left: 87.5%;
  }
  .tbs-col-xxl-offset-21.tbs-col-rtl {
    margin-right: 87.5%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-22.tbs-col-rtl {
    right: 91.66666667%;
    left: auto;
  }
  .tbs-col-xxl-pull-22.tbs-col-rtl {
    right: auto;
    left: 91.66666667%;
  }
  .tbs-col-xxl-offset-22.tbs-col-rtl {
    margin-right: 91.66666667%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-23.tbs-col-rtl {
    right: 95.83333333%;
    left: auto;
  }
  .tbs-col-xxl-pull-23.tbs-col-rtl {
    right: auto;
    left: 95.83333333%;
  }
  .tbs-col-xxl-offset-23.tbs-col-rtl {
    margin-right: 95.83333333%;
    margin-left: 0;
  }
  .tbs-col-xxl-push-24.tbs-col-rtl {
    right: 100%;
    left: auto;
  }
  .tbs-col-xxl-pull-24.tbs-col-rtl {
    right: auto;
    left: 100%;
  }
  .tbs-col-xxl-offset-24.tbs-col-rtl {
    margin-right: 100%;
    margin-left: 0;
  }
}
.tbs-row-rtl {
  direction: rtl;
}

.tbs-flex {
  display: flex;
}

.tbs-flex-vertical {
  flex-direction: column;
}

.tbs-flex-justify-flex-start {
  justify-content: flex-start;
}

.tbs-flex-justify-center {
  justify-content: center;
}

.tbs-flex-justify-flex-end {
  justify-content: flex-end;
}

.tbs-flex-justify-space-between {
  justify-content: space-between;
}

.tbs-flex-justify-space-around {
  justify-content: space-around;
}

.tbs-flex-justify-space-evenly {
  justify-content: space-evenly;
}

.tbs-flex-justify-start {
  justify-content: start;
}

.tbs-flex-justify-end {
  justify-content: end;
}

.tbs-flex-justify-right {
  justify-content: right;
}

.tbs-flex-justify-left {
  justify-content: left;
}

.tbs-flex-justify-stretch {
  justify-content: stretch;
}

.tbs-flex-justify-normal {
  justify-content: normal;
}

.tbs-flex-align-flex-start {
  align-items: flex-start;
}

.tbs-flex-align-center {
  align-items: center;
}

.tbs-flex-align-flex-end {
  align-items: flex-end;
}

.tbs-flex-align-start {
  align-items: start;
}

.tbs-flex-align-end {
  align-items: end;
}

.tbs-flex-align-stretch {
  align-items: stretch;
}

.tbs-flex-align-normal {
  align-items: normal;
}

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

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

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

.tbs-input-affix-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 6px 11px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--tbs-neutral-800);
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-flex;
}

.tbs-input-affix-wrapper::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-input-affix-wrapper:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-input-affix-wrapper:hover {
  background-color: var(--tbs-neutral-200);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-input-affix-wrapper:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-affix-wrapper:focus,
.tbs-input-affix-wrapper-focused {
  border-color: var(--tbs-complimentary-blue);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-input-affix-wrapper:focus,
.tbs-input-rtl .tbs-input-affix-wrapper-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-affix-wrapper-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input-affix-wrapper-disabled:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input-affix-wrapper[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input-affix-wrapper[disabled]:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input-affix-wrapper-borderless,
.tbs-input-affix-wrapper-borderless:hover,
.tbs-input-affix-wrapper-borderless:focus,
.tbs-input-affix-wrapper-borderless-focused,
.tbs-input-affix-wrapper-borderless-disabled,
.tbs-input-affix-wrapper-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

textarea.tbs-input-affix-wrapper {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}

.tbs-input-affix-wrapper-lg {
  padding: 0px 11px;
  font-size: 16px;
}

.tbs-input-affix-wrapper-sm {
  padding: 0 7px;
}

.tbs-input-affix-wrapper-rtl {
  direction: rtl;
}

.tbs-input-affix-wrapper-stepperless[type=number] {
  -moz-appearance: textfield;
}

.tbs-input-affix-wrapper-stepperless[type=number]::-webkit-inner-spin-button,
.tbs-input-affix-wrapper-stepperless[type=number] ::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tbs-input-affix-wrapper:not(.tbs-input-affix-wrapper-disabled):hover {
  background-color: var(--tbs-neutral-200);
  border-right-width: 1px;
  z-index: 1;
}
.tbs-input-affix-wrapper:not(.tbs-input-affix-wrapper-disabled):hover input {
  background-color: var(--tbs-neutral-200);
}

.tbs-input-rtl .tbs-input-affix-wrapper:not(.tbs-input-affix-wrapper-disabled):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-search-with-button .tbs-input-affix-wrapper:not(.tbs-input-affix-wrapper-disabled):hover {
  z-index: 0;
}

.tbs-input-affix-wrapper-focused,
.tbs-input-affix-wrapper:focus {
  z-index: 1;
}

.tbs-input-affix-wrapper-disabled .tbs-input[disabled] {
  background: rgba(255, 255, 255, 0);
}

.tbs-input-affix-wrapper > .tbs-input {
  font-size: inherit;
  border: none;
  outline: none;
}

.tbs-input-affix-wrapper > .tbs-input:focus {
  box-shadow: none !important;
}

.tbs-input-affix-wrapper > .tbs-input:not(textarea) {
  padding: 0;
}

.tbs-input-affix-wrapper:before {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: " ";
}

.tbs-input-prefix,
.tbs-input-suffix {
  display: flex;
  flex: none;
  align-items: center;
}

.tbs-input-prefix > *:not(:last-child),
.tbs-input-suffix > *:not(:last-child) {
  margin-right: 8px;
}

.tbs-input-show-count-suffix {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-input-show-count-has-suffix {
  margin-right: 2px;
}

.tbs-input-prefix {
  margin-right: 4px;
}

.tbs-input-suffix {
  margin-left: 4px;
}

.anticon.tbs-input-clear-icon,
.tbs-input-clear-icon {
  margin: 0;
  color: rgba(0, 0, 0, 0.2509803922);
  font-size: 12px;
  vertical-align: -1px;
  cursor: pointer;
  transition: color 0.3s;
}

.anticon.tbs-input-clear-icon:hover,
.tbs-input-clear-icon:hover {
  color: rgba(0, 0, 0, 0.4509803922);
}

.anticon.tbs-input-clear-icon:active,
.tbs-input-clear-icon:active {
  color: rgba(0, 0, 0, 0.8509803922);
}

.anticon.tbs-input-clear-icon-hidden,
.tbs-input-clear-icon-hidden {
  visibility: hidden;
}

.anticon.tbs-input-clear-icon-has-suffix,
.tbs-input-clear-icon-has-suffix {
  margin: 0 4px;
}

.tbs-input-affix-wrapper.tbs-input-affix-wrapper-textarea-with-clear-btn {
  padding: 0;
}

.tbs-input-affix-wrapper.tbs-input-affix-wrapper-textarea-with-clear-btn .tbs-input-clear-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}

.tbs-input-status-error:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input,
.tbs-input-status-error:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input:hover {
  background: #fff;
  border-color: var(--tbs-semantic-red-1000);
}

.tbs-input-status-error:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input:focus,
.tbs-input-status-error:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input-focused {
  border-color: var(--tbs-error-color-hover);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-status-error .tbs-input-prefix {
  color: var(--tbs-error-color);
}

.tbs-input-status-warning:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input,
.tbs-input-status-warning:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input:hover {
  background: #fff;
  border-color: var(--tbs-warning-color);
}

.tbs-input-status-warning:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input:focus,
.tbs-input-status-warning:not(.tbs-input-disabled):not(.tbs-input-borderless).tbs-input-focused {
  border-color: var(--tbs-warning-color-hover);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-status-warning .tbs-input-prefix {
  color: var(--tbs-warning-color);
}

.tbs-input-affix-wrapper-status-error:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper,
.tbs-input-affix-wrapper-status-error:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper:hover {
  background: #fff;
  border-color: var(--tbs-error-color);
}

.tbs-input-affix-wrapper-status-error:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper:focus,
.tbs-input-affix-wrapper-status-error:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper-focused {
  border-color: var(--tbs-error-color-hover);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-affix-wrapper-status-error .tbs-input-prefix {
  color: var(--tbs-error-color);
}

.tbs-input-affix-wrapper-status-warning:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper,
.tbs-input-affix-wrapper-status-warning:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper:hover {
  background: #fff;
  border-color: var(--tbs-warning-color);
}

.tbs-input-affix-wrapper-status-warning:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper:focus,
.tbs-input-affix-wrapper-status-warning:not(.tbs-input-affix-wrapper-disabled):not(.tbs-input-affix-wrapper-borderless).tbs-input-affix-wrapper-focused {
  border-color: var(--tbs-warning-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-warning-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-affix-wrapper-status-warning .tbs-input-prefix {
  color: var(--tbs-warning-color);
}

.tbs-input-textarea-status-error.tbs-input-textarea-has-feedback .tbs-input,
.tbs-input-textarea-status-warning.tbs-input-textarea-has-feedback .tbs-input,
.tbs-input-textarea-status-success.tbs-input-textarea-has-feedback .tbs-input,
.tbs-input-textarea-status-validating.tbs-input-textarea-has-feedback .tbs-input {
  padding-right: 24px;
}

.tbs-input-group-wrapper-status-error .tbs-input-group-addon {
  color: var(--tbs-error-color);
  border-color: var(--tbs-error-color);
}

.tbs-input-group-wrapper-status-warning .tbs-input-group-addon {
  color: var(--tbs-warning-color);
  border-color: var(--tbs-warning-color);
}

.tbs-input {
  box-sizing: border-box;
  margin: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 6px 11px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--tbs-neutral-800);
  border-radius: 2px;
  transition: all 0.3s;
}

.tbs-input::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-input:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-input:hover {
  background-color: var(--tbs-neutral-200);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-input:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input:focus,
.tbs-input-focused {
  border-color: var(--tbs-complimentary-blue);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-input:focus,
.tbs-input-rtl .tbs-input-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input-disabled:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input[disabled]:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input-borderless,
.tbs-input-borderless:hover,
.tbs-input-borderless:focus,
.tbs-input-borderless-focused,
.tbs-input-borderless-disabled,
.tbs-input-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

textarea.tbs-input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}

.tbs-input-lg {
  padding: 6.5px 11px;
  font-size: 16px;
  height: 48px;
}

.tbs-input-sm {
  padding: 0 7px;
}

.tbs-input-rtl {
  direction: rtl;
}

.tbs-input-stepperless[type=number] {
  -moz-appearance: textfield;
}

.tbs-input-stepperless[type=number]::-webkit-inner-spin-button,
.tbs-input-stepperless[type=number] ::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tbs-input-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.tbs-input-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.tbs-input-group > [class*=col-] {
  padding-right: 8px;
}

.tbs-input-group > [class*=col-]:last-child {
  padding-right: 0;
}

.tbs-input-group-addon,
.tbs-input-group-wrap,
.tbs-input-group > .tbs-input {
  display: table-cell;
}

.tbs-input-group-addon:not(:first-child):not(:last-child),
.tbs-input-group-wrap:not(:first-child):not(:last-child),
.tbs-input-group > .tbs-input:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.tbs-input-group-addon,
.tbs-input-group-wrap {
  width: 1px;
  white-space: nowrap;
  vertical-align: middle;
}

.tbs-input-group-wrap > * {
  display: block !important;
}

.tbs-input-group .tbs-input {
  float: left;
  width: 100%;
  margin-bottom: 0;
  text-align: inherit;
}

.tbs-input-group .tbs-input:focus {
  z-index: 1;
  border-right-width: 1px;
}

.tbs-input-group .tbs-input:hover {
  z-index: 1;
  border-right-width: 1px;
}

.tbs-input-search-with-button .tbs-input-group .tbs-input:hover {
  z-index: 0;
}

.tbs-input-group-addon {
  position: relative;
  padding: 0 11px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  background-color: #fafafa;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  transition: all 0.3s;
}

.tbs-input-group-addon .tbs-select {
  margin: -5px -11px;
}

.tbs-input-group-addon .tbs-select.tbs-select-single:not(.tbs-select-customize-input) .tbs-select-selector {
  background-color: inherit;
  border: 1px solid transparent;
  box-shadow: none;
}

.tbs-input-group-addon .tbs-select-open .tbs-select-selector,
.tbs-input-group-addon .tbs-select-focused .tbs-select-selector {
  color: var(--tbs-primary-color);
}

.tbs-input-group-addon .tbs-cascader-picker {
  margin: -9px -12px;
  background-color: transparent;
}

.tbs-input-group-addon .tbs-cascader-picker .tbs-cascader-input {
  text-align: left;
  border: 0;
  box-shadow: none;
}

.tbs-input-group > .tbs-input:first-child,
.tbs-input-group-addon:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-group > .tbs-input:first-child .tbs-select .tbs-select-selector,
.tbs-input-group-addon:first-child .tbs-select .tbs-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-group > .tbs-input-affix-wrapper:not(:first-child) .tbs-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-group > .tbs-input-affix-wrapper:not(:last-child) .tbs-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-group-addon:first-child {
  border-right: 0;
}

.tbs-input-group-addon:last-child {
  border-left: 0;
}

.tbs-input-group > .tbs-input:last-child,
.tbs-input-group-addon:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-group > .tbs-input:last-child .tbs-select .tbs-select-selector,
.tbs-input-group-addon:last-child .tbs-select .tbs-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-group-lg .tbs-input,
.tbs-input-group-lg > .tbs-input-group-addon {
  padding: 6.5px 11px;
  font-size: 16px;
}

.tbs-input-group-sm .tbs-input,
.tbs-input-group-sm > .tbs-input-group-addon {
  padding: 0 7px;
}

.tbs-input-group-lg .tbs-select-single .tbs-select-selector {
  height: 40px;
}

.tbs-input-group-sm .tbs-select-single .tbs-select-selector {
  height: 24px;
}

.tbs-input-group .tbs-input-affix-wrapper:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-search .tbs-input-group .tbs-input-affix-wrapper:not(:last-child) {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.tbs-input-group .tbs-input-affix-wrapper:not(:first-child),
.tbs-input-search .tbs-input-group .tbs-input-affix-wrapper:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-group.tbs-input-group-compact {
  display: block;
}

.tbs-input-group.tbs-input-group-compact:before {
  display: table;
  content: "";
}

.tbs-input-group.tbs-input-group-compact:after {
  display: table;
  clear: both;
  content: "";
}

.tbs-input-group.tbs-input-group-compact-addon:not(:first-child):not(:last-child),
.tbs-input-group.tbs-input-group-compact-wrap:not(:first-child):not(:last-child),
.tbs-input-group.tbs-input-group-compact > .tbs-input:not(:first-child):not(:last-child) {
  border-right-width: 1px;
}

.tbs-input-group.tbs-input-group-compact-addon:not(:first-child):not(:last-child):hover,
.tbs-input-group.tbs-input-group-compact-wrap:not(:first-child):not(:last-child):hover,
.tbs-input-group.tbs-input-group-compact > .tbs-input:not(:first-child):not(:last-child):hover {
  z-index: 1;
}

.tbs-input-group.tbs-input-group-compact-addon:not(:first-child):not(:last-child):focus,
.tbs-input-group.tbs-input-group-compact-wrap:not(:first-child):not(:last-child):focus,
.tbs-input-group.tbs-input-group-compact > .tbs-input:not(:first-child):not(:last-child):focus {
  z-index: 1;
}

.tbs-input-group.tbs-input-group-compact > * {
  display: inline-block;
  float: none;
  vertical-align: top;
  border-radius: 0;
}

.tbs-input-group.tbs-input-group-compact > .tbs-input-affix-wrapper,
.tbs-input-group.tbs-input-group-compact > .tbs-input-number-affix-wrapper,
.tbs-input-group.tbs-input-group-compact > .tbs-picker-range {
  display: inline-flex;
}

.tbs-input-group.tbs-input-group-compact > *:not(:last-child) {
  margin-right: -1px;
  border-right-width: 1px;
}

.tbs-input-group.tbs-input-group-compact .tbs-input {
  float: none;
}

.tbs-input-group.tbs-input-group-compact > .tbs-select > .tbs-select-selector,
.tbs-input-group.tbs-input-group-compact > .tbs-select-auto-complete .tbs-input,
.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker .tbs-input,
.tbs-input-group.tbs-input-group-compact > .tbs-input-group-wrapper .tbs-input {
  border-right-width: 1px;
  border-radius: 0;
}

.tbs-input-group.tbs-input-group-compact > .tbs-select > .tbs-select-selector:hover,
.tbs-input-group.tbs-input-group-compact > .tbs-select-auto-complete .tbs-input:hover,
.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker .tbs-input:hover,
.tbs-input-group.tbs-input-group-compact > .tbs-input-group-wrapper .tbs-input:hover {
  z-index: 1;
}

.tbs-input-group.tbs-input-group-compact > .tbs-select > .tbs-select-selector:focus,
.tbs-input-group.tbs-input-group-compact > .tbs-select-auto-complete .tbs-input:focus,
.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker .tbs-input:focus,
.tbs-input-group.tbs-input-group-compact > .tbs-input-group-wrapper .tbs-input:focus {
  z-index: 1;
}

.tbs-input-group.tbs-input-group-compact > .tbs-select-focused {
  z-index: 1;
}

.tbs-input-group.tbs-input-group-compact > .tbs-select > .tbs-select-arrow {
  z-index: 1;
}

.tbs-input-group.tbs-input-group-compact > *:first-child,
.tbs-input-group.tbs-input-group-compact > .tbs-select:first-child > .tbs-select-selector,
.tbs-input-group.tbs-input-group-compact > .tbs-select-auto-complete:first-child .tbs-input,
.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker:first-child .tbs-input {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.tbs-input-group.tbs-input-group-compact > *:last-child,
.tbs-input-group.tbs-input-group-compact > .tbs-select:last-child > .tbs-select-selector,
.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker:last-child .tbs-input,
.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker-focused:last-child .tbs-input {
  border-right-width: 1px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.tbs-input-group.tbs-input-group-compact > .tbs-select-auto-complete .tbs-input {
  vertical-align: top;
}

.tbs-input-group.tbs-input-group-compact .tbs-input-group-wrapper + .tbs-input-group-wrapper {
  margin-left: -1px;
}

.tbs-input-group.tbs-input-group-compact .tbs-input-group-wrapper + .tbs-input-group-wrapper .tbs-input-affix-wrapper {
  border-radius: 0;
}

.tbs-input-group.tbs-input-group-compact .tbs-input-group-wrapper:not(:last-child).tbs-input-search > .tbs-input-group > .tbs-input-group-addon > .tbs-input-search-button {
  border-radius: 0;
}

.tbs-input-group.tbs-input-group-compact .tbs-input-group-wrapper:not(:last-child).tbs-input-search > .tbs-input-group > .tbs-input {
  border-radius: 2px 0 0 2px;
}

.tbs-input-group > .tbs-input-rtl:first-child,
.tbs-input-group-rtl .tbs-input-group-addon:first-child {
  border-radius: 0 2px 2px 0;
}

.tbs-input-group-rtl .tbs-input-group-addon:first-child {
  border-right: 1px solid var(--tbs-neutral-600);
  border-left: 0;
}

.tbs-input-group-rtl.tbs-input-group > .tbs-input:last-child,
.tbs-input-group-rtl.tbs-input-group-addon:last-child {
  border-radius: 2px 0 0 2px;
}

.tbs-input-group-rtl.tbs-input-group .tbs-input-affix-wrapper:not(:first-child) {
  border-radius: 2px 0 0 2px;
}

.tbs-input-group-rtl.tbs-input-group .tbs-input-affix-wrapper:not(:last-child) {
  border-radius: 0 2px 2px 0;
}

.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > *:not(:last-child) {
  margin-right: 0;
  margin-left: -1px;
  border-left-width: 1px;
}

.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > *:first-child,
.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > .tbs-select:first-child > .tbs-select-selector,
.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > .tbs-select-auto-complete:first-child .tbs-input,
.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker:first-child .tbs-input {
  border-radius: 0 2px 2px 0;
}

.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > *:last-child,
.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > .tbs-select:last-child > .tbs-select-selector,
.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > .tbs-select-auto-complete:last-child .tbs-input,
.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker:last-child .tbs-input,
.tbs-input-group-rtl.tbs-input-group.tbs-input-group-compact > .tbs-cascader-picker-focused:last-child .tbs-input {
  border-left-width: 1px;
  border-radius: 2px 0 0 2px;
}

.tbs-input-group.tbs-input-group-compact .tbs-input-group-wrapper-rtl + .tbs-input-group-wrapper-rtl {
  margin-right: -1px;
  margin-left: 0;
}

.tbs-input-group.tbs-input-group-compact .tbs-input-group-wrapper-rtl:not(:last-child).tbs-input-search > .tbs-input-group > .tbs-input {
  border-radius: 0 2px 2px 0;
}

.tbs-input-group > .tbs-input-rtl:first-child {
  border-radius: 0 2px 2px 0;
}

.tbs-input-group > .tbs-input-rtl:last-child {
  border-radius: 2px 0 0 2px;
}

.tbs-input-group-rtl .tbs-input-group-addon:first-child {
  border-right: 1px solid var(--tbs-neutral-600);
  border-left: 0;
  border-radius: 0 2px 2px 0;
}

.tbs-input-group-rtl .tbs-input-group-addon:last-child {
  border-right: 0;
  border-left: 1px solid var(--tbs-neutral-600);
  border-radius: 2px 0 0 2px;
}

.tbs-input-group-wrapper {
  display: inline-block;
  width: 100%;
  text-align: start;
  vertical-align: top;
}

.tbs-input-password-icon.anticon {
  color: rgba(0, 0, 0, 0.4509803922);
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-input-password-icon.anticon:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-input[type=color] {
  height: 32px;
}

.tbs-input[type=color].tbs-input-lg {
  height: 40px;
}

.tbs-input[type=color].tbs-input-sm {
  height: 24px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.tbs-input-textarea-show-count > .tbs-input {
  height: 100%;
}

.tbs-input-textarea-show-count:after {
  float: right;
  color: rgba(0, 0, 0, 0.4509803922);
  white-space: nowrap;
  content: attr(data-count);
  pointer-events: none;
}

.tbs-input-textarea-show-count.tbs-input-textarea-in-form-item:after {
  margin-bottom: -22px;
}

.tbs-input-textarea-suffix {
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: auto;
}

.tbs-input-compact-item:not(.tbs-input-compact-last-item):not(.tbs-input-compact-item-rtl) {
  margin-right: -1px;
}

.tbs-input-compact-item:not(.tbs-input-compact-last-item).tbs-input-compact-item-rtl {
  margin-left: -1px;
}

.tbs-input-compact-item:hover,
.tbs-input-compact-item:focus,
.tbs-input-compact-item:active {
  z-index: 2;
}

.tbs-input-compact-item[disabled] {
  z-index: 0;
}

.tbs-input-compact-item:not(.tbs-input-compact-first-item):not(.tbs-input-compact-last-item).tbs-input {
  border-radius: 0;
}

.tbs-input-compact-item.tbs-input.tbs-input-compact-first-item:not(.tbs-input-compact-last-item):not(.tbs-input-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-compact-item.tbs-input.tbs-input-compact-last-item:not(.tbs-input-compact-first-item):not(.tbs-input-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-compact-item.tbs-input.tbs-input-compact-item-rtl.tbs-input-compact-first-item:not(.tbs-input-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-compact-item.tbs-input.tbs-input-compact-item-rtl.tbs-input-compact-last-item:not(.tbs-input-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-search .tbs-input:hover,
.tbs-input-search .tbs-input:focus {
  border-color: var(--tbs-primary-5);
}

.tbs-input-search .tbs-input:hover + .tbs-input-group-addon .tbs-input-search-button:not(.tbs-btn-primary),
.tbs-input-search .tbs-input:focus + .tbs-input-group-addon .tbs-input-search-button:not(.tbs-btn-primary) {
  border-left-color: var(--tbs-primary-5);
}

.tbs-input-search .tbs-input-affix-wrapper {
  border-radius: 0;
}

.tbs-input-search .tbs-input-lg {
  line-height: 1.5713;
}

.tbs-input-search > .tbs-input-group > .tbs-input-group-addon:last-child {
  left: -1px;
  padding: 0;
  border: 0;
}

.tbs-input-search > .tbs-input-group > .tbs-input-group-addon:last-child .tbs-input-search-button {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0 2px 2px 0;
}

.tbs-input-search > .tbs-input-group > .tbs-input-group-addon:last-child .tbs-input-search-button:not(.tbs-btn-primary) {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-input-search > .tbs-input-group > .tbs-input-group-addon:last-child .tbs-input-search-button:not(.tbs-btn-primary).tbs-btn-loading:before {
  inset: 0;
}

.tbs-input-search-button {
  height: 32px;
}

.tbs-input-search-button:hover,
.tbs-input-search-button:focus {
  z-index: 1;
}

.tbs-input-search-large .tbs-input-search-button {
  height: 40px;
}

.tbs-input-search-small .tbs-input-search-button {
  height: 24px;
}

.tbs-input-search.tbs-input-compact-item:not(.tbs-input-compact-item-rtl):not(.tbs-input-compact-last-item) .tbs-input-group-addon .tbs-input-search-button {
  margin-right: -1px;
  border-radius: 0;
}

.tbs-input-search.tbs-input-compact-item:not(.tbs-input-compact-first-item) .tbs-input,
.tbs-input-search.tbs-input-compact-item:not(.tbs-input-compact-first-item) .tbs-input-affix-wrapper {
  border-radius: 0;
}

.tbs-input-search.tbs-input-compact-item > .tbs-input-group-addon .tbs-input-search-button:hover,
.tbs-input-search.tbs-input-compact-item > .tbs-input:hover,
.tbs-input-search.tbs-input-compact-item .tbs-input-affix-wrapper:hover,
.tbs-input-search.tbs-input-compact-item > .tbs-input-group-addon .tbs-input-search-button:focus,
.tbs-input-search.tbs-input-compact-item > .tbs-input:focus,
.tbs-input-search.tbs-input-compact-item .tbs-input-affix-wrapper:focus,
.tbs-input-search.tbs-input-compact-item > .tbs-input-group-addon .tbs-input-search-button:active,
.tbs-input-search.tbs-input-compact-item > .tbs-input:active,
.tbs-input-search.tbs-input-compact-item .tbs-input-affix-wrapper:active {
  z-index: 2;
}

.tbs-input-search.tbs-input-compact-item > .tbs-input-affix-wrapper-focused {
  z-index: 2;
}

.tbs-input-search.tbs-input-compact-item-rtl:not(.tbs-input-compact-last-item) .tbs-input-group-addon:last-child .tbs-input-search-button {
  margin-left: -1px;
  border-radius: 0;
}

.tbs-input-group-wrapper-rtl,
.tbs-input-group-rtl {
  direction: rtl;
}

.tbs-input-affix-wrapper.tbs-input-affix-wrapper-rtl > input.tbs-input {
  border: none;
  outline: none;
}

.tbs-input-affix-wrapper-rtl .tbs-input-prefix {
  margin: 0 0 0 4px;
}

.tbs-input-affix-wrapper-rtl .tbs-input-suffix {
  margin: 0 4px 0 0;
}

.tbs-input-textarea-rtl {
  direction: rtl;
}

.tbs-input-textarea-rtl.tbs-input-textarea-show-count:after {
  text-align: left;
}

.tbs-input-affix-wrapper-rtl .tbs-input-clear-icon-has-suffix {
  margin-right: 0;
  margin-left: 4px;
}

.tbs-input-affix-wrapper-rtl .tbs-input-clear-icon {
  right: auto;
  left: 8px;
}

.tbs-input-search-rtl {
  direction: rtl;
}

.tbs-input-search-rtl .tbs-input:hover + .tbs-input-group-addon .tbs-input-search-button:not(.tbs-btn-primary),
.tbs-input-search-rtl .tbs-input:focus + .tbs-input-group-addon .tbs-input-search-button:not(.tbs-btn-primary) {
  border-left-color: var(--tbs-neutral-600);
}

.tbs-input-search-rtl .tbs-input:hover + .tbs-input-group-addon .tbs-input-search-button:not(.tbs-btn-primary):hover,
.tbs-input-search-rtl .tbs-input:focus + .tbs-input-group-addon .tbs-input-search-button:not(.tbs-btn-primary):hover {
  border-left-color: var(--tbs-primary-5);
}

.tbs-input-search-rtl > .tbs-input-group > .tbs-input-affix-wrapper:hover,
.tbs-input-search-rtl > .tbs-input-group > .tbs-input-affix-wrapper-focused {
  border-right-color: var(--tbs-primary-5);
}

.tbs-input-search-rtl > .tbs-input-group > .tbs-input-group-addon:last-child {
  right: -1px;
  left: auto;
}

.tbs-input-search-rtl > .tbs-input-group > .tbs-input-group-addon:last-child .tbs-input-search-button {
  border-radius: 2px 0 0 2px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .tbs-input {
    height: 32px;
  }
  .tbs-input-lg {
    height: 40px;
  }
  .tbs-input-sm {
    height: 24px;
  }
  .tbs-input-affix-wrapper > input.tbs-input {
    height: auto;
  }
}
textarea.tbs-textarea-autosize-measuring {
  height: auto !important;
  padding: 2px 0 !important;
  overflow: hidden !important;
}

.tbs-input-search-rtl.tbs-input-search-enter-button + .tbs-input-group-addon .tbs-input-search-button.tbs-btn-icon-only,
.tbs-input-search-rtl.tbs-input-search-enter-button input + .tbs-input-group-addon .tbs-input-search-button.tbs-btn-icon-only {
  width: 32px;
  height: 32px;
}

.tbs-input-search-rtl.tbs-input-search-enter-button + .tbs-input-group-addon .tbs-input-search-button.tbs-btn-icon-only.tbs-btn-sm,
.tbs-input-search-rtl.tbs-input-search-enter-button input + .tbs-input-group-addon .tbs-input-search-button.tbs-btn-icon-only.tbs-btn-sm {
  width: 24px;
  height: 24px;
}

.tbs-input-search-rtl.tbs-input-search-enter-button + .tbs-input-group-addon .tbs-input-search-button.tbs-btn-icon-only.tbs-btn-lg,
.tbs-input-search-rtl.tbs-input-search-enter-button input + .tbs-input-group-addon .tbs-input-search-button.tbs-btn-icon-only.tbs-btn-lg {
  width: 40px;
  height: 40px;
}

.tbs-input-affix-wrapper-textarea-with-clear-btn .tbs-input-suffix {
  margin-left: 0;
}

tbs-form-item-feedback-icon.tbs-input-suffix {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex: none;
  align-items: center;
  height: 100%;
  margin-right: 12px;
  margin-left: 4px;
  pointer-events: none;
}

.tbs-input-status-error.tbs-input-has-feedback,
.tbs-input-status-warning.tbs-input-has-feedback,
.tbs-input-status-validating.tbs-input-has-feedback,
.tbs-input-status-success.tbs-input-has-feedback {
  padding-right: 28px;
}

.tbs-input-textarea-show-count {
  position: relative;
  display: block;
}

.tbs-input-number-affix-wrapper {
  display: inline-block;
  width: 100%;
  min-width: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  display: inline-flex;
  width: 90px;
  padding: 0;
  padding-inline-start: 11px;
}

.tbs-input-number-affix-wrapper::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-input-number-affix-wrapper:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-input-number-affix-wrapper:hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-input-number-affix-wrapper:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-number-affix-wrapper:focus,
.tbs-input-number-affix-wrapper-focused {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-input-number-affix-wrapper:focus,
.tbs-input-rtl .tbs-input-number-affix-wrapper-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-number-affix-wrapper-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input-number-affix-wrapper-disabled:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input-number-affix-wrapper[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input-number-affix-wrapper[disabled]:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input-number-affix-wrapper-borderless,
.tbs-input-number-affix-wrapper-borderless:hover,
.tbs-input-number-affix-wrapper-borderless:focus,
.tbs-input-number-affix-wrapper-borderless-focused,
.tbs-input-number-affix-wrapper-borderless-disabled,
.tbs-input-number-affix-wrapper-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

textarea.tbs-input-number-affix-wrapper {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}

.tbs-input-number-affix-wrapper-lg {
  padding: 6.5px 11px;
  font-size: 16px;
}

.tbs-input-number-affix-wrapper-sm {
  padding: 0 7px;
}

.tbs-input-number-affix-wrapper-rtl {
  direction: rtl;
}

.tbs-input-number-affix-wrapper-stepperless[type=number] {
  -moz-appearance: textfield;
}

.tbs-input-number-affix-wrapper-stepperless[type=number]::-webkit-inner-spin-button,
.tbs-input-number-affix-wrapper-stepperless[type=number] ::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tbs-input-number-affix-wrapper:not(.tbs-input-number-affix-wrapper-disabled):hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
  z-index: 1;
}

.tbs-input-rtl .tbs-input-number-affix-wrapper:not(.tbs-input-number-affix-wrapper-disabled):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-number-affix-wrapper-focused,
.tbs-input-number-affix-wrapper:focus {
  z-index: 1;
}

.tbs-input-number-affix-wrapper-disabled .tbs-input-number[disabled] {
  background: transparent;
}

.tbs-input-number-affix-wrapper > div.tbs-input-number {
  width: 100%;
  border: none;
  outline: none;
}

.tbs-input-number-affix-wrapper > div.tbs-input-number.tbs-input-number-focused {
  box-shadow: none !important;
}

.tbs-input-number-affix-wrapper input.tbs-input-number-input {
  padding: 0;
}

.tbs-input-number-affix-wrapper:before {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: " ";
}

.tbs-input-number-affix-wrapper .tbs-input-number-handler-wrap {
  z-index: 2;
}

.tbs-input-number-prefix,
.tbs-input-number-suffix {
  display: flex;
  flex: none;
  align-items: center;
  pointer-events: none;
}

.tbs-input-number-prefix {
  margin-inline-end: 4px;
}

.tbs-input-number-suffix {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  margin-right: 11px;
  margin-left: 4px;
}

.tbs-input-number-group-wrapper .tbs-input-number-affix-wrapper {
  width: 100%;
}

.tbs-input-number-status-error:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number,
.tbs-input-number-status-error:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number:hover {
  background: #fff;
  border-color: var(--tbs-error-color);
}

.tbs-input-number-status-error:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number:focus,
.tbs-input-number-status-error:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number-focused {
  border-color: var(--tbs-error-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-error-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-number-status-error .tbs-input-number-prefix {
  color: var(--tbs-error-color);
}

.tbs-input-number-status-warning:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number,
.tbs-input-number-status-warning:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number:hover {
  background: #fff;
  border-color: var(--tbs-warning-color);
}

.tbs-input-number-status-warning:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number:focus,
.tbs-input-number-status-warning:not(.tbs-input-number-disabled):not(.tbs-input-number-borderless).tbs-input-number-focused {
  border-color: var(--tbs-warning-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-warning-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-number-status-warning .tbs-input-number-prefix {
  color: var(--tbs-warning-color);
}

.tbs-input-number-affix-wrapper-status-error:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper,
.tbs-input-number-affix-wrapper-status-error:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper:hover {
  background: #fff;
  border-color: var(--tbs-error-color);
}

.tbs-input-number-affix-wrapper-status-error:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper:focus,
.tbs-input-number-affix-wrapper-status-error:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper-focused {
  border-color: var(--tbs-error-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-error-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-number-affix-wrapper-status-error .tbs-input-number-prefix {
  color: var(--tbs-error-color);
}

.tbs-input-number-affix-wrapper-status-warning:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper,
.tbs-input-number-affix-wrapper-status-warning:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper:hover {
  background: #fff;
  border-color: var(--tbs-warning-color);
}

.tbs-input-number-affix-wrapper-status-warning:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper:focus,
.tbs-input-number-affix-wrapper-status-warning:not(.tbs-input-number-affix-wrapper-disabled):not(.tbs-input-number-affix-wrapper-borderless).tbs-input-number-affix-wrapper-focused {
  border-color: var(--tbs-warning-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-warning-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-number-affix-wrapper-status-warning .tbs-input-number-prefix {
  color: var(--tbs-warning-color);
}

.tbs-input-number-group-wrapper-status-error .tbs-input-number-group-addon {
  color: var(--tbs-error-color);
  border-color: var(--tbs-error-color);
}

.tbs-input-number-group-wrapper-status-warning .tbs-input-number-group-addon {
  color: var(--tbs-warning-color);
  border-color: var(--tbs-warning-color);
}

.tbs-input-number {
  box-sizing: border-box;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  width: 100%;
  min-width: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  transition: all 0.3s;
  display: inline-block;
  width: 90px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
}

.tbs-input-number::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-input-number:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-input-rtl .tbs-input-number:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-number:focus,
.tbs-input-number-focused {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-input-number:focus,
.tbs-input-rtl .tbs-input-number-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-number[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input-number[disabled]:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input-number-borderless,
.tbs-input-number-borderless:hover,
.tbs-input-number-borderless:focus,
.tbs-input-number-borderless-focused,
.tbs-input-number-borderless-disabled,
.tbs-input-number-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

textarea.tbs-input-number {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}

.tbs-input-number-lg {
  padding: 6.5px 11px;
  font-size: 16px;
}

.tbs-input-number-sm {
  padding: 0 7px;
}

.tbs-input-number-stepperless[type=number] {
  -moz-appearance: textfield;
}

.tbs-input-number-stepperless[type=number]::-webkit-inner-spin-button,
.tbs-input-number-stepperless[type=number] ::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tbs-input-number-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.tbs-input-number-group[class*=col-] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.tbs-input-number-group > [class*=col-] {
  padding-right: 8px;
}

.tbs-input-number-group > [class*=col-]:last-child {
  padding-right: 0;
}

.tbs-input-number-group-addon,
.tbs-input-number-group-wrap,
.tbs-input-number-group > .tbs-input-number {
  display: table-cell;
}

.tbs-input-number-group-addon:not(:first-child):not(:last-child),
.tbs-input-number-group-wrap:not(:first-child):not(:last-child),
.tbs-input-number-group > .tbs-input-number:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.tbs-input-number-group-addon,
.tbs-input-number-group-wrap {
  width: 1px;
  white-space: nowrap;
  vertical-align: middle;
}

.tbs-input-number-group-wrap > * {
  display: block !important;
}

.tbs-input-number-group .tbs-input-number {
  float: left;
  width: 100%;
  margin-bottom: 0;
  text-align: inherit;
}

.tbs-input-number-group .tbs-input-number:focus {
  z-index: 1;
  border-right-width: 1px;
}

.tbs-input-number-group .tbs-input-number:hover {
  z-index: 1;
  border-right-width: 1px;
}

.tbs-input-search-with-button .tbs-input-number-group .tbs-input-number:hover {
  z-index: 0;
}

.tbs-input-number-group-addon {
  position: relative;
  padding: 0 11px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  background-color: #fafafa;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  transition: all 0.3s;
}

.tbs-input-number-group-addon .tbs-select {
  margin: -5px -11px;
}

.tbs-input-number-group-addon .tbs-select.tbs-select-single:not(.tbs-select-customize-input) .tbs-select-selector {
  background-color: inherit;
  border: 1px solid transparent;
  box-shadow: none;
}

.tbs-input-number-group-addon .tbs-select-open .tbs-select-selector,
.tbs-input-number-group-addon .tbs-select-focused .tbs-select-selector {
  color: var(--tbs-primary-color);
}

.tbs-input-number-group-addon .tbs-cascader-picker {
  margin: -9px -12px;
  background-color: transparent;
}

.tbs-input-number-group-addon .tbs-cascader-picker .tbs-cascader-input {
  text-align: left;
  border: 0;
  box-shadow: none;
}

.tbs-input-number-group > .tbs-input-number:first-child,
.tbs-input-number-group-addon:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-number-group > .tbs-input-number:first-child .tbs-select .tbs-select-selector,
.tbs-input-number-group-addon:first-child .tbs-select .tbs-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-number-group > .tbs-input-number-affix-wrapper:not(:first-child) .tbs-input-number {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-number-group > .tbs-input-number-affix-wrapper:not(:last-child) .tbs-input-number {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-number-group-addon:first-child {
  border-right: 0;
}

.tbs-input-number-group-addon:last-child {
  border-left: 0;
}

.tbs-input-number-group > .tbs-input-number:last-child,
.tbs-input-number-group-addon:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-number-group > .tbs-input-number:last-child .tbs-select .tbs-select-selector,
.tbs-input-number-group-addon:last-child .tbs-select .tbs-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-number-group-lg .tbs-input-number,
.tbs-input-number-group-lg > .tbs-input-number-group-addon {
  padding: 6.5px 11px;
  font-size: 16px;
}

.tbs-input-number-group-sm .tbs-input-number,
.tbs-input-number-group-sm > .tbs-input-number-group-addon {
  padding: 0 7px;
}

.tbs-input-number-group-lg .tbs-select-single .tbs-select-selector {
  height: 40px;
}

.tbs-input-number-group-sm .tbs-select-single .tbs-select-selector {
  height: 24px;
}

.tbs-input-number-group .tbs-input-number-affix-wrapper:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-search .tbs-input-number-group .tbs-input-number-affix-wrapper:not(:last-child) {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.tbs-input-number-group .tbs-input-number-affix-wrapper:not(:first-child),
.tbs-input-search .tbs-input-number-group .tbs-input-number-affix-wrapper:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-number-group.tbs-input-number-group-compact {
  display: block;
}

.tbs-input-number-group.tbs-input-number-group-compact:before {
  display: table;
  content: "";
}

.tbs-input-number-group.tbs-input-number-group-compact:after {
  display: table;
  clear: both;
  content: "";
}

.tbs-input-number-group.tbs-input-number-group-compact-addon:not(:first-child):not(:last-child),
.tbs-input-number-group.tbs-input-number-group-compact-wrap:not(:first-child):not(:last-child),
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-number:not(:first-child):not(:last-child) {
  border-right-width: 1px;
}

.tbs-input-number-group.tbs-input-number-group-compact-addon:not(:first-child):not(:last-child):hover,
.tbs-input-number-group.tbs-input-number-group-compact-wrap:not(:first-child):not(:last-child):hover,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-number:not(:first-child):not(:last-child):hover {
  z-index: 1;
}

.tbs-input-number-group.tbs-input-number-group-compact-addon:not(:first-child):not(:last-child):focus,
.tbs-input-number-group.tbs-input-number-group-compact-wrap:not(:first-child):not(:last-child):focus,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-number:not(:first-child):not(:last-child):focus {
  z-index: 1;
}

.tbs-input-number-group.tbs-input-number-group-compact > * {
  display: inline-block;
  float: none;
  vertical-align: top;
  border-radius: 0;
}

.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-number-affix-wrapper,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-number-number-affix-wrapper,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-picker-range {
  display: inline-flex;
}

.tbs-input-number-group.tbs-input-number-group-compact > *:not(:last-child) {
  margin-right: -1px;
  border-right-width: 1px;
}

.tbs-input-number-group.tbs-input-number-group-compact .tbs-input-number {
  float: none;
}

.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select > .tbs-select-selector,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-auto-complete .tbs-input,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker .tbs-input,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-group-wrapper .tbs-input {
  border-right-width: 1px;
  border-radius: 0;
}

.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select > .tbs-select-selector:hover,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-auto-complete .tbs-input:hover,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker .tbs-input:hover,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-group-wrapper .tbs-input:hover {
  z-index: 1;
}

.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select > .tbs-select-selector:focus,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-auto-complete .tbs-input:focus,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker .tbs-input:focus,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-input-group-wrapper .tbs-input:focus {
  z-index: 1;
}

.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-focused {
  z-index: 1;
}

.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select > .tbs-select-arrow {
  z-index: 1;
}

.tbs-input-number-group.tbs-input-number-group-compact > *:first-child,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select:first-child > .tbs-select-selector,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-auto-complete:first-child .tbs-input,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker:first-child .tbs-input {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}

.tbs-input-number-group.tbs-input-number-group-compact > *:last-child,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select:last-child > .tbs-select-selector,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker:last-child .tbs-input,
.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker-focused:last-child .tbs-input {
  border-right-width: 1px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-auto-complete .tbs-input {
  vertical-align: top;
}

.tbs-input-number-group.tbs-input-number-group-compact .tbs-input-group-wrapper + .tbs-input-group-wrapper {
  margin-left: -1px;
}

.tbs-input-number-group.tbs-input-number-group-compact .tbs-input-group-wrapper + .tbs-input-group-wrapper .tbs-input-affix-wrapper {
  border-radius: 0;
}

.tbs-input-number-group.tbs-input-number-group-compact .tbs-input-group-wrapper:not(:last-child).tbs-input-search > .tbs-input-group > .tbs-input-group-addon > .tbs-input-search-button {
  border-radius: 0;
}

.tbs-input-number-group.tbs-input-number-group-compact .tbs-input-group-wrapper:not(:last-child).tbs-input-search > .tbs-input-group > .tbs-input {
  border-radius: 2px 0 0 2px;
}

.tbs-input-number-group > .tbs-input-number-rtl:first-child,
.tbs-input-number-group-rtl .tbs-input-number-group-addon:first-child {
  border-radius: 0 2px 2px 0;
}

.tbs-input-number-group-rtl .tbs-input-number-group-addon:first-child {
  border-right: 1px solid var(--tbs-neutral-600);
  border-left: 0;
}

.tbs-input-number-group-rtl.tbs-input-number-group > .tbs-input-number:last-child,
.tbs-input-number-group-rtl.tbs-input-number-group-addon:last-child {
  border-radius: 2px 0 0 2px;
}

.tbs-input-number-group-rtl.tbs-input-number-group .tbs-input-number-affix-wrapper:not(:first-child) {
  border-radius: 2px 0 0 2px;
}

.tbs-input-number-group-rtl.tbs-input-number-group .tbs-input-number-affix-wrapper:not(:last-child) {
  border-radius: 0 2px 2px 0;
}

.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > *:not(:last-child) {
  margin-right: 0;
  margin-left: -1px;
  border-left-width: 1px;
}

.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > *:first-child,
.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select:first-child > .tbs-select-selector,
.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-auto-complete:first-child .tbs-input,
.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker:first-child .tbs-input {
  border-radius: 0 2px 2px 0;
}

.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > *:last-child,
.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select:last-child > .tbs-select-selector,
.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > .tbs-select-auto-complete:last-child .tbs-input,
.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker:last-child .tbs-input,
.tbs-input-number-group-rtl.tbs-input-number-group.tbs-input-number-group-compact > .tbs-cascader-picker-focused:last-child .tbs-input {
  border-left-width: 1px;
  border-radius: 2px 0 0 2px;
}

.tbs-input-number-group.tbs-input-number-group-compact .tbs-input-group-wrapper-rtl + .tbs-input-group-wrapper-rtl {
  margin-right: -1px;
  margin-left: 0;
}

.tbs-input-number-group.tbs-input-number-group-compact .tbs-input-group-wrapper-rtl:not(:last-child).tbs-input-search > .tbs-input-group > .tbs-input {
  border-radius: 0 2px 2px 0;
}

.tbs-input-number-group > .tbs-input-number-rtl:first-child {
  border-radius: 0 2px 2px 0;
}

.tbs-input-number-group > .tbs-input-number-rtl:last-child {
  border-radius: 2px 0 0 2px;
}

.tbs-input-number-group-rtl .tbs-input-number-group-addon:first-child {
  border-right: 1px solid var(--tbs-neutral-600);
  border-left: 0;
  border-radius: 0 2px 2px 0;
}

.tbs-input-number-group-rtl .tbs-input-number-group-addon:last-child {
  border-right: 0;
  border-left: 1px solid var(--tbs-neutral-600);
  border-radius: 2px 0 0 2px;
}

.tbs-input-number-group-wrapper {
  display: inline-block;
  text-align: start;
  vertical-align: top;
}

.tbs-input-number-handler {
  position: relative;
  display: block;
  width: 100%;
  height: 50%;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.4509803922);
  font-weight: 700;
  line-height: 0;
  text-align: center;
  border-left: 1px solid var(--tbs-neutral-600);
  transition: all 0.1s linear;
}

.tbs-input-number-handler:active {
  background: #f4f4f4;
}

.tbs-input-number-handler:hover .tbs-input-number-handler-up-inner,
.tbs-input-number-handler:hover .tbs-input-number-handler-down-inner {
  color: var(--tbs-primary-5);
}

.tbs-input-number-handler-up-inner,
.tbs-input-number-handler-down-inner {
  display: inline-flex;
  align-items: center;
  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;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  width: 12px;
  height: 12px;
  color: rgba(0, 0, 0, 0.4509803922);
  line-height: 12px;
  transition: all 0.1s linear;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-input-number-handler-up-inner > *,
.tbs-input-number-handler-down-inner > * {
  line-height: 1;
}

.tbs-input-number-handler-up-inner svg,
.tbs-input-number-handler-down-inner svg {
  display: inline-block;
}

.tbs-input-number-handler-up-inner:before,
.tbs-input-number-handler-down-inner:before {
  display: none;
}

.tbs-input-number-handler-up-inner .tbs-input-number-handler-up-inner-icon,
.tbs-input-number-handler-up-inner .tbs-input-number-handler-down-inner-icon,
.tbs-input-number-handler-down-inner .tbs-input-number-handler-up-inner-icon,
.tbs-input-number-handler-down-inner .tbs-input-number-handler-down-inner-icon {
  display: block;
}

.tbs-input-number:hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
}

.tbs-input-number:hover + .tbs-form-item-children-icon {
  opacity: 0;
  transition: opacity 0.24s linear 0.24s;
}

.tbs-input-number-focused {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-input-number-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-input-number-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-input-number-disabled:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-input-number-disabled .tbs-input-number-input {
  cursor: not-allowed;
}

.tbs-input-number-disabled .tbs-input-number-handler-wrap,
.tbs-input-number-readonly .tbs-input-number-handler-wrap {
  display: none;
}

.tbs-input-number-input {
  width: 100%;
  height: 30px;
  padding: 0 11px;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 2px;
  outline: 0;
  transition: all 0.3s linear;
  appearance: textfield !important;
}

.tbs-input-number-input::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-input-number-input:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-input-number-input[type=number]::-webkit-inner-spin-button,
.tbs-input-number-input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.tbs-input-number-lg {
  padding: 0;
  font-size: 16px;
}

.tbs-input-number-lg input {
  height: 38px;
}

.tbs-input-number-sm {
  padding: 0;
}

.tbs-input-number-sm input {
  height: 22px;
  padding: 0 7px;
}

.tbs-input-number-handler-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  background: #fff;
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.24s linear 0.1s;
}

.tbs-input-number-handler-wrap .tbs-input-number-handler .tbs-input-number-handler-up-inner,
.tbs-input-number-handler-wrap .tbs-input-number-handler .tbs-input-number-handler-down-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  margin-right: 0;
  font-size: 7px;
}

.tbs-input-number-borderless .tbs-input-number-handler-wrap {
  border-left-width: 0;
}

.tbs-input-number-handler-wrap:hover .tbs-input-number-handler {
  height: 40%;
}

.tbs-input-number:hover .tbs-input-number-handler-wrap,
.tbs-input-number-focused .tbs-input-number-handler-wrap {
  opacity: 1;
}

.tbs-input-number-handler-up {
  border-top-right-radius: 2px;
  cursor: pointer;
}

.tbs-input-number-handler-up-inner {
  top: 50%;
  margin-top: -5px;
  text-align: center;
}

.tbs-input-number-handler-up:hover {
  height: 60% !important;
}

.tbs-input-number-handler-down {
  top: 0;
  border-top: 1px solid var(--tbs-neutral-600);
  border-bottom-right-radius: 2px;
  cursor: pointer;
}

.tbs-input-number-handler-down-inner {
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}

.tbs-input-number-handler-down:hover {
  height: 60% !important;
}

.tbs-input-number-borderless .tbs-input-number-handler-down {
  border-top-width: 0;
}

.tbs-input-number:hover:not(.tbs-input-number-borderless) .tbs-input-number-handler-down,
.tbs-input-number-focused:not(.tbs-input-number-borderless) .tbs-input-number-handler-down {
  border-top: 1px solid var(--tbs-neutral-600);
}

.tbs-input-number-handler-up-disabled,
.tbs-input-number-handler-down-disabled {
  cursor: not-allowed;
}

.tbs-input-number-handler-up-disabled:hover .tbs-input-number-handler-up-inner,
.tbs-input-number-handler-down-disabled:hover .tbs-input-number-handler-down-inner {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-input-number-borderless {
  box-shadow: none;
}

.tbs-input-number-out-of-range input {
  color: var(--tbs-error-color);
}

.tbs-input-number-compact-item:not(.tbs-input-number-compact-last-item):not(.tbs-input-number-compact-item-rtl) {
  margin-right: -1px;
}

.tbs-input-number-compact-item:not(.tbs-input-number-compact-last-item).tbs-input-number-compact-item-rtl {
  margin-left: -1px;
}

.tbs-input-number-compact-item:hover,
.tbs-input-number-compact-item:focus,
.tbs-input-number-compact-item:active {
  z-index: 2;
}

.tbs-input-number-compact-item.tbs-input-number-focused {
  z-index: 2;
}

.tbs-input-number-compact-item[disabled] {
  z-index: 0;
}

.tbs-input-number-compact-item:not(.tbs-input-number-compact-first-item):not(.tbs-input-number-compact-last-item).tbs-input-number {
  border-radius: 0;
}

.tbs-input-number-compact-item.tbs-input-number.tbs-input-number-compact-first-item:not(.tbs-input-number-compact-last-item):not(.tbs-input-number-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-number-compact-item.tbs-input-number.tbs-input-number-compact-last-item:not(.tbs-input-number-compact-first-item):not(.tbs-input-number-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-number-compact-item.tbs-input-number.tbs-input-number-compact-item-rtl.tbs-input-number-compact-first-item:not(.tbs-input-number-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-input-number-compact-item.tbs-input-number.tbs-input-number-compact-item-rtl.tbs-input-number-compact-last-item:not(.tbs-input-number-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-input-number-rtl {
  direction: rtl;
}

.tbs-input-number-rtl .tbs-input-number-handler {
  border-right: 1px solid var(--tbs-neutral-600);
  border-left: 0;
}

.tbs-input-number-rtl .tbs-input-number-handler-wrap {
  right: auto;
  left: 0;
}

.tbs-input-number-rtl.tbs-input-number-borderless .tbs-input-number-handler-wrap {
  border-right-width: 0;
}

.tbs-input-number-rtl .tbs-input-number-handler-up {
  border-top-right-radius: 0;
}

.tbs-input-number-rtl .tbs-input-number-handler-down {
  border-bottom-right-radius: 0;
}

.tbs-input-number-rtl .tbs-input-number-input {
  direction: ltr;
  text-align: right;
}

.tbs-input-number-affix-wrapper > tbs-input-number.tbs-input-number {
  width: 100%;
  border: none;
  outline: none;
}

.tbs-input-number-affix-wrapper > tbs-input-number.tbs-input-number.tbs-input-number-focused {
  box-shadow: none !important;
}

.tbs-input-number.tbs-input-number-has-feedback .tbs-input-number-handler-wrap {
  z-index: 2;
}

.tbs-layout {
  display: flex;
  flex: auto;
  flex-direction: column;
  min-height: 0;
  background: #f0f2f5;
}

.tbs-layout,
.tbs-layout * {
  box-sizing: border-box;
}

.tbs-layout.tbs-layout-has-sider {
  flex-direction: row;
}

.tbs-layout.tbs-layout-has-sider > .tbs-layout,
.tbs-layout.tbs-layout-has-sider > .tbs-layout-content {
  width: 0;
}

.tbs-layout-header,
.tbs-layout-footer {
  flex: 0 0 auto;
}

.tbs-layout-header {
  height: 64px;
  padding: 0 50px;
  color: rgba(0, 0, 0, 0.8509803922);
  line-height: 64px;
  background: #001529;
}

.tbs-layout-footer {
  padding: 24px 50px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  background: #f0f2f5;
}

.tbs-layout-content {
  flex: auto;
  min-height: 0;
}

.tbs-layout-sider {
  position: relative;
  min-width: 0;
  background: #001529;
  transition: all 0.2s;
}

.tbs-layout-sider-children {
  height: 100%;
  margin-top: -0.1px;
  padding-top: 0.1px;
}

.tbs-layout-sider-children .tbs-menu.tbs-menu-inline-collapsed {
  width: auto;
}

.tbs-layout-sider-has-trigger {
  padding-bottom: 48px;
}

.tbs-layout-sider-right {
  order: 1;
}

.tbs-layout-sider-trigger {
  position: fixed;
  bottom: 0;
  z-index: 1;
  height: 48px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  background: #002140;
  cursor: pointer;
  transition: all 0.2s;
}

.tbs-layout-sider-zero-width > * {
  overflow: hidden;
}

.tbs-layout-sider-zero-width-trigger {
  position: absolute;
  top: 64px;
  right: -36px;
  z-index: 1;
  width: 36px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  background: #001529;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tbs-layout-sider-zero-width-trigger:after {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: all 0.3s;
  content: "";
}

.tbs-layout-sider-zero-width-trigger:hover:after {
  background: rgba(255, 255, 255, 0.1019607843);
}

.tbs-layout-sider-zero-width-trigger-right {
  left: -36px;
  border-radius: 2px 0 0 2px;
}

.tbs-layout-sider-light {
  background: #fff;
}

.tbs-layout-sider-light .tbs-layout-sider-trigger,
.tbs-layout-sider-light .tbs-layout-sider-zero-width-trigger {
  color: rgba(0, 0, 0, 0.8509803922);
  background: #fff;
}

.tbs-layout-rtl {
  direction: rtl;
}

tbs-content {
  display: block;
}

tbs-footer {
  display: block;
}

tbs-header {
  display: block;
}

.tbs-form-item .tbs-input-number + .tbs-form-text {
  margin-left: 8px;
}

.tbs-form-inline {
  display: flex;
  flex-wrap: wrap;
}

.tbs-form-inline .tbs-form-item {
  flex: none;
  flex-wrap: nowrap;
  margin-right: 16px;
  margin-bottom: 0;
}

.tbs-form-inline .tbs-form-item > .tbs-form-item-label,
.tbs-form-inline .tbs-form-item > .tbs-form-item-control {
  display: inline-block;
  vertical-align: top;
}

.tbs-form-inline .tbs-form-item > .tbs-form-item-label {
  flex: none;
}

.tbs-form-inline .tbs-form-item .tbs-form-text,
.tbs-form-inline .tbs-form-item .tbs-form-item-has-feedback {
  display: inline-block;
}

.tbs-form-horizontal .tbs-form-item-label {
  flex-grow: 0;
}

.tbs-form-horizontal .tbs-form-item-control {
  flex: 1 1 0;
  min-width: 0;
}

.tbs-form-horizontal .tbs-form-item-label[class$="-24"] + .tbs-form-item-control,
.tbs-form-horizontal .tbs-form-item-label[class*="-24 "] + .tbs-form-item-control {
  min-width: unset;
}

.tbs-form-vertical .tbs-form-item-row {
  flex-direction: column;
}

.tbs-form-vertical .tbs-form-item-label > label {
  height: auto;
}

.tbs-form-vertical .tbs-form-item .tbs-form-item-control {
  width: 100%;
}

.tbs-form-vertical .tbs-form-item-label,
.tbs-col-24.tbs-form-item-label,
.tbs-col-xl-24.tbs-form-item-label {
  line-height: 1.5715;
  white-space: initial;
  text-align: left;
}

.tbs-form-vertical .tbs-form-item-label > label,
.tbs-col-24.tbs-form-item-label > label,
.tbs-col-xl-24.tbs-form-item-label > label {
  margin: 0;
}

.tbs-form-vertical .tbs-form-item-label > label:after,
.tbs-col-24.tbs-form-item-label > label:after,
.tbs-col-xl-24.tbs-form-item-label > label:after {
  display: none;
}

.tbs-form-rtl.tbs-form-vertical .tbs-form-item-label,
.tbs-form-rtl.tbs-col-24.tbs-form-item-label,
.tbs-form-rtl.tbs-col-xl-24.tbs-form-item-label {
  text-align: right;
}

@media (max-width: 575px) {
  .tbs-form-item .tbs-form-item-label {
    padding: 0 0 8px;
    line-height: 1.5715;
    white-space: initial;
    text-align: left;
  }
  .tbs-form-item .tbs-form-item-label > label {
    margin: 0;
  }
  .tbs-form-item .tbs-form-item-label > label:after {
    display: none;
  }
  .tbs-form-rtl.tbs-form-item .tbs-form-item-label {
    text-align: right;
  }
  .tbs-form .tbs-form-item {
    flex-wrap: wrap;
  }
  .tbs-form .tbs-form-item .tbs-form-item-label,
  .tbs-form .tbs-form-item .tbs-form-item-control {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tbs-col-xs-24.tbs-form-item-label {
    padding: 0 0 8px;
    line-height: 1.5715;
    white-space: initial;
    text-align: left;
  }
  .tbs-col-xs-24.tbs-form-item-label > label {
    margin: 0;
  }
  .tbs-col-xs-24.tbs-form-item-label > label:after {
    display: none;
  }
  .tbs-form-rtl.tbs-col-xs-24.tbs-form-item-label {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .tbs-col-sm-24.tbs-form-item-label {
    padding: 0 0 8px;
    line-height: 1.5715;
    white-space: initial;
    text-align: left;
  }
  .tbs-col-sm-24.tbs-form-item-label > label {
    margin: 0;
  }
  .tbs-col-sm-24.tbs-form-item-label > label:after {
    display: none;
  }
  .tbs-form-rtl.tbs-col-sm-24.tbs-form-item-label {
    text-align: right;
  }
}
@media (max-width: 991px) {
  .tbs-col-md-24.tbs-form-item-label {
    padding: 0 0 8px;
    line-height: 1.5715;
    white-space: initial;
    text-align: left;
  }
  .tbs-col-md-24.tbs-form-item-label > label {
    margin: 0;
  }
  .tbs-col-md-24.tbs-form-item-label > label:after {
    display: none;
  }
  .tbs-form-rtl.tbs-col-md-24.tbs-form-item-label {
    text-align: right;
  }
}
@media (max-width: 1199px) {
  .tbs-col-lg-24.tbs-form-item-label {
    padding: 0 0 8px;
    line-height: 1.5715;
    white-space: initial;
    text-align: left;
  }
  .tbs-col-lg-24.tbs-form-item-label > label {
    margin: 0;
  }
  .tbs-col-lg-24.tbs-form-item-label > label:after {
    display: none;
  }
  .tbs-form-rtl.tbs-col-lg-24.tbs-form-item-label {
    text-align: right;
  }
}
@media (max-width: 1599px) {
  .tbs-col-xl-24.tbs-form-item-label {
    padding: 0 0 8px;
    line-height: 1.5715;
    white-space: initial;
    text-align: left;
  }
  .tbs-col-xl-24.tbs-form-item-label > label {
    margin: 0;
  }
  .tbs-col-xl-24.tbs-form-item-label > label:after {
    display: none;
  }
  .tbs-form-rtl.tbs-col-xl-24.tbs-form-item-label {
    text-align: right;
  }
}
.tbs-form-item-explain-error {
  color: var(--tbs-semantic-red-1000);
}

.tbs-form-item-explain-warning {
  color: var(--tbs-warning-color);
}

.tbs-form-item-has-feedback .tbs-switch {
  margin: 2px 0 4px;
}

.tbs-form-item-has-warning .tbs-form-item-split {
  color: var(--tbs-warning-color);
}

.tbs-form-item-has-error .tbs-form-item-split {
  color: var(--tbs-error-color);
}

.tbs-form {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
}

.tbs-form legend {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 16px;
  line-height: inherit;
  border: 0;
  border-bottom: 1px solid var(--tbs-neutral-600);
}

.tbs-form label {
  font-size: 14px;
}

.tbs-form input[type=search] {
  box-sizing: border-box;
}

.tbs-form input[type=radio],
.tbs-form input[type=checkbox] {
  line-height: normal;
}

.tbs-form input[type=range] {
  display: block;
  width: 100%;
}

.tbs-form select[multiple],
.tbs-form select[size] {
  height: auto;
}

.tbs-form input[type=file]:focus,
.tbs-form input[type=radio]:focus,
.tbs-form input[type=checkbox]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.tbs-form output {
  display: block;
  padding-top: 15px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
}

.tbs-form .tbs-form-text {
  display: inline-block;
  padding-right: 8px;
}

.tbs-form-small .tbs-form-item-label > label {
  height: 24px;
}

.tbs-form-small .tbs-form-item-control-input {
  min-height: 24px;
}

.tbs-form-large .tbs-form-item-label > label {
  height: 40px;
}

.tbs-form-large .tbs-form-item-control-input {
  min-height: 40px;
}

.tbs-form-item {
  box-sizing: border-box;
  margin: 0 0 18px;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  font-family: Arimo, sans-serif;
  letter-spacing: 0.0025rem;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: "tnum";
  vertical-align: top;
}

.tbs-form-item-with-help {
  transition: none;
}

.tbs-form-item-hidden,
.tbs-form-item-hidden.tbs-row {
  display: none;
}

.tbs-form-item-label {
  display: inline-block;
  flex-grow: 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  vertical-align: middle;
}

.tbs-form-item-label-left {
  text-align: left;
}

.tbs-form-item-label-wrap {
  overflow: unset;
  line-height: 1.3215em;
  white-space: unset;
}

.tbs-form-item-label > label {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  height: 36px;
  color: var(--tbs-neutral-1400);
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  font-family: Arimo, sans-serif;
  letter-spacing: 0.0025rem;
}

.tbs-form-item-label > label > .anticon {
  font-size: 14px;
  vertical-align: top;
}

.tbs-form-item-label > label.tbs-form-item-required:not(.tbs-form-item-required-mark-optional):before {
  display: inline-block;
  margin-right: 4px;
  color: #ff4d4f;
  font-size: 14px;
  font-family: SimSun, sans-serif;
  line-height: 1;
  content: "*";
}

.tbs-form-hide-required-mark .tbs-form-item-label > label.tbs-form-item-required:not(.tbs-form-item-required-mark-optional):before {
  display: none;
}

.tbs-form-item-label > label .tbs-form-item-optional {
  display: inline-block;
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-form-hide-required-mark .tbs-form-item-label > label .tbs-form-item-optional {
  display: none;
}

.tbs-form-item-label > label .tbs-form-item-tooltip {
  color: rgba(0, 0, 0, 0.4509803922);
  cursor: help;
  writing-mode: horizontal-tb;
  margin-inline-start: 4px;
}

.tbs-form-item-label > label:after {
  content: ":";
  position: relative;
  top: -0.5px;
  margin: 0 8px 0 2px;
}

.tbs-form-item-label > label.tbs-form-item-no-colon:after {
  content: " ";
}

.tbs-form-item-control {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tbs-form-item-control:first-child:not([class^=tbs-col-]):not([class*=" tbs-col-"]) {
  width: 100%;
}

.tbs-form-item-control-input {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 32px;
}

.tbs-form-item-control-input-content {
  flex: auto;
  max-width: 100%;
}

.tbs-form-item-explain,
.tbs-form-item-extra {
  clear: both;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 11px;
  line-height: 1.5715;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.tbs-form-item-explain-connected {
  width: 100%;
}

.tbs-form-item-extra {
  min-height: 24px;
}

.tbs-form-item-with-help .tbs-form-item-explain {
  height: auto;
  opacity: 1;
}

.tbs-form-item-feedback-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex: none;
  align-items: center;
  height: 100%;
  margin-right: 12px;
  margin-left: 4px;
  pointer-events: none;
  font-size: 14px;
  text-align: center;
  visibility: visible;
  animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  pointer-events: none;
}

.tbs-form-item-feedback-icon-success {
  color: var(--tbs-success-color);
}

.tbs-form-item-feedback-icon-error {
  color: var(--tbs-error-color);
}

.tbs-form-item-feedback-icon-warning {
  color: var(--tbs-warning-color);
}

.tbs-form-item-feedback-icon-validating {
  color: var(--tbs-primary-color);
}

.tbs-show-help {
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-show-help-appear,
.tbs-show-help-enter {
  opacity: 0;
}

.tbs-show-help-appear-active,
.tbs-show-help-enter-active,
.tbs-show-help-leave {
  opacity: 1;
}

.tbs-show-help-leave-active {
  opacity: 0;
}

.tbs-show-help-item {
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.tbs-show-help-item-appear,
.tbs-show-help-item-enter {
  transform: translateY(-5px);
  opacity: 0;
}

.tbs-show-help-item-appear-active,
.tbs-show-help-item-enter-active {
  transform: translateY(0);
  opacity: 1;
}

.tbs-show-help-item-leave {
  transition: height 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.tbs-show-help-item-leave-active {
  transform: translateY(-5px);
}

@keyframes diffZoomIn1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes diffZoomIn2 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes diffZoomIn3 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.tbs-form-rtl {
  direction: rtl;
}

.tbs-form-rtl .tbs-form-item-label {
  text-align: left;
}

.tbs-form-rtl .tbs-form-item-label > label.tbs-form-item-required:before {
  margin-right: 0;
  margin-left: 4px;
}

.tbs-form-rtl .tbs-form-item-label > label:after {
  margin: 0 2px 0 8px;
}

.tbs-form-rtl .tbs-form-item-label > label .tbs-form-item-optional {
  margin-right: 4px;
  margin-left: 0;
}

.tbs-col-rtl .tbs-form-item-control:first-child {
  width: 100%;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-input {
  padding-right: 11px;
  padding-left: 24px;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-input-affix-wrapper .tbs-input-suffix {
  padding-right: 11px;
  padding-left: 18px;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-input-affix-wrapper .tbs-input,
.tbs-form-rtl .tbs-form-item-has-feedback .tbs-input-number-affix-wrapper .tbs-input-number {
  padding: 0;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-input-search:not(.tbs-input-search-enter-button) .tbs-input-suffix {
  right: auto;
  left: 28px;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-input-number {
  padding-left: 18px;
}

.tbs-form-rtl .tbs-form-item-has-feedback > .tbs-select .tbs-select-arrow,
.tbs-form-rtl .tbs-form-item-has-feedback > .tbs-select .tbs-select-clear,
.tbs-form-rtl .tbs-form-item-has-feedback :not(.tbs-input-group-addon) > .tbs-select .tbs-select-arrow,
.tbs-form-rtl .tbs-form-item-has-feedback :not(.tbs-input-group-addon) > .tbs-select .tbs-select-clear,
.tbs-form-rtl .tbs-form-item-has-feedback :not(.tbs-input-number-group-addon) > .tbs-select .tbs-select-arrow,
.tbs-form-rtl .tbs-form-item-has-feedback :not(.tbs-input-number-group-addon) > .tbs-select .tbs-select-clear {
  right: auto;
  left: 32px;
}

.tbs-form-rtl .tbs-form-item-has-feedback > .tbs-select .tbs-select-selection-selected-value,
.tbs-form-rtl .tbs-form-item-has-feedback :not(.tbs-input-group-addon) > .tbs-select .tbs-select-selection-selected-value,
.tbs-form-rtl .tbs-form-item-has-feedback :not(.tbs-input-number-group-addon) > .tbs-select .tbs-select-selection-selected-value {
  padding-right: 0;
  padding-left: 42px;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-cascader-picker-arrow {
  margin-right: 0;
  margin-left: 19px;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-cascader-picker-clear {
  right: auto;
  left: 32px;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-picker,
.tbs-form-rtl .tbs-form-item-has-feedback .tbs-picker-large {
  padding-right: 11px;
  padding-left: 29.2px;
}

.tbs-form-rtl .tbs-form-item-has-feedback .tbs-picker-small {
  padding-right: 7px;
  padding-left: 25.2px;
}

.tbs-form-rtl .tbs-form-item-has-feedback.tbs-form-item-has-success .tbs-form-item-children-icon,
.tbs-form-rtl .tbs-form-item-has-feedback.tbs-form-item-has-warning .tbs-form-item-children-icon,
.tbs-form-rtl .tbs-form-item-has-feedback.tbs-form-item-has-error .tbs-form-item-children-icon,
.tbs-form-rtl .tbs-form-item-has-feedback.tbs-form-item-is-validating .tbs-form-item-children-icon {
  right: auto;
  left: 0;
}

.tbs-form-rtl.tbs-form-inline .tbs-form-item {
  margin-right: 0;
  margin-left: 16px;
}

.tbs-form-item-explain-connected {
  height: 0;
}

.tbs-form-item-with-help {
  margin-bottom: 0;
}

.tbs-form-item-with-help .tbs-form-item-explain {
  min-height: 18px;
}

.tbs-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
}

.tbs-list * {
  outline: none;
}

.tbs-list-pagination {
  margin-top: 24px;
  text-align: right;
}

.tbs-list-pagination .tbs-pagination-options {
  text-align: left;
}

.tbs-list-more {
  margin-top: 12px;
  text-align: center;
}

.tbs-list-more button {
  padding-right: 32px;
  padding-left: 32px;
}

.tbs-list-spin {
  min-height: 40px;
  text-align: center;
}

.tbs-list-empty-text {
  padding: 16px;
  color: rgba(0, 0, 0, 0.2509803922);
  font-size: 14px;
  text-align: center;
}

.tbs-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tbs-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-list-item-meta {
  display: flex;
  flex: 1;
  align-items: flex-start;
  max-width: 100%;
}

.tbs-list-item-meta-avatar {
  margin-right: 16px;
}

.tbs-list-item-meta-content {
  flex: 1 0;
  width: 0;
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-list-item-meta-title {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
}

.tbs-list-item-meta-title > a {
  color: rgba(0, 0, 0, 0.8509803922);
  transition: all 0.3s;
}

.tbs-list-item-meta-title > a:hover {
  color: var(--tbs-primary-color);
}

.tbs-list-item-meta-description {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
  line-height: 1.5715;
}

.tbs-list-item-action {
  flex: 0 0 auto;
  margin-left: 48px;
  padding: 0;
  font-size: 0;
  list-style: none;
}

.tbs-list-item-action > li {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
  line-height: 1.5715;
  text-align: center;
}

.tbs-list-item-action > li:first-child {
  padding-left: 0;
}

.tbs-list-item-action-split {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-list-header,
.tbs-list-footer {
  background: transparent;
}

.tbs-list-header,
.tbs-list-footer {
  padding-top: 12px;
  padding-bottom: 12px;
}

.tbs-list-empty {
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  text-align: center;
}

.tbs-list-split .tbs-list-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-list-split .tbs-list-item:last-child {
  border-bottom: none;
}

.tbs-list-split .tbs-list-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-list-split.tbs-list-empty .tbs-list-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-list-loading .tbs-list-spin-nested-loading {
  min-height: 32px;
}

.tbs-list-split.tbs-list-something-after-last-item .tbs-spin-container > .tbs-list-items > .tbs-list-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-list-lg .tbs-list-item {
  padding: 16px 24px;
}

.tbs-list-sm .tbs-list-item {
  padding: 8px 16px;
}

.tbs-list-vertical .tbs-list-item {
  align-items: initial;
}

.tbs-list-vertical .tbs-list-item-main {
  display: block;
  flex: 1;
}

.tbs-list-vertical .tbs-list-item-extra {
  margin-left: 40px;
}

.tbs-list-vertical .tbs-list-item-meta {
  margin-bottom: 16px;
}

.tbs-list-vertical .tbs-list-item-meta-title {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 16px;
  line-height: 24px;
}

.tbs-list-vertical .tbs-list-item-action {
  margin-top: 16px;
  margin-left: auto;
}

.tbs-list-vertical .tbs-list-item-action > li {
  padding: 0 16px;
}

.tbs-list-vertical .tbs-list-item-action > li:first-child {
  padding-left: 0;
}

.tbs-list-grid .tbs-col > .tbs-list-item {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tbs-list-item-no-flex {
  display: block;
}

.tbs-list:not(.tbs-list-vertical) .tbs-list-item-no-flex .tbs-list-item-action {
  float: right;
}

.tbs-list-bordered {
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
}

.tbs-list-bordered .tbs-list-header,
.tbs-list-bordered .tbs-list-footer,
.tbs-list-bordered .tbs-list-item {
  padding-right: 24px;
  padding-left: 24px;
}

.tbs-list-bordered .tbs-list-pagination {
  margin: 16px 24px;
}

.tbs-list-bordered.tbs-list-sm .tbs-list-item,
.tbs-list-bordered.tbs-list-sm .tbs-list-header,
.tbs-list-bordered.tbs-list-sm .tbs-list-footer {
  padding: 8px 16px;
}

.tbs-list-bordered.tbs-list-lg .tbs-list-item,
.tbs-list-bordered.tbs-list-lg .tbs-list-header,
.tbs-list-bordered.tbs-list-lg .tbs-list-footer {
  padding: 16px 24px;
}

@media screen and (max-width: 768px) {
  .tbs-list-item-action,
  .tbs-list-vertical .tbs-list-item-extra {
    margin-left: 24px;
  }
}
@media screen and (max-width: 576px) {
  .tbs-list-item {
    flex-wrap: wrap;
  }
  .tbs-list-item-action {
    margin-left: 12px;
  }
  .tbs-list-vertical .tbs-list-item {
    flex-wrap: wrap-reverse;
  }
  .tbs-list-vertical .tbs-list-item-main {
    min-width: 220px;
  }
  .tbs-list-vertical .tbs-list-item-extra {
    margin: auto auto 16px;
  }
}
.tbs-list-rtl {
  direction: rtl;
  text-align: right;
}

.tbs-list-rtl .ReactVirtualized__List .tbs-list-item {
  direction: rtl;
}

.tbs-list-rtl .tbs-list-pagination {
  text-align: left;
}

.tbs-list-rtl .tbs-list-item-meta-avatar {
  margin-right: 0;
  margin-left: 16px;
}

.tbs-list-rtl .tbs-list-item-action {
  margin-right: 48px;
  margin-left: 0;
}

.tbs-list.tbs-list-rtl .tbs-list-item-action > li:first-child {
  padding-right: 0;
  padding-left: 16px;
}

.tbs-list-rtl .tbs-list-item-action-split {
  right: auto;
  left: 0;
}

.tbs-list-rtl.tbs-list-vertical .tbs-list-item-extra {
  margin-right: 40px;
  margin-left: 0;
}

.tbs-list-rtl.tbs-list-vertical .tbs-list-item-action {
  margin-right: auto;
}

.tbs-list-rtl .tbs-list-vertical .tbs-list-item-action > li:first-child {
  padding-right: 0;
  padding-left: 16px;
}

.tbs-list-rtl .tbs-list:not(.tbs-list-vertical) .tbs-list-item-no-flex .tbs-list-item-action {
  float: left;
}

@media screen and (max-width: 768px) {
  .tbs-list-rtl .tbs-list-item-action,
  .tbs-list-rtl .tbs-list-vertical .tbs-list-item-extra {
    margin-right: 24px;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .tbs-list-rtl .tbs-list-item-action {
    margin-right: 22px;
    margin-left: 0;
  }
  .tbs-list-rtl.tbs-list-vertical .tbs-list-item-extra {
    margin: auto auto 16px;
  }
}
tbs-list,
tbs-list tbs-spin,
tbs-list-header,
tbs-list-footer,
tbs-list-pagination,
tbs-list-empty,
tbs-list-item-extra {
  display: block;
}

.tbs-menu-item-danger.tbs-menu-item,
.tbs-menu-item-danger.tbs-menu-item:hover,
.tbs-menu-item-danger.tbs-menu-item-active {
  color: var(--tbs-error-color);
}

.tbs-menu-item-danger.tbs-menu-item:active {
  background: #fff1f0;
}

.tbs-menu-item-danger.tbs-menu-item-selected {
  color: var(--tbs-error-color);
}

.tbs-menu-item-danger.tbs-menu-item-selected > a,
.tbs-menu-item-danger.tbs-menu-item-selected > a:hover {
  color: var(--tbs-error-color);
}

.tbs-menu:not(.tbs-menu-horizontal) .tbs-menu-item-danger.tbs-menu-item-selected {
  background-color: #fff1f0;
}

.tbs-menu-inline .tbs-menu-item-danger.tbs-menu-item:after {
  border-right-color: var(--tbs-error-color);
}

.tbs-menu-dark .tbs-menu-item-danger.tbs-menu-item,
.tbs-menu-dark .tbs-menu-item-danger.tbs-menu-item:hover,
.tbs-menu-dark .tbs-menu-item-danger.tbs-menu-item > a {
  color: var(--tbs-error-color);
}

.tbs-menu-dark.tbs-menu-dark:not(.tbs-menu-horizontal) .tbs-menu-item-danger.tbs-menu-item-selected {
  color: #fff;
  background-color: var(--tbs-error-color);
}

.tbs-menu {
  box-sizing: border-box;
  margin: 0;
  font-variant: tabular-nums;
  line-height: 1.5715;
  font-feature-settings: "tnum";
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 0;
  text-align: left;
  list-style: none;
  background: #fff;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
  transition: background 0.3s, width 0.3s cubic-bezier(0.2, 0, 0, 1) 0s;
}

.tbs-menu:before {
  display: table;
  content: "";
}

.tbs-menu:after {
  display: table;
  clear: both;
  content: "";
}

.tbs-menu.tbs-menu-root:focus-visible {
  box-shadow: 0 0 0 2px var(--tbs-primary-2);
}

.tbs-menu ul,
.tbs-menu ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tbs-menu-overflow {
  display: flex;
}

.tbs-menu-overflow-item {
  flex: none;
}

.tbs-menu-hidden,
.tbs-menu-submenu-hidden {
  display: none;
}

.tbs-menu-item-group-title {
  height: 1.5715;
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
  line-height: 1.5715;
  transition: all 0.3s;
}

.tbs-menu-horizontal .tbs-menu-submenu {
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-menu-submenu,
.tbs-menu-submenu-inline {
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-menu-submenu-selected {
  color: var(--tbs-primary-color);
}

.tbs-menu-item:active,
.tbs-menu-submenu-title:active {
  background: var(--tbs-primary-1);
}

.tbs-menu-submenu .tbs-menu-sub {
  cursor: initial;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-menu-title-content {
  transition: color 0.3s;
}

.tbs-menu-item a {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-menu-item a:hover {
  color: var(--tbs-primary-color);
}

.tbs-menu-item a:before {
  position: absolute;
  inset: 0;
  background-color: transparent;
  content: "";
}

.tbs-menu-item > .tbs-badge a {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-menu-item > .tbs-badge a:hover {
  color: var(--tbs-primary-color);
}

.tbs-menu-item-divider {
  overflow: hidden;
  line-height: 0;
  border-color: rgba(0, 0, 0, 0.0588235294);
  border-style: solid;
  border-width: 1px 0 0;
}

.tbs-menu-item-divider-dashed {
  border-style: dashed;
}

.tbs-menu-horizontal .tbs-menu-item,
.tbs-menu-horizontal .tbs-menu-submenu {
  margin-top: -1px;
}

.tbs-menu-horizontal > .tbs-menu-item:hover,
.tbs-menu-horizontal > .tbs-menu-item-active,
.tbs-menu-horizontal > .tbs-menu-submenu .tbs-menu-submenu-title:hover {
  background-color: transparent;
}

.tbs-menu-item-selected,
.tbs-menu-item-selected a,
.tbs-menu-item-selected a:hover {
  color: var(--tbs-primary-color);
}

.tbs-menu:not(.tbs-menu-horizontal) .tbs-menu-item-selected {
  background-color: var(--tbs-primary-1);
}

.tbs-menu-inline,
.tbs-menu-vertical,
.tbs-menu-vertical-left {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-menu-vertical-right {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-menu-vertical.tbs-menu-sub,
.tbs-menu-vertical-left.tbs-menu-sub,
.tbs-menu-vertical-right.tbs-menu-sub {
  min-width: 160px;
  max-height: calc(100vh - 100px);
  padding: 0;
  overflow: hidden;
  border-right: 0;
}

.tbs-menu-vertical.tbs-menu-sub:not([class*=-active]),
.tbs-menu-vertical-left.tbs-menu-sub:not([class*=-active]),
.tbs-menu-vertical-right.tbs-menu-sub:not([class*=-active]) {
  overflow-x: hidden;
  overflow-y: auto;
}

.tbs-menu-vertical.tbs-menu-sub .tbs-menu-item,
.tbs-menu-vertical-left.tbs-menu-sub .tbs-menu-item,
.tbs-menu-vertical-right.tbs-menu-sub .tbs-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}

.tbs-menu-vertical.tbs-menu-sub .tbs-menu-item:after,
.tbs-menu-vertical-left.tbs-menu-sub .tbs-menu-item:after,
.tbs-menu-vertical-right.tbs-menu-sub .tbs-menu-item:after {
  border-right: 0;
}

.tbs-menu-vertical.tbs-menu-sub > .tbs-menu-item,
.tbs-menu-vertical-left.tbs-menu-sub > .tbs-menu-item,
.tbs-menu-vertical-right.tbs-menu-sub > .tbs-menu-item,
.tbs-menu-vertical.tbs-menu-sub > .tbs-menu-submenu,
.tbs-menu-vertical-left.tbs-menu-sub > .tbs-menu-submenu,
.tbs-menu-vertical-right.tbs-menu-sub > .tbs-menu-submenu {
  transform-origin: 0 0;
}

.tbs-menu-horizontal.tbs-menu-sub {
  min-width: 114px;
}

.tbs-menu-horizontal .tbs-menu-item,
.tbs-menu-horizontal .tbs-menu-submenu-title {
  transition: border-color 0.3s, background 0.3s;
}

.tbs-menu-item,
.tbs-menu-submenu-title {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-menu-item .tbs-menu-item-icon,
.tbs-menu-submenu-title .tbs-menu-item-icon,
.tbs-menu-item .anticon,
.tbs-menu-submenu-title .anticon {
  min-width: 14px;
  font-size: 14px;
  transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s;
}

.tbs-menu-item .tbs-menu-item-icon + span,
.tbs-menu-submenu-title .tbs-menu-item-icon + span,
.tbs-menu-item .anticon + span,
.tbs-menu-submenu-title .anticon + span {
  margin-left: 10px;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), margin 0.3s, color 0.3s;
}

.tbs-menu-item .tbs-menu-item-icon.svg,
.tbs-menu-submenu-title .tbs-menu-item-icon.svg {
  vertical-align: -0.125em;
}

.tbs-menu-item.tbs-menu-item-only-child > .anticon,
.tbs-menu-submenu-title.tbs-menu-item-only-child > .anticon,
.tbs-menu-item.tbs-menu-item-only-child > .tbs-menu-item-icon,
.tbs-menu-submenu-title.tbs-menu-item-only-child > .tbs-menu-item-icon {
  margin-right: 0;
}

.tbs-menu-item:not(.tbs-menu-item-disabled):focus-visible,
.tbs-menu-submenu-title:not(.tbs-menu-item-disabled):focus-visible {
  box-shadow: 0 0 0 2px var(--tbs-primary-2);
}

.tbs-menu > .tbs-menu-item-divider {
  margin: 1px 0;
  padding: 0;
}

.tbs-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  background: transparent;
  border-radius: 2px;
  box-shadow: none;
  transform-origin: 0 0;
}

.tbs-menu-submenu-popup:before {
  position: absolute;
  inset: -7px 0 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.0001;
  content: " ";
}

.tbs-menu-submenu-placement-rightTop:before {
  top: 0;
  left: -7px;
}

.tbs-menu-submenu > .tbs-menu {
  background-color: #fff;
  border-radius: 2px;
}

.tbs-menu-submenu > .tbs-menu-submenu-title:after {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-menu-submenu-popup > .tbs-menu {
  background-color: #fff;
}

.tbs-menu-submenu-expand-icon,
.tbs-menu-submenu-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  color: rgba(0, 0, 0, 0.8509803922);
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-menu-submenu-arrow:before,
.tbs-menu-submenu-arrow:after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background-color: currentcolor;
  border-radius: 2px;
  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), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: "";
}

.tbs-menu-submenu-arrow:before {
  transform: rotate(45deg) translateY(-2.5px);
}

.tbs-menu-submenu-arrow:after {
  transform: rotate(-45deg) translateY(2.5px);
}

.tbs-menu-submenu:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-expand-icon,
.tbs-menu-submenu:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow {
  color: var(--tbs-primary-color);
}

.tbs-menu-inline-collapsed .tbs-menu-submenu-arrow:before,
.tbs-menu-submenu-inline .tbs-menu-submenu-arrow:before {
  transform: rotate(-45deg) translate(2.5px);
}

.tbs-menu-inline-collapsed .tbs-menu-submenu-arrow:after,
.tbs-menu-submenu-inline .tbs-menu-submenu-arrow:after {
  transform: rotate(45deg) translate(-2.5px);
}

.tbs-menu-submenu-horizontal .tbs-menu-submenu-arrow {
  display: none;
}

.tbs-menu-submenu-open.tbs-menu-submenu-inline > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow {
  transform: translateY(-2px);
}

.tbs-menu-submenu-open.tbs-menu-submenu-inline > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after {
  transform: rotate(-45deg) translate(-2.5px);
}

.tbs-menu-submenu-open.tbs-menu-submenu-inline > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before {
  transform: rotate(45deg) translate(2.5px);
}

.tbs-menu-vertical .tbs-menu-submenu-selected,
.tbs-menu-vertical-left .tbs-menu-submenu-selected,
.tbs-menu-vertical-right .tbs-menu-submenu-selected {
  color: var(--tbs-primary-color);
}

.tbs-menu-horizontal {
  line-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
}

.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu {
  margin-top: -1px;
  margin-bottom: 0;
  padding: 0 20px;
}

.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item:hover,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu:hover,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item-active,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu-active,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item-open,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu-open,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item-selected,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu-selected {
  color: var(--tbs-primary-color);
}

.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item:hover:after,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu:hover:after,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item-active:after,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu-active:after,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item-open:after,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu-open:after,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-item-selected:after,
.tbs-menu-horizontal:not(.tbs-menu-dark) > .tbs-menu-submenu-selected:after {
  border-bottom: 2px solid var(--tbs-primary-color);
}

.tbs-menu-horizontal > .tbs-menu-item,
.tbs-menu-horizontal > .tbs-menu-submenu {
  position: relative;
  top: 1px;
  display: inline-block;
  vertical-align: bottom;
}

.tbs-menu-horizontal > .tbs-menu-item:after,
.tbs-menu-horizontal > .tbs-menu-submenu:after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: "";
}

.tbs-menu-horizontal > .tbs-menu-submenu > .tbs-menu-submenu-title {
  padding: 0;
}

.tbs-menu-horizontal > .tbs-menu-item a {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-menu-horizontal > .tbs-menu-item a:hover {
  color: var(--tbs-primary-color);
}

.tbs-menu-horizontal > .tbs-menu-item a:before {
  bottom: -2px;
}

.tbs-menu-horizontal > .tbs-menu-item-selected a {
  color: var(--tbs-primary-color);
}

.tbs-menu-horizontal:after {
  display: block;
  clear: both;
  height: 0;
  content: " ";
}

.tbs-menu-vertical .tbs-menu-item,
.tbs-menu-vertical-left .tbs-menu-item,
.tbs-menu-vertical-right .tbs-menu-item,
.tbs-menu-inline .tbs-menu-item {
  position: relative;
}

.tbs-menu-vertical .tbs-menu-item:after,
.tbs-menu-vertical-left .tbs-menu-item:after,
.tbs-menu-vertical-right .tbs-menu-item:after,
.tbs-menu-inline .tbs-menu-item:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 3px solid var(--tbs-primary-color);
  transform: scaleY(0.0001);
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  content: "";
}

.tbs-menu-vertical .tbs-menu-item,
.tbs-menu-vertical-left .tbs-menu-item,
.tbs-menu-vertical-right .tbs-menu-item,
.tbs-menu-inline .tbs-menu-item,
.tbs-menu-vertical .tbs-menu-submenu-title,
.tbs-menu-vertical-left .tbs-menu-submenu-title,
.tbs-menu-vertical-right .tbs-menu-submenu-title,
.tbs-menu-inline .tbs-menu-submenu-title {
  height: 40px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0 16px;
  overflow: hidden;
  line-height: 40px;
  text-overflow: ellipsis;
}

.tbs-menu-vertical .tbs-menu-submenu,
.tbs-menu-vertical-left .tbs-menu-submenu,
.tbs-menu-vertical-right .tbs-menu-submenu,
.tbs-menu-inline .tbs-menu-submenu {
  padding-bottom: 0.02px;
}

.tbs-menu-vertical .tbs-menu-item:not(:last-child),
.tbs-menu-vertical-left .tbs-menu-item:not(:last-child),
.tbs-menu-vertical-right .tbs-menu-item:not(:last-child),
.tbs-menu-inline .tbs-menu-item:not(:last-child) {
  margin-bottom: 8px;
}

.tbs-menu-vertical > .tbs-menu-item,
.tbs-menu-vertical-left > .tbs-menu-item,
.tbs-menu-vertical-right > .tbs-menu-item,
.tbs-menu-inline > .tbs-menu-item,
.tbs-menu-vertical > .tbs-menu-submenu > .tbs-menu-submenu-title,
.tbs-menu-vertical-left > .tbs-menu-submenu > .tbs-menu-submenu-title,
.tbs-menu-vertical-right > .tbs-menu-submenu > .tbs-menu-submenu-title,
.tbs-menu-inline > .tbs-menu-submenu > .tbs-menu-submenu-title {
  height: 40px;
  line-height: 40px;
}

.tbs-menu-vertical .tbs-menu-item-group-list .tbs-menu-submenu-title,
.tbs-menu-vertical .tbs-menu-submenu-title {
  padding-right: 34px;
}

.tbs-menu-inline {
  width: 100%;
}

.tbs-menu-inline .tbs-menu-selected:after,
.tbs-menu-inline .tbs-menu-item-selected:after {
  transform: scaleY(1);
  opacity: 1;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-menu-inline .tbs-menu-item,
.tbs-menu-inline .tbs-menu-submenu-title {
  width: calc(100% + 1px);
}

.tbs-menu-inline .tbs-menu-item-group-list .tbs-menu-submenu-title,
.tbs-menu-inline .tbs-menu-submenu-title {
  padding-right: 34px;
}

.tbs-menu-inline.tbs-menu-root .tbs-menu-item,
.tbs-menu-inline.tbs-menu-root .tbs-menu-submenu-title {
  display: flex;
  align-items: center;
  transition: border-color 0.3s, background 0.3s, padding 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.tbs-menu-inline.tbs-menu-root .tbs-menu-item > .tbs-menu-title-content,
.tbs-menu-inline.tbs-menu-root .tbs-menu-submenu-title > .tbs-menu-title-content {
  flex: auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbs-menu-inline.tbs-menu-root .tbs-menu-item > *,
.tbs-menu-inline.tbs-menu-root .tbs-menu-submenu-title > * {
  flex: none;
}

.tbs-menu.tbs-menu-inline-collapsed {
  width: 80px;
}

.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-submenu > .tbs-menu-submenu-title,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-submenu > .tbs-menu-submenu-title {
  left: 0;
  padding: 0 calc(50% - 8px);
  text-overflow: clip;
}

.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item .tbs-menu-submenu-arrow,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item .tbs-menu-submenu-arrow,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-submenu > .tbs-menu-submenu-title .tbs-menu-submenu-arrow,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-submenu > .tbs-menu-submenu-title .tbs-menu-submenu-arrow {
  opacity: 0;
}

.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item .tbs-menu-item-icon,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item .tbs-menu-item-icon,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-submenu > .tbs-menu-submenu-title .tbs-menu-item-icon,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-submenu > .tbs-menu-submenu-title .tbs-menu-item-icon,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item .anticon,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item .anticon,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-submenu > .tbs-menu-submenu-title .anticon,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-submenu > .tbs-menu-submenu-title .anticon {
  margin: 0;
  font-size: 16px;
  line-height: 40px;
}

.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item .tbs-menu-item-icon + span,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item .tbs-menu-item-icon + span,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-submenu > .tbs-menu-submenu-title .tbs-menu-item-icon + span,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-submenu > .tbs-menu-submenu-title .tbs-menu-item-icon + span,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item .anticon + span,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item .anticon + span,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-submenu > .tbs-menu-submenu-title .anticon + span,
.tbs-menu.tbs-menu-inline-collapsed > .tbs-menu-submenu > .tbs-menu-submenu-title .anticon + span {
  display: inline-block;
  opacity: 0;
}

.tbs-menu.tbs-menu-inline-collapsed .tbs-menu-item-icon,
.tbs-menu.tbs-menu-inline-collapsed .anticon {
  display: inline-block;
}

.tbs-menu.tbs-menu-inline-collapsed-tooltip {
  pointer-events: none;
}

.tbs-menu.tbs-menu-inline-collapsed-tooltip .tbs-menu-item-icon,
.tbs-menu.tbs-menu-inline-collapsed-tooltip .anticon {
  display: none;
}

.tbs-menu.tbs-menu-inline-collapsed-tooltip a {
  color: rgba(255, 255, 255, 0.8509803922);
}

.tbs-menu.tbs-menu-inline-collapsed .tbs-menu-item-group-title {
  padding-right: 4px;
  padding-left: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tbs-menu-item-group-list {
  margin: 0;
  padding: 0;
}

.tbs-menu-item-group-list .tbs-menu-item,
.tbs-menu-item-group-list .tbs-menu-submenu-title {
  padding: 0 16px 0 28px;
}

.tbs-menu-root.tbs-menu-vertical,
.tbs-menu-root.tbs-menu-vertical-left,
.tbs-menu-root.tbs-menu-vertical-right,
.tbs-menu-root.tbs-menu-inline {
  box-shadow: none;
}

.tbs-menu-root.tbs-menu-inline-collapsed .tbs-menu-item > .tbs-menu-inline-collapsed-noicon,
.tbs-menu-root.tbs-menu-inline-collapsed .tbs-menu-submenu .tbs-menu-submenu-title > .tbs-menu-inline-collapsed-noicon {
  font-size: 16px;
  text-align: center;
}

.tbs-menu-sub.tbs-menu-inline {
  padding: 0;
  background: #fafafa;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tbs-menu-sub.tbs-menu-inline > .tbs-menu-item,
.tbs-menu-sub.tbs-menu-inline > .tbs-menu-submenu > .tbs-menu-submenu-title {
  height: 40px;
  line-height: 40px;
  list-style-position: inside;
  list-style-type: disc;
}

.tbs-menu-sub.tbs-menu-inline .tbs-menu-item-group-title {
  padding-left: 32px;
}

.tbs-menu-item-disabled,
.tbs-menu-submenu-disabled {
  color: rgba(0, 0, 0, 0.2509803922) !important;
  background: none;
  cursor: not-allowed;
}

.tbs-menu-item-disabled:after,
.tbs-menu-submenu-disabled:after {
  border-color: transparent !important;
}

.tbs-menu-item-disabled a,
.tbs-menu-submenu-disabled a {
  color: rgba(0, 0, 0, 0.2509803922) !important;
  pointer-events: none;
}

.tbs-menu-item-disabled > .tbs-menu-submenu-title,
.tbs-menu-submenu-disabled > .tbs-menu-submenu-title {
  color: rgba(0, 0, 0, 0.2509803922) !important;
  cursor: not-allowed;
}

.tbs-menu-item-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-submenu-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-item-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-submenu-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after {
  background: rgba(0, 0, 0, 0.2509803922) !important;
}

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

.tbs-menu-inline-collapsed-tooltip a,
.tbs-menu-inline-collapsed-tooltip a:hover {
  color: #fff;
}

.tbs-menu-light .tbs-menu-item:hover,
.tbs-menu-light .tbs-menu-item-active,
.tbs-menu-light .tbs-menu:not(.tbs-menu-inline) .tbs-menu-submenu-open,
.tbs-menu-light .tbs-menu-submenu-active,
.tbs-menu-light .tbs-menu-submenu-title:hover {
  color: var(--tbs-primary-color);
}

.tbs-menu.tbs-menu-root:focus-visible {
  box-shadow: 0 0 0 2px var(--tbs-primary-7);
}

.tbs-menu-dark .tbs-menu-item:focus-visible,
.tbs-menu-dark .tbs-menu-submenu-title:focus-visible {
  box-shadow: 0 0 0 2px var(--tbs-primary-7);
}

.tbs-menu.tbs-menu-dark,
.tbs-menu-dark .tbs-menu-sub,
.tbs-menu.tbs-menu-dark .tbs-menu-sub {
  color: rgba(255, 255, 255, 0.6509803922);
  background: #001529;
}

.tbs-menu.tbs-menu-dark .tbs-menu-submenu-title .tbs-menu-submenu-arrow,
.tbs-menu-dark .tbs-menu-sub .tbs-menu-submenu-title .tbs-menu-submenu-arrow,
.tbs-menu.tbs-menu-dark .tbs-menu-sub .tbs-menu-submenu-title .tbs-menu-submenu-arrow {
  opacity: 0.45;
  transition: all 0.3s;
}

.tbs-menu.tbs-menu-dark .tbs-menu-submenu-title .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-sub .tbs-menu-submenu-title .tbs-menu-submenu-arrow:after,
.tbs-menu.tbs-menu-dark .tbs-menu-sub .tbs-menu-submenu-title .tbs-menu-submenu-arrow:after,
.tbs-menu.tbs-menu-dark .tbs-menu-submenu-title .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-sub .tbs-menu-submenu-title .tbs-menu-submenu-arrow:before,
.tbs-menu.tbs-menu-dark .tbs-menu-sub .tbs-menu-submenu-title .tbs-menu-submenu-arrow:before {
  background: #fff;
}

.tbs-menu-dark.tbs-menu-submenu-popup {
  background: transparent;
}

.tbs-menu-dark .tbs-menu-inline.tbs-menu-sub {
  background: #000c17;
}

.tbs-menu-dark.tbs-menu-horizontal {
  border-bottom: 0;
}

.tbs-menu-dark.tbs-menu-horizontal > .tbs-menu-item,
.tbs-menu-dark.tbs-menu-horizontal > .tbs-menu-submenu {
  top: 0;
  margin-top: 0;
  padding: 0 20px;
  border-color: #001529;
  border-bottom: 0;
}

.tbs-menu-dark.tbs-menu-horizontal > .tbs-menu-item:hover {
  background-color: var(--tbs-primary-color);
}

.tbs-menu-dark.tbs-menu-horizontal > .tbs-menu-item > a:before {
  bottom: 0;
}

.tbs-menu-dark .tbs-menu-item,
.tbs-menu-dark .tbs-menu-item-group-title,
.tbs-menu-dark .tbs-menu-item > a,
.tbs-menu-dark .tbs-menu-item > span > a {
  color: rgba(255, 255, 255, 0.6509803922);
}

.tbs-menu-dark.tbs-menu-inline,
.tbs-menu-dark.tbs-menu-vertical,
.tbs-menu-dark.tbs-menu-vertical-left,
.tbs-menu-dark.tbs-menu-vertical-right {
  border-right: 0;
}

.tbs-menu-dark.tbs-menu-inline .tbs-menu-item,
.tbs-menu-dark.tbs-menu-vertical .tbs-menu-item,
.tbs-menu-dark.tbs-menu-vertical-left .tbs-menu-item,
.tbs-menu-dark.tbs-menu-vertical-right .tbs-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}

.tbs-menu-dark.tbs-menu-inline .tbs-menu-item:after,
.tbs-menu-dark.tbs-menu-vertical .tbs-menu-item:after,
.tbs-menu-dark.tbs-menu-vertical-left .tbs-menu-item:after,
.tbs-menu-dark.tbs-menu-vertical-right .tbs-menu-item:after {
  border-right: 0;
}

.tbs-menu-dark.tbs-menu-inline .tbs-menu-item,
.tbs-menu-dark.tbs-menu-inline .tbs-menu-submenu-title {
  width: 100%;
}

.tbs-menu-dark .tbs-menu-item:hover,
.tbs-menu-dark .tbs-menu-item-active,
.tbs-menu-dark .tbs-menu-submenu-active,
.tbs-menu-dark .tbs-menu-submenu-open,
.tbs-menu-dark .tbs-menu-submenu-selected,
.tbs-menu-dark .tbs-menu-submenu-title:hover {
  color: #fff;
  background-color: transparent;
}

.tbs-menu-dark .tbs-menu-item:hover > a,
.tbs-menu-dark .tbs-menu-item-active > a,
.tbs-menu-dark .tbs-menu-submenu-active > a,
.tbs-menu-dark .tbs-menu-submenu-open > a,
.tbs-menu-dark .tbs-menu-submenu-selected > a,
.tbs-menu-dark .tbs-menu-submenu-title:hover > a,
.tbs-menu-dark .tbs-menu-item:hover > span > a,
.tbs-menu-dark .tbs-menu-item-active > span > a,
.tbs-menu-dark .tbs-menu-submenu-active > span > a,
.tbs-menu-dark .tbs-menu-submenu-open > span > a,
.tbs-menu-dark .tbs-menu-submenu-selected > span > a,
.tbs-menu-dark .tbs-menu-submenu-title:hover > span > a {
  color: #fff;
}

.tbs-menu-dark .tbs-menu-item:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow,
.tbs-menu-dark .tbs-menu-item-active > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow,
.tbs-menu-dark .tbs-menu-submenu-active > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow,
.tbs-menu-dark .tbs-menu-submenu-open > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow,
.tbs-menu-dark .tbs-menu-submenu-selected > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow,
.tbs-menu-dark .tbs-menu-submenu-title:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow {
  opacity: 1;
}

.tbs-menu-dark .tbs-menu-item:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-item-active > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-submenu-active > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-submenu-open > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-submenu-selected > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-submenu-title:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-item:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-item-active > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-submenu-active > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-submenu-open > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-submenu-selected > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-submenu-title:hover > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before {
  background: #fff;
}

.tbs-menu-dark .tbs-menu-item:hover {
  background-color: transparent;
}

.tbs-menu-dark.tbs-menu-dark:not(.tbs-menu-horizontal) .tbs-menu-item-selected {
  background-color: var(--tbs-primary-color);
}

.tbs-menu-dark .tbs-menu-item-selected {
  color: #fff;
  border-right: 0;
}

.tbs-menu-dark .tbs-menu-item-selected:after {
  border-right: 0;
}

.tbs-menu-dark .tbs-menu-item-selected > a,
.tbs-menu-dark .tbs-menu-item-selected > span > a,
.tbs-menu-dark .tbs-menu-item-selected > a:hover,
.tbs-menu-dark .tbs-menu-item-selected > span > a:hover {
  color: #fff;
}

.tbs-menu-dark .tbs-menu-item-selected .tbs-menu-item-icon,
.tbs-menu-dark .tbs-menu-item-selected .anticon {
  color: #fff;
}

.tbs-menu-dark .tbs-menu-item-selected .tbs-menu-item-icon + span,
.tbs-menu-dark .tbs-menu-item-selected .anticon + span {
  color: #fff;
}

.tbs-menu.tbs-menu-dark .tbs-menu-item-selected,
.tbs-menu-submenu-popup.tbs-menu-dark .tbs-menu-item-selected {
  background-color: var(--tbs-primary-color);
}

.tbs-menu-dark .tbs-menu-item-disabled,
.tbs-menu-dark .tbs-menu-submenu-disabled,
.tbs-menu-dark .tbs-menu-item-disabled > a,
.tbs-menu-dark .tbs-menu-submenu-disabled > a,
.tbs-menu-dark .tbs-menu-item-disabled > span > a,
.tbs-menu-dark .tbs-menu-submenu-disabled > span > a {
  color: rgba(255, 255, 255, 0.3490196078) !important;
  opacity: 0.8;
}

.tbs-menu-dark .tbs-menu-item-disabled > .tbs-menu-submenu-title,
.tbs-menu-dark .tbs-menu-submenu-disabled > .tbs-menu-submenu-title {
  color: rgba(255, 255, 255, 0.3490196078) !important;
}

.tbs-menu-dark .tbs-menu-item-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-submenu-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:before,
.tbs-menu-dark .tbs-menu-item-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after,
.tbs-menu-dark .tbs-menu-submenu-disabled > .tbs-menu-submenu-title > .tbs-menu-submenu-arrow:after {
  background: rgba(255, 255, 255, 0.3490196078) !important;
}

.tbs-menu.tbs-menu-rtl {
  direction: rtl;
  text-align: right;
}

.tbs-menu-rtl .tbs-menu-item-group-title {
  text-align: right;
}

.tbs-menu-rtl.tbs-menu-inline,
.tbs-menu-rtl.tbs-menu-vertical {
  border-right: none;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-menu-rtl.tbs-menu-dark.tbs-menu-inline,
.tbs-menu-rtl.tbs-menu-dark.tbs-menu-vertical {
  border-left: none;
}

.tbs-menu-rtl.tbs-menu-vertical.tbs-menu-sub > .tbs-menu-item,
.tbs-menu-rtl.tbs-menu-vertical-left.tbs-menu-sub > .tbs-menu-item,
.tbs-menu-rtl.tbs-menu-vertical-right.tbs-menu-sub > .tbs-menu-item,
.tbs-menu-rtl.tbs-menu-vertical.tbs-menu-sub > .tbs-menu-submenu,
.tbs-menu-rtl.tbs-menu-vertical-left.tbs-menu-sub > .tbs-menu-submenu,
.tbs-menu-rtl.tbs-menu-vertical-right.tbs-menu-sub > .tbs-menu-submenu {
  transform-origin: top right;
}

.tbs-menu-rtl .tbs-menu-item .tbs-menu-item-icon,
.tbs-menu-rtl .tbs-menu-submenu-title .tbs-menu-item-icon,
.tbs-menu-rtl .tbs-menu-item .anticon,
.tbs-menu-rtl .tbs-menu-submenu-title .anticon {
  margin-right: auto;
  margin-left: 10px;
}

.tbs-menu-rtl .tbs-menu-item.tbs-menu-item-only-child > .tbs-menu-item-icon,
.tbs-menu-rtl .tbs-menu-submenu-title.tbs-menu-item-only-child > .tbs-menu-item-icon,
.tbs-menu-rtl .tbs-menu-item.tbs-menu-item-only-child > .anticon,
.tbs-menu-rtl .tbs-menu-submenu-title.tbs-menu-item-only-child > .anticon {
  margin-left: 0;
}

.tbs-menu-submenu-rtl.tbs-menu-submenu-popup {
  transform-origin: 100% 0;
}

.tbs-menu-rtl .tbs-menu-submenu-vertical > .tbs-menu-submenu-title .tbs-menu-submenu-arrow,
.tbs-menu-rtl .tbs-menu-submenu-vertical-left > .tbs-menu-submenu-title .tbs-menu-submenu-arrow,
.tbs-menu-rtl .tbs-menu-submenu-vertical-right > .tbs-menu-submenu-title .tbs-menu-submenu-arrow,
.tbs-menu-rtl .tbs-menu-submenu-inline > .tbs-menu-submenu-title .tbs-menu-submenu-arrow {
  right: auto;
  left: 16px;
}

.tbs-menu-rtl .tbs-menu-submenu-vertical > .tbs-menu-submenu-title .tbs-menu-submenu-arrow:before,
.tbs-menu-rtl .tbs-menu-submenu-vertical-left > .tbs-menu-submenu-title .tbs-menu-submenu-arrow:before,
.tbs-menu-rtl .tbs-menu-submenu-vertical-right > .tbs-menu-submenu-title .tbs-menu-submenu-arrow:before {
  transform: rotate(-45deg) translateY(-2px);
}

.tbs-menu-rtl .tbs-menu-submenu-vertical > .tbs-menu-submenu-title .tbs-menu-submenu-arrow:after,
.tbs-menu-rtl .tbs-menu-submenu-vertical-left > .tbs-menu-submenu-title .tbs-menu-submenu-arrow:after,
.tbs-menu-rtl .tbs-menu-submenu-vertical-right > .tbs-menu-submenu-title .tbs-menu-submenu-arrow:after {
  transform: rotate(45deg) translateY(2px);
}

.tbs-menu-rtl.tbs-menu-vertical .tbs-menu-item:after,
.tbs-menu-rtl.tbs-menu-vertical-left .tbs-menu-item:after,
.tbs-menu-rtl.tbs-menu-vertical-right .tbs-menu-item:after,
.tbs-menu-rtl.tbs-menu-inline .tbs-menu-item:after {
  right: auto;
  left: 0;
}

.tbs-menu-rtl.tbs-menu-vertical .tbs-menu-item,
.tbs-menu-rtl.tbs-menu-vertical-left .tbs-menu-item,
.tbs-menu-rtl.tbs-menu-vertical-right .tbs-menu-item,
.tbs-menu-rtl.tbs-menu-inline .tbs-menu-item,
.tbs-menu-rtl.tbs-menu-vertical .tbs-menu-submenu-title,
.tbs-menu-rtl.tbs-menu-vertical-left .tbs-menu-submenu-title,
.tbs-menu-rtl.tbs-menu-vertical-right .tbs-menu-submenu-title,
.tbs-menu-rtl.tbs-menu-inline .tbs-menu-submenu-title {
  text-align: right;
}

.tbs-menu-rtl.tbs-menu-inline .tbs-menu-submenu-title {
  padding-right: 0;
  padding-left: 34px;
}

.tbs-menu-rtl.tbs-menu-vertical .tbs-menu-submenu-title {
  padding-right: 16px;
  padding-left: 34px;
}

.tbs-menu-rtl.tbs-menu-inline-collapsed.tbs-menu-vertical .tbs-menu-submenu-title {
  padding: 0 calc(50% - 8px);
}

.tbs-menu-rtl .tbs-menu-item-group-list .tbs-menu-item,
.tbs-menu-rtl .tbs-menu-item-group-list .tbs-menu-submenu-title {
  padding: 0 28px 0 16px;
}

.tbs-menu-sub.tbs-menu-inline {
  border: 0;
}

.tbs-menu-rtl.tbs-menu-sub.tbs-menu-inline .tbs-menu-item-group-title {
  padding-right: 32px;
  padding-left: 0;
}

.tbs-menu-submenu.tbs-menu-submenu-placement-bottom {
  position: relative;
  top: 6px;
}

.tbs-menu-submenu.tbs-menu-submenu-placement-right {
  position: relative;
  left: 4px;
}

.tbs-menu-submenu.tbs-menu-submenu-placement-right.tbs-menu-submenu-rtl {
  right: 4px;
  left: auto;
}

.tbs-menu-submenu.tbs-menu-submenu-placement-left {
  position: relative;
  right: 4px;
}

.tbs-menu-submenu.tbs-menu-submenu-placement-left.tbs-menu-submenu-rtl {
  right: auto;
  left: 4px;
}

.tbs-mentions-status-error:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions,
.tbs-mentions-status-error:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions:hover {
  background: #fff;
  border-color: var(--tbs-error-color);
}

.tbs-mentions-status-error:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions:focus,
.tbs-mentions-status-error:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions-focused {
  border-color: var(--tbs-error-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-error-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-mentions-status-error .tbs-input-prefix {
  color: var(--tbs-error-color);
}

.tbs-mentions-status-warning:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions,
.tbs-mentions-status-warning:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions:hover {
  background: #fff;
  border-color: var(--tbs-warning-color);
}

.tbs-mentions-status-warning:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions:focus,
.tbs-mentions-status-warning:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions-focused {
  border-color: var(--tbs-warning-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-warning-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-mentions-status-warning .tbs-input-prefix {
  color: var(--tbs-warning-color);
}

.tbs-mentions {
  box-sizing: border-box;
  margin: 0;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: "tnum";
  width: 100%;
  min-width: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  height: auto;
  padding: 0;
  overflow: hidden;
  line-height: 1.5715;
  white-space: pre-wrap;
  vertical-align: bottom;
}

.tbs-mentions::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-mentions:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-mentions:hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-mentions:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-mentions:focus,
.tbs-mentions-focused {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-mentions:focus,
.tbs-input-rtl .tbs-mentions-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-mentions-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-mentions-disabled:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-mentions[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-mentions[disabled]:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-mentions-borderless,
.tbs-mentions-borderless:hover,
.tbs-mentions-borderless:focus,
.tbs-mentions-borderless-focused,
.tbs-mentions-borderless-disabled,
.tbs-mentions-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

textarea.tbs-mentions {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}

.tbs-mentions-lg {
  padding: 6.5px 11px;
  font-size: 16px;
}

.tbs-mentions-sm {
  padding: 0 7px;
}

.tbs-mentions-stepperless[type=number] {
  -moz-appearance: textfield;
}

.tbs-mentions-stepperless[type=number]::-webkit-inner-spin-button,
.tbs-mentions-stepperless[type=number] ::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tbs-mentions-disabled > textarea {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-mentions-disabled > textarea:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-mentions-focused {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-mentions-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-mentions > textarea,
.tbs-mentions-measure {
  min-height: 30px;
  margin: 0;
  padding: 4px 11px;
  overflow: inherit;
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  font-size-adjust: inherit;
  font-stretch: inherit;
  line-height: inherit;
  direction: inherit;
  letter-spacing: inherit;
  white-space: inherit;
  text-align: inherit;
  vertical-align: top;
  word-wrap: break-word;
  word-break: inherit;
  tab-size: inherit;
}

.tbs-mentions > textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

.tbs-mentions > textarea::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-mentions > textarea:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-mentions-measure {
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  pointer-events: none;
}

.tbs-mentions-measure > span {
  display: inline-block;
  min-height: 1em;
}

.tbs-mentions-dropdown {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.tbs-mentions-dropdown-hidden {
  display: none;
}

.tbs-mentions-dropdown-menu {
  max-height: 250px;
  margin-bottom: 0;
  padding-left: 0;
  overflow: auto;
  list-style: none;
  outline: none;
}

.tbs-mentions-dropdown-menu-item {
  position: relative;
  display: block;
  min-width: 100px;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  line-height: 1.5715;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tbs-mentions-dropdown-menu-item:hover {
  background-color: var(--tbs-neutral-400);
}

.tbs-mentions-dropdown-menu-item:first-child {
  border-radius: 2px 2px 0 0;
}

.tbs-mentions-dropdown-menu-item:last-child {
  border-radius: 0 0 2px 2px;
}

.tbs-mentions-dropdown-menu-item-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-mentions-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  cursor: not-allowed;
}

.tbs-mentions-dropdown-menu-item-selected {
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 600;
  background-color: #fafafa;
}

.tbs-mentions-dropdown-menu-item-active {
  background-color: var(--tbs-neutral-400);
}

.tbs-mentions-suffix {
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: auto;
}

.tbs-mentions-rtl {
  direction: rtl;
}

.tbs-mentions-dropdown {
  position: relative;
  top: 100%;
  left: 12px;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 4px;
}

.tbs-mentions:focus-within {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-mentions:focus-within {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-mentions.tbs-mentions-status-error:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions:focus-within {
  border-color: var(--tbs-error-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-error-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-mentions.tbs-mentions-status-warning:not(.tbs-mentions-disabled):not(.tbs-mentions-borderless).tbs-mentions:focus-within {
  border-color: var(--tbs-warning-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-warning-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-message {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: fixed;
  top: 8px;
  left: 0;
  z-index: 1010;
  width: 100%;
  pointer-events: none;
}

.tbs-message-notice {
  padding: 8px;
  text-align: center;
}

.tbs-message-notice-content {
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
  pointer-events: all;
}

.tbs-message-success .anticon {
  color: var(--tbs-success-color);
}

.tbs-message-error .anticon {
  color: var(--tbs-error-color);
}

.tbs-message-warning .anticon {
  color: var(--tbs-warning-color);
}

.tbs-message-info .anticon,
.tbs-message-loading .anticon {
  color: var(--tbs-info-color);
}

.tbs-message .anticon {
  position: relative;
  top: 1px;
  margin-right: 8px;
  font-size: 16px;
}

.tbs-message-notice.tbs-move-up-leave.tbs-move-up-leave-active {
  animation-name: MessageMoveOut;
  animation-duration: 0.3s;
}

@keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  to {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
.tbs-message-rtl,
.tbs-message-rtl span {
  direction: rtl;
}

.tbs-message-rtl .anticon {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-modal {
  box-sizing: border-box;
  padding: 0 0 24px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  pointer-events: none;
  position: relative;
  top: 100px;
  width: auto;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
}

.tbs-modal.tbs-zoom-enter,
.tbs-modal.tbs-zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-modal-mask-hidden {
  display: none;
}

.tbs-modal-wrap {
  position: fixed;
  inset: 0;
  overflow: auto;
  outline: 0;
}

.tbs-modal-wrap {
  z-index: 1000;
}

.tbs-modal-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
}

.tbs-modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
  pointer-events: auto;
}

.tbs-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  color: rgba(0, 0, 0, 0.4509803922);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: color 0.3s;
}

.tbs-modal-close-x {
  display: block;
  width: 54px;
  height: 54px;
  font-size: 16px;
  font-style: normal;
  line-height: 54px;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
}

.tbs-modal-close:focus,
.tbs-modal-close:hover {
  color: rgba(0, 0, 0, 0.7490196078);
  text-decoration: none;
}

.tbs-modal-header {
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.8509803922);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px 2px 0 0;
}

.tbs-modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5715;
  word-wrap: break-word;
}

.tbs-modal-footer {
  padding: 10px 16px;
  text-align: right;
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0 0 2px 2px;
}

.tbs-modal-footer .tbs-btn + .tbs-btn:not(.tbs-dropdown-trigger) {
  margin-bottom: 0;
  margin-left: 8px;
}

.tbs-modal-open {
  overflow: hidden;
}

.tbs-modal-centered {
  text-align: center;
}

.tbs-modal-centered:before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: "";
}

.tbs-modal-centered .tbs-modal {
  top: 0;
  display: inline-block;
  padding-bottom: 0;
  text-align: left;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .tbs-modal {
    max-width: calc(100vw - 16px);
    margin: 8px auto;
  }
  .tbs-modal-centered .tbs-modal {
    flex: 1;
  }
}
.tbs-modal-confirm .tbs-modal-header {
  display: none;
}

.tbs-modal-confirm .tbs-modal-body {
  padding: 32px 32px 24px;
}

.tbs-modal-confirm-body-wrapper:before {
  display: table;
  content: "";
}

.tbs-modal-confirm-body-wrapper:after {
  display: table;
  clear: both;
  content: "";
}

.tbs-modal-confirm-body .tbs-modal-confirm-title {
  display: block;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

.tbs-modal-confirm-body .tbs-modal-confirm-content {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
}

.tbs-modal-confirm-body > .anticon {
  float: left;
  margin-right: 16px;
  font-size: 22px;
}

.tbs-modal-confirm-body > .anticon + .tbs-modal-confirm-title + .tbs-modal-confirm-content {
  margin-left: 38px;
}

.tbs-modal-confirm .tbs-modal-confirm-btns {
  margin-top: 24px;
  text-align: right;
}

.tbs-modal-confirm .tbs-modal-confirm-btns .tbs-btn + .tbs-btn {
  margin-bottom: 0;
  margin-left: 8px;
}

.tbs-modal-confirm-error .tbs-modal-confirm-body > .anticon {
  color: var(--tbs-error-color);
}

.tbs-modal-confirm-warning .tbs-modal-confirm-body > .anticon,
.tbs-modal-confirm-confirm .tbs-modal-confirm-body > .anticon {
  color: var(--tbs-warning-color);
}

.tbs-modal-confirm-info .tbs-modal-confirm-body > .anticon {
  color: var(--tbs-info-color);
}

.tbs-modal-confirm-success .tbs-modal-confirm-body > .anticon {
  color: var(--tbs-success-color);
}

.tbs-modal-confirm .tbs-zoom-leave .tbs-modal-confirm-btns {
  pointer-events: none;
}

.tbs-modal-wrap-rtl {
  direction: rtl;
}

.tbs-modal-wrap-rtl .tbs-modal-close {
  right: initial;
  left: 0;
}

.tbs-modal-wrap-rtl .tbs-modal-footer {
  text-align: left;
}

.tbs-modal-wrap-rtl .tbs-modal-footer .tbs-btn + .tbs-btn {
  margin-right: 8px;
  margin-left: 0;
}

.tbs-modal-wrap-rtl .tbs-modal-confirm-body {
  direction: rtl;
}

.tbs-modal-wrap-rtl .tbs-modal-confirm-body > .anticon {
  float: right;
  margin-right: 0;
  margin-left: 16px;
}

.tbs-modal-wrap-rtl .tbs-modal-confirm-body > .anticon + .tbs-modal-confirm-title + .tbs-modal-confirm-content {
  margin-right: 38px;
  margin-left: 0;
}

.tbs-modal-wrap-rtl .tbs-modal-confirm-btns {
  text-align: left;
}

.tbs-modal-wrap-rtl .tbs-modal-confirm-btns .tbs-btn + .tbs-btn {
  margin-right: 8px;
  margin-left: 0;
}

.tbs-modal-wrap-rtl.tbs-modal-centered .tbs-modal {
  text-align: right;
}

.tbs-notification {
  box-sizing: border-box;
  margin: 0 24px 0 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: fixed;
  z-index: 1010;
}

.tbs-notification-close-icon {
  font-size: 14px;
  cursor: pointer;
}

.tbs-notification-hook-holder {
  position: relative;
}

.tbs-notification-notice {
  position: relative;
  width: 384px;
  max-width: calc(100vw - 48px);
  margin-bottom: 16px;
  margin-left: auto;
  padding: 16px 24px;
  overflow: hidden;
  line-height: 1.5715;
  word-wrap: break-word;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.tbs-notification-top .tbs-notification-notice,
.tbs-notification-bottom .tbs-notification-notice {
  margin-right: auto;
  margin-left: auto;
}

.tbs-notification-topLeft .tbs-notification-notice,
.tbs-notification-bottomLeft .tbs-notification-notice {
  margin-right: auto;
  margin-left: 0;
}

.tbs-notification-notice-message {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 16px;
  line-height: 24px;
}

.tbs-notification-notice-message-single-line-auto-margin {
  display: block;
  width: calc(264px - 100%);
  max-width: 4px;
  background-color: transparent;
  pointer-events: none;
}

.tbs-notification-notice-message-single-line-auto-margin:before {
  display: block;
  content: "";
}

.tbs-notification-notice-description {
  font-size: 14px;
}

.tbs-notification-notice-closable .tbs-notification-notice-message {
  padding-right: 24px;
}

.tbs-notification-notice-with-icon .tbs-notification-notice-message {
  margin-bottom: 4px;
  margin-left: 48px;
  font-size: 16px;
}

.tbs-notification-notice-with-icon .tbs-notification-notice-description {
  margin-left: 48px;
  font-size: 14px;
}

.tbs-notification-notice-icon {
  position: absolute;
  margin-left: 4px;
  font-size: 24px;
  line-height: 24px;
}

.anticon.tbs-notification-notice-icon-success {
  color: var(--tbs-success-color);
}

.anticon.tbs-notification-notice-icon-info {
  color: var(--tbs-info-color);
}

.anticon.tbs-notification-notice-icon-warning {
  color: var(--tbs-warning-color);
}

.anticon.tbs-notification-notice-icon-error {
  color: var(--tbs-error-color);
}

.tbs-notification-notice-close {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(0, 0, 0, 0.4509803922);
  outline: none;
}

.tbs-notification-notice-close:hover {
  color: rgba(0, 0, 0, 0.6705882353);
}

.tbs-notification-notice-btn {
  float: right;
  margin-top: 16px;
}

.tbs-notification .notification-fade-effect {
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
}

.tbs-notification-fade-enter,
.tbs-notification-fade-appear {
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
  opacity: 0;
  animation-play-state: paused;
}

.tbs-notification-fade-leave {
  animation-duration: 0.24s;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-fill-mode: both;
  animation-duration: 0.2s;
  animation-play-state: paused;
}

.tbs-notification-fade-enter.tbs-notification-fade-enter-active,
.tbs-notification-fade-appear.tbs-notification-fade-appear-active {
  animation-name: NotificationFadeIn;
  animation-play-state: running;
}

.tbs-notification-fade-leave.tbs-notification-fade-leave-active {
  animation-name: NotificationFadeOut;
  animation-play-state: running;
}

@keyframes NotificationFadeIn {
  0% {
    left: 384px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
@keyframes NotificationFadeOut {
  0% {
    max-height: 150px;
    margin-bottom: 16px;
    opacity: 1;
  }
  to {
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }
}
.tbs-notification-rtl {
  direction: rtl;
}

.tbs-notification-rtl .tbs-notification-notice-closable .tbs-notification-notice-message {
  padding-right: 0;
  padding-left: 24px;
}

.tbs-notification-rtl .tbs-notification-notice-with-icon .tbs-notification-notice-message,
.tbs-notification-rtl .tbs-notification-notice-with-icon .tbs-notification-notice-description {
  margin-right: 48px;
  margin-left: 0;
}

.tbs-notification-rtl .tbs-notification-notice-icon {
  margin-right: 4px;
  margin-left: 0;
}

.tbs-notification-rtl .tbs-notification-notice-close {
  right: auto;
  left: 22px;
}

.tbs-notification-rtl .tbs-notification-notice-btn {
  float: left;
}

.tbs-notification-top,
.tbs-notification-bottom {
  margin-right: 0;
  margin-left: 0;
}

.tbs-notification-top .tbs-notification-fade-enter.tbs-notification-fade-enter-active,
.tbs-notification-top .tbs-notification-fade-appear.tbs-notification-fade-appear-active {
  animation-name: NotificationTopFadeIn;
}

.tbs-notification-bottom .tbs-notification-fade-enter.tbs-notification-fade-enter-active,
.tbs-notification-bottom .tbs-notification-fade-appear.tbs-notification-fade-appear-active {
  animation-name: NotificationBottomFadeIn;
}

.tbs-notification-topLeft,
.tbs-notification-bottomLeft {
  margin-right: 0;
  margin-left: 24px;
}

.tbs-notification-topLeft .tbs-notification-fade-enter.tbs-notification-fade-enter-active,
.tbs-notification-bottomLeft .tbs-notification-fade-enter.tbs-notification-fade-enter-active,
.tbs-notification-topLeft .tbs-notification-fade-appear.tbs-notification-fade-appear-active,
.tbs-notification-bottomLeft .tbs-notification-fade-appear.tbs-notification-fade-appear-active {
  animation-name: NotificationLeftFadeIn;
}

@keyframes NotificationTopFadeIn {
  0% {
    margin-top: -100%;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes NotificationBottomFadeIn {
  0% {
    margin-bottom: -100%;
    opacity: 0;
  }
  to {
    margin-bottom: 0;
    opacity: 1;
  }
}
@keyframes NotificationLeftFadeIn {
  0% {
    right: 384px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
.tbs-pagination {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
}

.tbs-pagination ul,
.tbs-pagination ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tbs-pagination:after {
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  content: " ";
}

.tbs-pagination-total-text {
  display: inline-block;
  height: 32px;
  margin-right: 8px;
  line-height: 30px;
  vertical-align: middle;
}

.tbs-pagination-item {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  margin-right: 8px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  outline: 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-pagination-item a {
  display: block;
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.8509803922);
  transition: none;
}

.tbs-pagination-item a:hover {
  text-decoration: none;
}

.tbs-pagination-item:hover {
  border-color: var(--tbs-primary-color);
  transition: all 0.3s;
}

.tbs-pagination-item:hover a {
  color: var(--tbs-primary-color);
}

.tbs-pagination-item:focus-visible {
  border-color: var(--tbs-primary-color);
  transition: all 0.3s;
}

.tbs-pagination-item:focus-visible a {
  color: var(--tbs-primary-color);
}

.tbs-pagination-item-active {
  font-weight: 500;
  background: #fff;
  border-color: var(--tbs-primary-color);
}

.tbs-pagination-item-active a {
  color: var(--tbs-primary-color);
}

.tbs-pagination-item-active:hover {
  border-color: var(--tbs-primary-5);
}

.tbs-pagination-item-active:focus-visible {
  border-color: var(--tbs-primary-5);
}

.tbs-pagination-item-active:hover a {
  color: var(--tbs-primary-5);
}

.tbs-pagination-item-active:focus-visible a {
  color: var(--tbs-primary-5);
}

.tbs-pagination-jump-prev,
.tbs-pagination-jump-next {
  outline: 0;
}

.tbs-pagination-jump-prev .tbs-pagination-item-container,
.tbs-pagination-jump-next .tbs-pagination-item-container {
  position: relative;
}

.tbs-pagination-jump-prev .tbs-pagination-item-container .tbs-pagination-item-link-icon,
.tbs-pagination-jump-next .tbs-pagination-item-container .tbs-pagination-item-link-icon {
  color: var(--tbs-primary-color);
  font-size: 12px;
  letter-spacing: -1px;
  opacity: 0;
  transition: all 0.2s;
}

.tbs-pagination-jump-prev .tbs-pagination-item-container .tbs-pagination-item-link-icon-svg,
.tbs-pagination-jump-next .tbs-pagination-item-container .tbs-pagination-item-link-icon-svg {
  inset: 0;
  margin: auto;
}

.tbs-pagination-jump-prev .tbs-pagination-item-container .tbs-pagination-item-ellipsis,
.tbs-pagination-jump-next .tbs-pagination-item-container .tbs-pagination-item-ellipsis {
  position: absolute;
  inset: 0;
  display: block;
  margin: auto;
  color: rgba(0, 0, 0, 0.2509803922);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
  text-align: center;
  text-indent: 0.13em;
  opacity: 1;
  transition: all 0.2s;
}

.tbs-pagination-jump-prev:hover .tbs-pagination-item-link-icon,
.tbs-pagination-jump-next:hover .tbs-pagination-item-link-icon {
  opacity: 1;
}

.tbs-pagination-jump-prev:hover .tbs-pagination-item-ellipsis,
.tbs-pagination-jump-next:hover .tbs-pagination-item-ellipsis {
  opacity: 0;
}

.tbs-pagination-jump-prev:focus-visible .tbs-pagination-item-link-icon,
.tbs-pagination-jump-next:focus-visible .tbs-pagination-item-link-icon {
  opacity: 1;
}

.tbs-pagination-jump-prev:focus-visible .tbs-pagination-item-ellipsis,
.tbs-pagination-jump-next:focus-visible .tbs-pagination-item-ellipsis {
  opacity: 0;
}

.tbs-pagination-prev,
.tbs-pagination-jump-prev,
.tbs-pagination-jump-next {
  margin-right: 8px;
}

.tbs-pagination-prev,
.tbs-pagination-next,
.tbs-pagination-jump-prev,
.tbs-pagination-jump-next {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-pagination-prev,
.tbs-pagination-next {
  font-family: Arial, Helvetica, sans-serif;
  outline: 0;
}

.tbs-pagination-prev button,
.tbs-pagination-next button {
  color: rgba(0, 0, 0, 0.8509803922);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-pagination-prev:hover button,
.tbs-pagination-next:hover button {
  border-color: var(--tbs-primary-5);
}

.tbs-pagination-prev .tbs-pagination-item-link,
.tbs-pagination-next .tbs-pagination-item-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  outline: none;
  transition: all 0.3s;
}

.tbs-pagination-prev:focus-visible .tbs-pagination-item-link,
.tbs-pagination-next:focus-visible .tbs-pagination-item-link {
  color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
}

.tbs-pagination-prev:hover .tbs-pagination-item-link,
.tbs-pagination-next:hover .tbs-pagination-item-link {
  color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
}

.tbs-pagination-disabled,
.tbs-pagination-disabled:hover {
  cursor: not-allowed;
}

.tbs-pagination-disabled .tbs-pagination-item-link,
.tbs-pagination-disabled:hover .tbs-pagination-item-link {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-pagination-disabled:focus-visible {
  cursor: not-allowed;
}

.tbs-pagination-disabled:focus-visible .tbs-pagination-item-link {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-pagination-slash {
  margin: 0 10px 0 5px;
}

.tbs-pagination-options {
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
}

@media all and (-ms-high-contrast: none) {
  .tbs-pagination-options *::-ms-backdrop,
  .tbs-pagination-options {
    vertical-align: top;
  }
}
.tbs-pagination-options-size-changer.tbs-select {
  display: inline-block;
  width: auto;
}

.tbs-pagination-options-quick-jumper {
  display: inline-block;
  height: 32px;
  margin-left: 8px;
  line-height: 32px;
  vertical-align: top;
}

.tbs-pagination-options-quick-jumper input {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 0;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  transition: all 0.3s;
  width: 50px;
  height: 32px;
  margin: 0 8px;
}

.tbs-pagination-options-quick-jumper input::placeholder {
  color: var(--tbs-neutral-1000);
  -webkit-user-select: none;
  user-select: none;
}

.tbs-pagination-options-quick-jumper input:placeholder-shown {
  text-overflow: ellipsis;
}

.tbs-pagination-options-quick-jumper input:hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-pagination-options-quick-jumper input:hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-pagination-options-quick-jumper input:focus,
.tbs-pagination-options-quick-jumper input-focused {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-pagination-options-quick-jumper input:focus,
.tbs-input-rtl .tbs-pagination-options-quick-jumper input-focused {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-pagination-options-quick-jumper input-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-pagination-options-quick-jumper input-disabled:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-pagination-options-quick-jumper input[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.tbs-pagination-options-quick-jumper input[disabled]:hover {
  border-color: var(--tbs-neutral-600);
  border-right-width: 1px;
}

.tbs-pagination-options-quick-jumper input-borderless,
.tbs-pagination-options-quick-jumper input-borderless:hover,
.tbs-pagination-options-quick-jumper input-borderless:focus,
.tbs-pagination-options-quick-jumper input-borderless-focused,
.tbs-pagination-options-quick-jumper input-borderless-disabled,
.tbs-pagination-options-quick-jumper input-borderless[disabled] {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

textarea.tbs-pagination-options-quick-jumper input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5715;
  vertical-align: bottom;
  transition: all 0.3s, height 0s;
}

.tbs-pagination-options-quick-jumper input-lg {
  padding: 6.5px 11px;
  font-size: 16px;
}

.tbs-pagination-options-quick-jumper input-sm {
  padding: 0 7px;
}

.tbs-pagination-options-quick-jumper input-rtl {
  direction: rtl;
}

.tbs-pagination-options-quick-jumper input-stepperless[type=number] {
  -moz-appearance: textfield;
}

.tbs-pagination-options-quick-jumper input-stepperless[type=number]::-webkit-inner-spin-button,
.tbs-pagination-options-quick-jumper input-stepperless[type=number] ::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tbs-pagination-simple .tbs-pagination-prev,
.tbs-pagination-simple .tbs-pagination-next {
  height: 24px;
  line-height: 24px;
  vertical-align: top;
}

.tbs-pagination-simple .tbs-pagination-prev .tbs-pagination-item-link,
.tbs-pagination-simple .tbs-pagination-next .tbs-pagination-item-link {
  height: 24px;
  background-color: transparent;
  border: 0;
}

.tbs-pagination-simple .tbs-pagination-prev .tbs-pagination-item-link:after,
.tbs-pagination-simple .tbs-pagination-next .tbs-pagination-item-link:after {
  height: 24px;
  line-height: 24px;
}

.tbs-pagination-simple .tbs-pagination-simple-pager {
  display: inline-block;
  height: 24px;
  margin-right: 8px;
}

.tbs-pagination-simple .tbs-pagination-simple-pager input {
  box-sizing: border-box;
  height: 100%;
  margin-right: 8px;
  padding: 0 6px;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}

.tbs-pagination-simple .tbs-pagination-simple-pager input:hover {
  border-color: var(--tbs-primary-color);
}

.tbs-pagination-simple .tbs-pagination-simple-pager input:focus {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
}

.tbs-pagination-simple .tbs-pagination-simple-pager input[disabled] {
  color: rgba(0, 0, 0, 0.2509803922);
  background: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-total-text,
.tbs-pagination.tbs-pagination-mini .tbs-pagination-simple-pager {
  height: 24px;
  line-height: 24px;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-item {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 22px;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-item:not(.tbs-pagination-item-active) {
  background: transparent;
  border-color: transparent;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-prev,
.tbs-pagination.tbs-pagination-mini .tbs-pagination-next {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 24px;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-prev .tbs-pagination-item-link,
.tbs-pagination.tbs-pagination-mini .tbs-pagination-next .tbs-pagination-item-link {
  background: transparent;
  border-color: transparent;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-prev .tbs-pagination-item-link:after,
.tbs-pagination.tbs-pagination-mini .tbs-pagination-next .tbs-pagination-item-link:after {
  height: 24px;
  line-height: 24px;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-jump-prev,
.tbs-pagination.tbs-pagination-mini .tbs-pagination-jump-next {
  height: 24px;
  margin-right: 0;
  line-height: 24px;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-options {
  margin-left: 2px;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-options-size-changer {
  top: 0;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-options-quick-jumper {
  height: 24px;
  line-height: 24px;
}

.tbs-pagination.tbs-pagination-mini .tbs-pagination-options-quick-jumper input {
  padding: 0 7px;
  width: 44px;
  height: 24px;
}

.tbs-pagination.tbs-pagination-disabled {
  cursor: not-allowed;
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item {
  background: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item a {
  color: rgba(0, 0, 0, 0.2509803922);
  background: transparent;
  border: none;
  cursor: not-allowed;
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item-active {
  background: #e6e6e6;
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item-active a {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item-link {
  color: rgba(0, 0, 0, 0.2509803922);
  background: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-pagination-simple.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item-link {
  background: transparent;
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item-link-icon {
  opacity: 0;
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-item-ellipsis {
  opacity: 1;
}

.tbs-pagination.tbs-pagination-disabled .tbs-pagination-simple-pager {
  color: rgba(0, 0, 0, 0.2509803922);
}

@media only screen and (max-width: 992px) {
  .tbs-pagination-item-after-jump-prev,
  .tbs-pagination-item-before-jump-next {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .tbs-pagination-options {
    display: none;
  }
}
.tbs-pagination-rtl .tbs-pagination-total-text,
.tbs-pagination-rtl .tbs-pagination-item,
.tbs-pagination-rtl .tbs-pagination-prev,
.tbs-pagination-rtl .tbs-pagination-jump-prev,
.tbs-pagination-rtl .tbs-pagination-jump-next {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-pagination-rtl .tbs-pagination-slash {
  margin: 0 5px 0 10px;
}

.tbs-pagination-rtl .tbs-pagination-options {
  margin-right: 16px;
  margin-left: 0;
}

.tbs-pagination-rtl .tbs-pagination-options .tbs-pagination-options-size-changer.tbs-select {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-pagination-rtl .tbs-pagination-options .tbs-pagination-options-quick-jumper {
  margin-left: 0;
}

.tbs-pagination-rtl.tbs-pagination-simple .tbs-pagination-simple-pager,
.tbs-pagination-rtl.tbs-pagination-simple .tbs-pagination-simple-pager input {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-pagination-rtl.tbs-pagination.mini .tbs-pagination-options {
  margin-right: 2px;
  margin-left: 0;
}

tbs-pagination {
  display: block;
}

.tbs-progress {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-block;
}

.tbs-progress-line {
  position: relative;
  width: 100%;
  font-size: 14px;
}

.tbs-progress-steps {
  display: inline-block;
}

.tbs-progress-steps-outer {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.tbs-progress-steps-item {
  flex-shrink: 0;
  min-width: 2px;
  margin-right: 2px;
  background: #f3f3f3;
  transition: all 0.3s;
}

.tbs-progress-steps-item-active {
  background: var(--tbs-primary-color);
}

.tbs-progress-small.tbs-progress-line,
.tbs-progress-small.tbs-progress-line .tbs-progress-text .anticon {
  font-size: 12px;
}

.tbs-progress-outer {
  display: inline-block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}

.tbs-progress-show-info .tbs-progress-outer {
  margin-right: calc(-2em - 8px);
  padding-right: calc(2em + 8px);
}

.tbs-progress-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.0392156863);
  border-radius: 100px;
}

.tbs-progress-circle-trail {
  stroke: rgba(0, 0, 0, 0.0392156863);
}

.tbs-progress-circle-path {
  animation: tbs-progress-appear 0.3s;
}

.tbs-progress-inner:not(.tbs-progress-circle-gradient) .tbs-progress-circle-path {
  stroke: var(--tbs-primary-color);
}

.tbs-progress-success-bg,
.tbs-progress-bg {
  position: relative;
  background-color: var(--tbs-primary-color);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
}

.tbs-progress-success-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--tbs-success-color);
}

.tbs-progress-text {
  display: inline-block;
  width: 2em;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 1em;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
  word-break: normal;
}

.tbs-progress-text .anticon {
  font-size: 14px;
}

.tbs-progress-status-active .tbs-progress-bg:before {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  animation: tbs-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  content: "";
}

.tbs-progress-status-exception .tbs-progress-bg {
  background-color: var(--tbs-error-color);
}

.tbs-progress-status-exception .tbs-progress-text {
  color: var(--tbs-error-color);
}

.tbs-progress-status-exception .tbs-progress-inner:not(.tbs-progress-circle-gradient) .tbs-progress-circle-path {
  stroke: var(--tbs-error-color);
}

.tbs-progress-status-success .tbs-progress-bg {
  background-color: var(--tbs-success-color);
}

.tbs-progress-status-success .tbs-progress-text {
  color: var(--tbs-success-color);
}

.tbs-progress-status-success .tbs-progress-inner:not(.tbs-progress-circle-gradient) .tbs-progress-circle-path {
  stroke: var(--tbs-success-color);
}

.tbs-progress-circle .tbs-progress-inner {
  position: relative;
  line-height: 1;
  background-color: transparent;
}

.tbs-progress-circle .tbs-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 1em;
  line-height: 1;
  white-space: normal;
  text-align: center;
  transform: translate(-50%, -50%);
}

.tbs-progress-circle .tbs-progress-text .anticon {
  font-size: 1.16666667em;
}

.tbs-progress-circle.tbs-progress-status-exception .tbs-progress-text {
  color: var(--tbs-error-color);
}

.tbs-progress-circle.tbs-progress-status-success .tbs-progress-text {
  color: var(--tbs-success-color);
}

@keyframes tbs-progress-active {
  0% {
    transform: translate(-100%) scaleX(0);
    opacity: 0.1;
  }
  20% {
    transform: translate(-100%) scaleX(0);
    opacity: 0.5;
  }
  to {
    transform: translate(0) scaleX(1);
    opacity: 0;
  }
}
.tbs-progress-rtl {
  direction: rtl;
}

.tbs-progress-rtl.tbs-progress-show-info .tbs-progress-outer {
  margin-right: 0;
  margin-left: calc(-2em - 8px);
  padding-right: 0;
  padding-left: calc(2em + 8px);
}

.tbs-progress-rtl .tbs-progress-success-bg {
  right: 0;
  left: auto;
}

.tbs-progress-rtl.tbs-progress-line .tbs-progress-text,
.tbs-progress-rtl.tbs-progress-steps .tbs-progress-text {
  margin-right: 8px;
  margin-left: 0;
  text-align: right;
}

.tbs-rate {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  font-feature-settings: "tnum";
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #fadb14;
  font-size: 20px;
  line-height: unset;
  list-style: none;
  outline: none;
}

.tbs-rate-disabled .tbs-rate-star {
  cursor: default;
}

.tbs-rate-disabled .tbs-rate-star > div:hover {
  transform: scale(1);
}

.tbs-rate-star {
  position: relative;
  display: inline-block;
  color: inherit;
  cursor: pointer;
}

.tbs-rate-star:not(:last-child) {
  margin-right: 8px;
}

.tbs-rate-star > div {
  transition: all 0.3s, outline 0s;
}

.tbs-rate-star > div:hover {
  transform: scale(1.1);
}

.tbs-rate-star > div:focus {
  outline: 0;
}

.tbs-rate-star > div:focus-visible {
  outline: 1px dashed #fadb14;
  transform: scale(1.1);
}

.tbs-rate-star-first,
.tbs-rate-star-second {
  color: rgba(0, 0, 0, 0.0588235294);
  transition: all 0.3s;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-rate-star-first .anticon,
.tbs-rate-star-second .anticon {
  vertical-align: middle;
}

.tbs-rate-star-first {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}

.tbs-rate-star-half .tbs-rate-star-first,
.tbs-rate-star-half .tbs-rate-star-second {
  opacity: 1;
}

.tbs-rate-star-half .tbs-rate-star-first,
.tbs-rate-star-full .tbs-rate-star-second {
  color: inherit;
}

.tbs-rate-text {
  display: inline-block;
  margin: 0 8px;
  font-size: 14px;
}

.tbs-rate-rtl {
  direction: rtl;
}

.tbs-rate-rtl .tbs-rate-star:not(:last-child) {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-rate-rtl .tbs-rate-star-first {
  right: 0;
  left: auto;
}

.tbs-select-single .tbs-select-selector {
  display: flex;
}

.tbs-select-single .tbs-select-selector .tbs-select-selection-search {
  position: absolute;
  inset: 0 11px;
}

.tbs-select-single .tbs-select-selector .tbs-select-selection-search-input {
  width: 100%;
}

.tbs-select-single .tbs-select-selector .tbs-select-selection-item,
.tbs-select-single .tbs-select-selector .tbs-select-selection-placeholder {
  padding: 0;
  line-height: 34px;
  transition: all 0.3s, visibility 0s;
}

.tbs-select-single .tbs-select-selector .tbs-select-selection-item {
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-select-single .tbs-select-selector .tbs-select-selection-placeholder {
  transition: none;
  pointer-events: none;
}

.tbs-select-single .tbs-select-selector:after,
.tbs-select-single .tbs-select-selector .tbs-select-selection-item:after,
.tbs-select-single .tbs-select-selector .tbs-select-selection-placeholder:after {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: " ";
}

.tbs-select-single.tbs-select-show-arrow .tbs-select-selection-search {
  right: 25px;
}

.tbs-select-single.tbs-select-show-arrow .tbs-select-selection-item,
.tbs-select-single.tbs-select-show-arrow .tbs-select-selection-placeholder {
  padding-right: 18px;
}

.tbs-select-single.tbs-select-open .tbs-select-selection-item {
  color: #bfbfbf;
}

.tbs-select-single:not(.tbs-select-customize-input) .tbs-select-selector {
  width: 100%;
  height: 36px;
  padding: 0 11px;
}

.tbs-select-single:not(.tbs-select-customize-input) .tbs-select-selector .tbs-select-selection-search-input {
  height: 30px;
}

.tbs-select-single:not(.tbs-select-customize-input) .tbs-select-selector:after {
  line-height: 30px;
}

.tbs-select-single.tbs-select-customize-input .tbs-select-selector:after {
  display: none;
}

.tbs-select-single.tbs-select-customize-input .tbs-select-selector .tbs-select-selection-search {
  position: static;
  width: 100%;
}

.tbs-select-single.tbs-select-customize-input .tbs-select-selector .tbs-select-selection-placeholder {
  position: absolute;
  right: 0;
  left: 0;
  padding: 0 11px;
}

.tbs-select-single.tbs-select-customize-input .tbs-select-selector .tbs-select-selection-placeholder:after {
  display: none;
}

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

.tbs-select-single.tbs-select-lg:not(.tbs-select-customize-input) .tbs-select-selector:after,
.tbs-select-single.tbs-select-lg:not(.tbs-select-customize-input) .tbs-select-selector .tbs-select-selection-item,
.tbs-select-single.tbs-select-lg:not(.tbs-select-customize-input) .tbs-select-selector .tbs-select-selection-placeholder {
  line-height: 46px;
}

.tbs-select-single.tbs-select-lg:not(.tbs-select-customize-input):not(.tbs-select-customize-input) .tbs-select-selection-search-input {
  height: 46px;
}

.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input) .tbs-select-selector {
  height: 24px;
}

.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input) .tbs-select-selector:after,
.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input) .tbs-select-selector .tbs-select-selection-item,
.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input) .tbs-select-selector .tbs-select-selection-placeholder {
  line-height: 22px;
}

.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input):not(.tbs-select-customize-input) .tbs-select-selection-search-input {
  height: 22px;
}

.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input) .tbs-select-selection-search {
  right: 7px;
  left: 7px;
}

.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input) .tbs-select-selector {
  padding: 0 7px;
}

.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input).tbs-select-show-arrow .tbs-select-selection-search {
  right: 28px;
}

.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input).tbs-select-show-arrow .tbs-select-selection-item,
.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input).tbs-select-show-arrow .tbs-select-selection-placeholder {
  padding-right: 21px;
}

.tbs-select-single.tbs-select-lg:not(.tbs-select-customize-input) .tbs-select-selector {
  padding: 0 11px;
}

.tbs-select-selection-overflow {
  position: relative;
  display: flex;
  flex: auto;
  flex-wrap: wrap;
  max-width: 100%;
}

.tbs-select-selection-overflow-item {
  flex: none;
  align-self: center;
  max-width: 100%;
}

.tbs-select-multiple .tbs-select-selector {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  padding: 3px 4px;
}

.tbs-select-show-search.tbs-select-multiple .tbs-select-selector {
  cursor: text;
}

.tbs-select-disabled.tbs-select-multiple .tbs-select-selector {
  background: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-select-multiple .tbs-select-selector:after {
  display: inline-block;
  width: 0;
  margin: 2px 0;
  line-height: 24px;
  visibility: hidden;
  content: " ";
}

.tbs-select-multiple.tbs-select-show-arrow .tbs-select-selector,
.tbs-select-multiple.tbs-select-allow-clear .tbs-select-selector {
  padding-right: 24px;
}

.tbs-select-multiple .tbs-select-selection-item {
  position: relative;
  display: flex;
  flex: none;
  box-sizing: border-box;
  max-width: 100%;
  height: 24px;
  margin-top: 2px;
  margin-bottom: 2px;
  line-height: 22px;
  background: var(--tbs-neutral-400);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  cursor: default;
  transition: font-size 0.3s, line-height 0.3s, height 0.3s;
  -webkit-user-select: none;
  user-select: none;
  margin-inline-end: 4px;
  padding-inline-start: 8px;
  padding-inline-end: 4px;
}

.tbs-select-disabled.tbs-select-multiple .tbs-select-selection-item {
  color: #bfbfbf;
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-select-multiple .tbs-select-selection-item-content {
  display: inline-block;
  margin-right: 4px;
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
}

.tbs-select-multiple .tbs-select-selection-item-remove {
  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;
  -moz-osx-font-smoothing: grayscale;
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.4509803922);
  font-weight: 700;
  font-size: 10px;
  line-height: inherit;
  cursor: pointer;
}

.tbs-select-multiple .tbs-select-selection-item-remove > * {
  line-height: 1;
}

.tbs-select-multiple .tbs-select-selection-item-remove svg {
  display: inline-block;
}

.tbs-select-multiple .tbs-select-selection-item-remove:before {
  display: none;
}

.tbs-select-multiple .tbs-select-selection-item-remove .tbs-select-multiple .tbs-select-selection-item-remove-icon {
  display: block;
}

.tbs-select-multiple .tbs-select-selection-item-remove > .anticon {
  vertical-align: middle;
}

.tbs-select-multiple .tbs-select-selection-item-remove:hover {
  color: rgba(0, 0, 0, 0.7490196078);
}

.tbs-select-multiple .tbs-select-selection-overflow-item + .tbs-select-selection-overflow-item .tbs-select-selection-search {
  margin-inline-start: 0;
}

.tbs-select-multiple .tbs-select-selection-search {
  position: relative;
  max-width: 100%;
  margin-inline-start: 7px;
}

.tbs-select-multiple .tbs-select-selection-search-input,
.tbs-select-multiple .tbs-select-selection-search-mirror {
  height: 24px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  line-height: 24px;
  transition: all 0.3s;
}

.tbs-select-multiple .tbs-select-selection-search-input {
  width: 100%;
  min-width: 4.1px;
}

.tbs-select-multiple .tbs-select-selection-search-mirror {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  white-space: pre;
  visibility: hidden;
}

.tbs-select-multiple .tbs-select-selection-placeholder {
  position: absolute;
  top: 50%;
  right: 11px;
  left: 11px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.tbs-select-multiple.tbs-select-lg .tbs-select-selector:after {
  line-height: 36px;
}

.tbs-select-multiple.tbs-select-lg .tbs-select-selection-item {
  height: 36px;
  line-height: 34px;
}

.tbs-select-multiple.tbs-select-lg .tbs-select-selection-search {
  height: 36px;
  line-height: 36px;
}

.tbs-select-multiple.tbs-select-lg .tbs-select-selection-search-input,
.tbs-select-multiple.tbs-select-lg .tbs-select-selection-search-mirror {
  height: 36px;
  line-height: 34px;
}

.tbs-select-multiple.tbs-select-sm .tbs-select-selector:after {
  line-height: 16px;
}

.tbs-select-multiple.tbs-select-sm .tbs-select-selection-item {
  height: 16px;
  line-height: 14px;
}

.tbs-select-multiple.tbs-select-sm .tbs-select-selection-search {
  height: 16px;
  line-height: 16px;
}

.tbs-select-multiple.tbs-select-sm .tbs-select-selection-search-input,
.tbs-select-multiple.tbs-select-sm .tbs-select-selection-search-mirror {
  height: 16px;
  line-height: 14px;
}

.tbs-select-multiple.tbs-select-sm .tbs-select-selection-placeholder {
  left: 7px;
}

.tbs-select-multiple.tbs-select-sm .tbs-select-selection-search {
  margin-inline-start: 3px;
}

.tbs-select-disabled .tbs-select-selection-item-remove {
  display: none;
}

.tbs-select-status-error.tbs-select:not(.tbs-select-disabled):not(.tbs-select-customize-input):not(.tbs-pagination-size-changer) .tbs-select-selector {
  background-color: #fff;
  border-color: var(--tbs-error-color) !important;
}

.tbs-select-status-error.tbs-select:not(.tbs-select-disabled):not(.tbs-select-customize-input):not(.tbs-pagination-size-changer).tbs-select-open .tbs-select-selector,
.tbs-select-status-error.tbs-select:not(.tbs-select-disabled):not(.tbs-select-customize-input):not(.tbs-pagination-size-changer).tbs-select-focused .tbs-select-selector {
  border-color: var(--tbs-error-color-hover);
  border-right-width: 1px;
  outline: 0;
}

.tbs-select-status-warning.tbs-select:not(.tbs-select-disabled):not(.tbs-select-customize-input):not(.tbs-pagination-size-changer) .tbs-select-selector {
  background-color: #fff;
  border-color: var(--tbs-warning-color) !important;
}

.tbs-select-status-warning.tbs-select:not(.tbs-select-disabled):not(.tbs-select-customize-input):not(.tbs-pagination-size-changer).tbs-select-open .tbs-select-selector,
.tbs-select-status-warning.tbs-select:not(.tbs-select-disabled):not(.tbs-select-customize-input):not(.tbs-pagination-size-changer).tbs-select-focused .tbs-select-selector {
  border-color: var(--tbs-warning-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-warning-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-select-status-error.tbs-select-has-feedback .tbs-select-clear,
.tbs-select-status-warning.tbs-select-has-feedback .tbs-select-clear,
.tbs-select-status-success.tbs-select-has-feedback .tbs-select-clear,
.tbs-select-status-validating.tbs-select-has-feedback .tbs-select-clear {
  right: 32px;
}

.tbs-select-status-error.tbs-select-has-feedback .tbs-select-selection-selected-value,
.tbs-select-status-warning.tbs-select-has-feedback .tbs-select-selection-selected-value,
.tbs-select-status-success.tbs-select-has-feedback .tbs-select-selection-selected-value,
.tbs-select-status-validating.tbs-select-has-feedback .tbs-select-selection-selected-value {
  padding-right: 42px;
}

.tbs-select {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector {
  position: relative;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-800);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector input {
  cursor: pointer;
}

.tbs-select-show-search.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector {
  cursor: pointer;
}

.tbs-select-show-search.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector input {
  cursor: auto;
}

.tbs-select-focused:not(.tbs-select-disabled).tbs-select:not(.tbs-select-customize-input) .tbs-select-selector {
  border-color: var(--tbs-complimentary-blue);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-select-focused:not(.tbs-select-disabled).tbs-select:not(.tbs-select-customize-input) .tbs-select-selector {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-select-disabled.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector {
  color: rgba(0, 0, 0, 0.2509803922);
  background: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
  cursor: not-allowed;
}

.tbs-select-multiple.tbs-select-disabled.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector {
  background: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600);
}

.tbs-select-disabled.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector input {
  cursor: not-allowed;
}

.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector .tbs-select-selection-search-input {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
}

.tbs-select:not(.tbs-select-customize-input) .tbs-select-selector .tbs-select-selection-search-input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}

.tbs-select:not(.tbs-select-disabled):hover .tbs-select-selector {
  background-color: var(--tbs-neutral-200);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-select:not(.tbs-select-disabled):hover .tbs-select-selector {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-select-selection-item {
  flex: 1;
  overflow: hidden;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media all and (-ms-high-contrast: none) {
  .tbs-select-selection-item *::-ms-backdrop,
  .tbs-select-selection-item {
    flex: auto;
  }
}
.tbs-select-selection-placeholder {
  flex: 1;
  overflow: hidden;
  color: var(--tbs-neutral-1000);
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

@media all and (-ms-high-contrast: none) {
  .tbs-select-selection-placeholder *::-ms-backdrop,
  .tbs-select-selection-placeholder {
    flex: auto;
  }
}
.tbs-select-arrow {
  display: inline-flex;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 11px;
  display: flex;
  align-items: center;
  height: 16px;
  margin-top: -8px;
  color: black;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}

.tbs-select-arrow > * {
  line-height: 1;
}

.tbs-select-arrow svg {
  display: inline-block;
}

.tbs-select-arrow:before {
  display: none;
}

.tbs-select-arrow .tbs-select-arrow-icon {
  display: block;
}

.tbs-select-arrow .anticon {
  vertical-align: top;
  transition: transform 0.3s;
}

.tbs-select-arrow .anticon > svg {
  vertical-align: top;
}

.tbs-select-arrow .anticon:not(.tbs-select-suffix) {
  pointer-events: auto;
}

.tbs-select-disabled .tbs-select-arrow {
  cursor: not-allowed;
}

.tbs-select-arrow > *:not(:last-child) {
  margin-inline-end: 8px;
}

.tbs-select-clear {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  color: rgba(0, 0, 0, 0.2509803922);
  font-size: 12px;
  font-style: normal;
  line-height: 1;
  text-align: center;
  text-transform: none;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.15s ease;
  text-rendering: auto;
}

.tbs-select-clear:before {
  display: block;
}

.tbs-select-clear:hover {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-select:hover .tbs-select-clear {
  opacity: 1;
}

.tbs-select-dropdown {
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  box-sizing: border-box;
  padding: 4px 0;
  overflow: hidden;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 2px;
  outline: none;
  border: 1px solid var(--tbs-neutral-800);
  background: var(--tbs-neutral-50);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
}

.tbs-select-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-select-dropdown-placement-bottomLeft,
.tbs-select-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpIn;
}

.tbs-select-dropdown.tbs-slide-up-enter.tbs-slide-up-enter-active.tbs-select-dropdown-placement-topLeft,
.tbs-select-dropdown.tbs-slide-up-appear.tbs-slide-up-appear-active.tbs-select-dropdown-placement-topLeft {
  animation-name: antSlideDownIn;
}

.tbs-select-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-select-dropdown-placement-bottomLeft {
  animation-name: antSlideUpOut;
}

.tbs-select-dropdown.tbs-slide-up-leave.tbs-slide-up-leave-active.tbs-select-dropdown-placement-topLeft {
  animation-name: antSlideDownOut;
}

.tbs-select-dropdown-empty {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-select-item-empty {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-select-item {
  position: relative;
  display: block;
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tbs-select-item-group {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  cursor: default;
}

.tbs-select-item-option {
  display: flex;
}

.tbs-select-item-option-content {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tbs-select-item-option-state {
  flex: none;
}

.tbs-select-item-option-active:not(.tbs-select-item-option-disabled) {
  background-color: var(--tbs-neutral-400);
}

.tbs-select-item-option-selected:not(.tbs-select-item-option-disabled) {
  color: var(--tbs-primary-blue-1000);
  font-weight: 600;
}

.tbs-select-item-option-selected:not(.tbs-select-item-option-disabled) .tbs-select-item-option-state {
  color: var(--tbs-primary-color);
}

.tbs-select-item-option-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-select-item-option-disabled.tbs-select-item-option-selected {
  background-color: var(--tbs-neutral-400);
}

.tbs-select-item-option-grouped {
  padding-left: 24px;
}

.tbs-select-lg {
  font-size: 16px;
}

.tbs-select-borderless .tbs-select-selector {
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.tbs-select.tbs-select-in-form-item {
  width: 100%;
}

.tbs-select-compact-item:not(.tbs-select-compact-last-item) {
  margin-right: -1px;
}

.tbs-select-compact-item:not(.tbs-select-compact-last-item).tbs-select-compact-item-rtl {
  margin-right: 0;
  margin-left: -1px;
}

.tbs-select-compact-item:hover > *,
.tbs-select-compact-item:focus > *,
.tbs-select-compact-item:active > * {
  z-index: 2;
}

.tbs-select-compact-item.tbs-select-focused > * {
  z-index: 2;
}

.tbs-select-compact-item[disabled] > * {
  z-index: 0;
}

.tbs-select-compact-item:not(.tbs-select-compact-first-item):not(.tbs-select-compact-last-item).tbs-select > .tbs-select-selector {
  border-radius: 0;
}

.tbs-select-compact-item.tbs-select-compact-first-item.tbs-select:not(.tbs-select-compact-last-item):not(.tbs-select-compact-item-rtl) > .tbs-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-select-compact-item.tbs-select-compact-last-item.tbs-select:not(.tbs-select-compact-first-item):not(.tbs-select-compact-item-rtl) > .tbs-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-select-compact-item.tbs-select.tbs-select-compact-first-item.tbs-select-compact-item-rtl:not(.tbs-select-compact-last-item) > .tbs-select-selector {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-select-compact-item.tbs-select.tbs-select-compact-last-item.tbs-select-compact-item-rtl:not(.tbs-select-compact-first-item) > .tbs-select-selector {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-select-rtl {
  direction: rtl;
}

.tbs-select-rtl .tbs-select-arrow,
.tbs-select-rtl .tbs-select-clear {
  right: initial;
  left: 11px;
}

.tbs-select-dropdown-rtl {
  direction: rtl;
}

.tbs-select-dropdown-rtl .tbs-select-item-option-grouped {
  padding-right: 24px;
  padding-left: 12px;
}

.tbs-select-rtl.tbs-select-multiple.tbs-select-show-arrow .tbs-select-selector,
.tbs-select-rtl.tbs-select-multiple.tbs-select-allow-clear .tbs-select-selector {
  padding-right: 4px;
  padding-left: 24px;
}

.tbs-select-rtl.tbs-select-multiple .tbs-select-selection-item {
  text-align: right;
}

.tbs-select-rtl.tbs-select-multiple .tbs-select-selection-item-content {
  margin-right: 0;
  margin-left: 4px;
  text-align: right;
}

.tbs-select-rtl.tbs-select-multiple .tbs-select-selection-search-mirror {
  right: 0;
  left: auto;
}

.tbs-select-rtl.tbs-select-multiple .tbs-select-selection-placeholder {
  right: 11px;
  left: auto;
}

.tbs-select-rtl.tbs-select-multiple.tbs-select-sm .tbs-select-selection-placeholder {
  right: 7px;
}

.tbs-select-rtl.tbs-select-single .tbs-select-selector .tbs-select-selection-item,
.tbs-select-rtl.tbs-select-single .tbs-select-selector .tbs-select-selection-placeholder {
  right: 0;
  left: 9px;
  text-align: right;
}

.tbs-select-rtl.tbs-select-single.tbs-select-show-arrow .tbs-select-selection-search {
  right: 11px;
  left: 25px;
}

.tbs-select-rtl.tbs-select-single.tbs-select-show-arrow .tbs-select-selection-item,
.tbs-select-rtl.tbs-select-single.tbs-select-show-arrow .tbs-select-selection-placeholder {
  padding-right: 0;
  padding-left: 18px;
}

.tbs-select-rtl.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input).tbs-select-show-arrow .tbs-select-selection-search {
  right: 6px;
}

.tbs-select-rtl.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input).tbs-select-show-arrow .tbs-select-selection-item,
.tbs-select-rtl.tbs-select-single.tbs-select-sm:not(.tbs-select-customize-input).tbs-select-show-arrow .tbs-select-selection-placeholder {
  padding-right: 0;
  padding-left: 21px;
}

.tbs-select-dropdown {
  position: relative;
  top: 100%;
  left: 0;
  display: block;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
}

.tbs-select-dropdown .cdk-virtual-scroll-content-wrapper {
  right: 0;
}

.tbs-select-dropdown .full-width {
  contain: initial;
}

.tbs-select-dropdown .full-width .cdk-virtual-scroll-content-wrapper {
  position: static;
}

.tbs-select-dropdown .full-width .cdk-virtual-scroll-spacer {
  position: absolute;
  top: 0;
  width: 1px;
}

.segmented-disabled-item,
.segmented-disabled-item:hover,
.segmented-disabled-item:focus {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.segmented-item-selected {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.0509803922), 0 1px 4px -1px rgba(0, 0, 0, 0.0705882353), 0 0 1px rgba(0, 0, 0, 0.0784313725);
}

.segmented-text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.tbs-segmented {
  box-sizing: border-box;
  margin: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-block;
  padding: 2px;
  color: rgba(0, 0, 0, 0.6509803922);
  background-color: rgba(0, 0, 0, 0.0392156863);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-segmented-group {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-items: flex-start;
  width: 100%;
}

.tbs-segmented.tbs-segmented-block {
  display: flex;
}

.tbs-segmented.tbs-segmented-block .tbs-segmented-item {
  flex: 1;
  min-width: 0;
}

.tbs-segmented:not(.tbs-segmented-disabled):hover,
.tbs-segmented:not(.tbs-segmented-disabled):focus {
  background-color: rgba(0, 0, 0, 0.0588235294);
}

.tbs-segmented-item {
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-segmented-item-selected {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.0509803922), 0 1px 4px -1px rgba(0, 0, 0, 0.0705882353), 0 0 1px rgba(0, 0, 0, 0.0784313725);
  color: #262626;
}

.tbs-segmented-item:hover,
.tbs-segmented-item:focus {
  color: #262626;
}

.tbs-segmented-item-label {
  min-height: 28px;
  padding: 0 11px;
  line-height: 28px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.tbs-segmented-item-icon + * {
  margin-left: 6px;
}

.tbs-segmented-item-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.tbs-segmented.tbs-segmented-lg .tbs-segmented-item-label {
  min-height: 36px;
  padding: 0 11px;
  font-size: 16px;
  line-height: 36px;
}

.tbs-segmented.tbs-segmented-sm .tbs-segmented-item-label {
  min-height: 20px;
  padding: 0 7px;
  line-height: 20px;
}

.tbs-segmented-item-disabled,
.tbs-segmented-item-disabled:hover,
.tbs-segmented-item-disabled:focus {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-segmented-thumb {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.0509803922), 0 1px 4px -1px rgba(0, 0, 0, 0.0705882353), 0 0 1px rgba(0, 0, 0, 0.0784313725);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  padding: 4px 0;
}

.tbs-segmented-thumb-motion-appear-active {
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform, width;
}

.tbs-segmented.tbs-segmented-rtl {
  direction: rtl;
}

.tbs-segmented.tbs-segmented-rtl .tbs-segmented-item-icon {
  margin-right: 0;
  margin-left: 6px;
}

.tbs-statistic {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
}

.tbs-statistic-title {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
}

.tbs-statistic-skeleton {
  padding-top: 16px;
}

.tbs-statistic-content {
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 24px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
}

.tbs-statistic-content-value {
  display: inline-block;
  direction: ltr;
}

.tbs-statistic-content-prefix,
.tbs-statistic-content-suffix {
  display: inline-block;
}

.tbs-statistic-content-prefix {
  margin-right: 4px;
}

.tbs-statistic-content-suffix {
  margin-left: 4px;
}

.tbs-statistic-rtl {
  direction: rtl;
}

.tbs-statistic-rtl .tbs-statistic-content-prefix {
  margin-right: 0;
  margin-left: 4px;
}

.tbs-statistic-rtl .tbs-statistic-content-suffix {
  margin-right: 4px;
  margin-left: 0;
}

.tbs-table.tbs-table-middle {
  font-size: 14px;
}

.tbs-table.tbs-table-middle .tbs-table-title,
.tbs-table.tbs-table-middle .tbs-table-footer,
.tbs-table.tbs-table-middle .tbs-table-thead > tr > th,
.tbs-table.tbs-table-middle .tbs-table-tbody > tr > td,
.tbs-table.tbs-table-middle tfoot > tr > th,
.tbs-table.tbs-table-middle tfoot > tr > td {
  padding: 12px 8px;
}

.tbs-table.tbs-table-middle .tbs-table-filter-trigger {
  margin-right: -4px;
}

.tbs-table.tbs-table-middle .tbs-table-expanded-row-fixed {
  margin: -12px -8px;
}

.tbs-table.tbs-table-middle .tbs-table-tbody .tbs-table-wrapper:only-child .tbs-table {
  margin: -12px -8px -12px 40px;
}

.tbs-table.tbs-table-middle .tbs-table-selection-column {
  padding-inline-start: 2px;
}

.tbs-table.tbs-table-small {
  font-size: 14px;
}

.tbs-table.tbs-table-small .tbs-table-title,
.tbs-table.tbs-table-small .tbs-table-footer,
.tbs-table.tbs-table-small .tbs-table-thead > tr > th,
.tbs-table.tbs-table-small .tbs-table-tbody > tr > td,
.tbs-table.tbs-table-small tfoot > tr > th,
.tbs-table.tbs-table-small tfoot > tr > td {
  padding: 8px;
}

.tbs-table.tbs-table-small .tbs-table-filter-trigger {
  margin-right: -4px;
}

.tbs-table.tbs-table-small .tbs-table-expanded-row-fixed {
  margin: -8px;
}

.tbs-table.tbs-table-small .tbs-table-tbody .tbs-table-wrapper:only-child .tbs-table {
  margin: -8px -8px -8px 40px;
}

.tbs-table.tbs-table-small .tbs-table-selection-column {
  padding-inline-start: 2px;
}

.tbs-table.tbs-table-bordered > .tbs-table-title {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 0;
}

.tbs-table.tbs-table-bordered > .tbs-table-container {
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > thead > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > thead > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > thead > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > thead > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > tbody > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > tbody > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > tbody > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > tbody > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > tfoot > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > tfoot > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > tfoot > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > tfoot > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > tfoot > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > tfoot > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > tfoot > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > tfoot > tr > td {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > thead > tr:not(:last-child) > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > thead > tr:not(:last-child) > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > thead > tr:not(:last-child) > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > thead > tr:not(:last-child) > th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > thead > tr > th:before,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > thead > tr > th:before,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > thead > tr > th:before,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > thead > tr > th:before {
  background-color: transparent !important;
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > thead > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > thead > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > thead > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > thead > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > tbody > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > tbody > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > tbody > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > tbody > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > tfoot > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > tfoot > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > tfoot > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > tfoot > tr > .tbs-table-cell-fix-right-first:after {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > tbody > tr > td > .tbs-table-expanded-row-fixed,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > tbody > tr > td > .tbs-table-expanded-row-fixed,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > tbody > tr > td > .tbs-table-expanded-row-fixed,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > tbody > tr > td > .tbs-table-expanded-row-fixed {
  margin: -16px -17px;
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table > tbody > tr > td > .tbs-table-expanded-row-fixed:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table > tbody > tr > td > .tbs-table-expanded-row-fixed:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-body > table > tbody > tr > td > .tbs-table-expanded-row-fixed:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-summary > table > tbody > tr > td > .tbs-table-expanded-row-fixed:after {
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  content: "";
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-content > table,
.tbs-table.tbs-table-bordered > .tbs-table-container > .tbs-table-header > table {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered.tbs-table-scroll-horizontal > .tbs-table-container > .tbs-table-body > table > tbody > tr.tbs-table-expanded-row > td,
.tbs-table.tbs-table-bordered.tbs-table-scroll-horizontal > .tbs-table-container > .tbs-table-body > table > tbody > tr.tbs-table-placeholder > td {
  border-right: 0;
}

.tbs-table.tbs-table-bordered.tbs-table-middle > .tbs-table-container > .tbs-table-content > table > tbody > tr > td > .tbs-table-expanded-row-fixed,
.tbs-table.tbs-table-bordered.tbs-table-middle > .tbs-table-container > .tbs-table-body > table > tbody > tr > td > .tbs-table-expanded-row-fixed {
  margin: -12px -9px;
}

.tbs-table.tbs-table-bordered.tbs-table-small > .tbs-table-container > .tbs-table-content > table > tbody > tr > td > .tbs-table-expanded-row-fixed,
.tbs-table.tbs-table-bordered.tbs-table-small > .tbs-table-container > .tbs-table-body > table > tbody > tr > td > .tbs-table-expanded-row-fixed {
  margin: -8px -9px;
}

.tbs-table.tbs-table-bordered > .tbs-table-footer {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 0;
}

.tbs-table-cell .tbs-table-container:first-child {
  border-top: 0;
}

.tbs-table-cell-scrollbar:not([rowspan]) {
  box-shadow: 0 1px 0 1px #fafafa;
}

.tbs-table-wrapper {
  clear: both;
  max-width: 100%;
}

.tbs-table-wrapper:before {
  display: table;
  content: "";
}

.tbs-table-wrapper:after {
  display: table;
  clear: both;
  content: "";
}

.tbs-table {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  font-size: 14px;
  background: #fff;
  border-radius: 2px;
}

.tbs-table table {
  width: 100%;
  text-align: left;
  border-radius: 2px 2px 0 0;
  border-collapse: separate;
  border-spacing: 0;
}

.tbs-table-thead > tr > th,
.tbs-table-tbody > tr > td,
.tbs-table tfoot > tr > th,
.tbs-table tfoot > tr > td {
  position: relative;
  padding: 16px;
  overflow-wrap: break-word;
}

.tbs-table-cell-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.tbs-table-cell-ellipsis.tbs-table-cell-fix-left-last,
.tbs-table-cell-ellipsis.tbs-table-cell-fix-right-first {
  overflow: visible;
}

.tbs-table-cell-ellipsis.tbs-table-cell-fix-left-last .tbs-table-cell-content,
.tbs-table-cell-ellipsis.tbs-table-cell-fix-right-first .tbs-table-cell-content {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbs-table-cell-ellipsis .tbs-table-column-title {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
}

.tbs-table-title {
  padding: 16px;
}

.tbs-table-footer {
  padding: 16px;
  color: rgba(0, 0, 0, 0.8509803922);
  background: #fafafa;
}

.tbs-table-thead > tr > th {
  position: relative;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  text-align: left;
  background: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

.tbs-table-thead > tr > th[colspan]:not([colspan="1"]) {
  text-align: center;
}

.tbs-table-thead > tr > th:not(:last-child):not(.tbs-table-selection-column):not(.tbs-table-row-expand-icon-cell):not([colspan]):before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.6em;
  background-color: rgba(0, 0, 0, 0.0588235294);
  transform: translateY(-50%);
  transition: background-color 0.3s;
  content: "";
}

.tbs-table-thead > tr:not(:last-child) > th[colspan] {
  border-bottom: 0;
}

.tbs-table-tbody > tr > td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s;
}

.tbs-table-tbody > tr > td > .tbs-table-wrapper:only-child .tbs-table,
.tbs-table-tbody > tr > td > .tbs-table-expanded-row-fixed > .tbs-table-wrapper:only-child .tbs-table {
  margin: -16px -16px -16px 32px;
}

.tbs-table-tbody > tr > td > .tbs-table-wrapper:only-child .tbs-table-tbody > tr:last-child > td,
.tbs-table-tbody > tr > td > .tbs-table-expanded-row-fixed > .tbs-table-wrapper:only-child .tbs-table-tbody > tr:last-child > td {
  border-bottom: 0;
}

.tbs-table-tbody > tr > td > .tbs-table-wrapper:only-child .tbs-table-tbody > tr:last-child > td:first-child,
.tbs-table-tbody > tr > td > .tbs-table-expanded-row-fixed > .tbs-table-wrapper:only-child .tbs-table-tbody > tr:last-child > td:first-child,
.tbs-table-tbody > tr > td > .tbs-table-wrapper:only-child .tbs-table-tbody > tr:last-child > td:last-child,
.tbs-table-tbody > tr > td > .tbs-table-expanded-row-fixed > .tbs-table-wrapper:only-child .tbs-table-tbody > tr:last-child > td:last-child {
  border-radius: 0;
}

.tbs-table-tbody > tr.tbs-table-row:hover > td,
.tbs-table-tbody > tr > td.tbs-table-cell-row-hover {
  background: #fafafa;
}

.tbs-table-tbody > tr.tbs-table-row-selected > td {
  background: var(--tbs-primary-1);
  border-color: rgba(0, 0, 0, 0.031372549);
}

.tbs-table-tbody > tr.tbs-table-row-selected:hover > td {
  background: var(--tbs-primary-color-active-deprecated-d-02);
}

.tbs-table-summary {
  position: relative;
  z-index: 2;
  background: #fff;
}

div.tbs-table-summary {
  box-shadow: 0 -1px rgba(0, 0, 0, 0.0588235294);
}

.tbs-table-summary > tr > th,
.tbs-table-summary > tr > td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table-pagination.tbs-pagination {
  margin: 16px 0;
}

.tbs-table-pagination {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}

.tbs-table-pagination > * {
  flex: none;
}

.tbs-table-pagination-left {
  justify-content: flex-start;
}

.tbs-table-pagination-center {
  justify-content: center;
}

.tbs-table-pagination-right {
  justify-content: flex-end;
}

.tbs-table-thead th.tbs-table-column-has-sorters {
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-table-thead th.tbs-table-column-has-sorters:hover {
  background: rgba(0, 0, 0, 0.0392156863);
}

.tbs-table-thead th.tbs-table-column-has-sorters:hover:before {
  background-color: transparent !important;
}

.tbs-table-thead th.tbs-table-column-has-sorters:focus-visible {
  color: var(--tbs-primary-color);
}

.tbs-table-thead th.tbs-table-column-has-sorters.tbs-table-cell-fix-left:hover,
.tbs-table-thead th.tbs-table-column-has-sorters.tbs-table-cell-fix-right:hover,
.tbs-table-thead th.tbs-table-column-sort {
  background: var(--tbs-neutral-400);
}

.tbs-table-thead th.tbs-table-column-sort:before {
  background-color: transparent !important;
}

td.tbs-table-column-sort {
  background: #fafafa;
}

.tbs-table-column-title {
  position: relative;
  z-index: 1;
  flex: 1;
}

.tbs-table-column-sorters {
  display: flex;
  flex: auto;
  align-items: center;
  justify-content: space-between;
}

.tbs-table-column-sorters:after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.tbs-table-column-sorter {
  margin-left: 4px;
  color: #bfbfbf;
  font-size: 0;
  transition: color 0.3s;
}

.tbs-table-column-sorter-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.tbs-table-column-sorter-up,
.tbs-table-column-sorter-down {
  font-size: 11px;
}

.tbs-table-column-sorter-up.active,
.tbs-table-column-sorter-down.active {
  color: var(--tbs-primary-color);
}

.tbs-table-column-sorter-up + .tbs-table-column-sorter-down {
  margin-top: -0.3em;
}

.tbs-table-column-sorters:hover .tbs-table-column-sorter {
  color: #a6a6a6;
}

.tbs-table-filter-column {
  display: flex;
  justify-content: space-between;
}

.tbs-table-filter-trigger {
  position: relative;
  display: flex;
  align-items: center;
  margin: -4px -8px -4px 4px;
  padding: 0 4px;
  color: #bfbfbf;
  font-size: 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-table-filter-trigger:hover {
  color: rgba(0, 0, 0, 0.4509803922);
  background: rgba(0, 0, 0, 0.0392156863);
}

.tbs-table-filter-trigger.active {
  color: var(--tbs-primary-color);
}

.tbs-table-filter-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  min-width: 120px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.tbs-table-filter-dropdown .tbs-dropdown-menu {
  max-height: 264px;
  overflow-x: hidden;
  border: 0;
  box-shadow: none;
}

.tbs-table-filter-dropdown .tbs-dropdown-menu:empty:after {
  display: block;
  padding: 8px 0;
  color: rgba(0, 0, 0, 0.2509803922);
  font-size: 12px;
  text-align: center;
  content: "Not Found";
}

.tbs-table-filter-dropdown-tree {
  padding: 8px 8px 0;
}

.tbs-table-filter-dropdown-tree .tbs-tree-treenode .tbs-tree-node-content-wrapper:hover {
  background-color: var(--tbs-neutral-400);
}

.tbs-table-filter-dropdown-tree .tbs-tree-treenode-checkbox-checked .tbs-tree-node-content-wrapper,
.tbs-table-filter-dropdown-tree .tbs-tree-treenode-checkbox-checked .tbs-tree-node-content-wrapper:hover {
  background-color: var(--tbs-primary-2);
}

.tbs-table-filter-dropdown-search {
  padding: 8px;
  border-bottom: 1px rgba(0, 0, 0, 0.06) solid;
}

.tbs-table-filter-dropdown-search-input input {
  min-width: 140px;
}

.tbs-table-filter-dropdown-search-input .anticon {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-table-filter-dropdown-checkall {
  width: 100%;
  margin-bottom: 4px;
  margin-left: 4px;
}

.tbs-table-filter-dropdown-submenu > ul {
  max-height: calc(100vh - 130px);
  overflow-x: hidden;
  overflow-y: auto;
}

.tbs-table-filter-dropdown .tbs-checkbox-wrapper + span,
.tbs-table-filter-dropdown-submenu .tbs-checkbox-wrapper + span {
  padding-left: 8px;
}

.tbs-table-filter-dropdown-btns {
  display: flex;
  justify-content: space-between;
  padding: 7px 8px;
  overflow: hidden;
  background-color: inherit;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table-selection-col {
  width: 32px;
}

.tbs-table-bordered .tbs-table-selection-col {
  width: 50px;
}

table tr th.tbs-table-selection-column,
table tr td.tbs-table-selection-column {
  padding-right: 8px;
  padding-left: 8px;
  text-align: center;
}

table tr th.tbs-table-selection-column .tbs-radio-wrapper,
table tr td.tbs-table-selection-column .tbs-radio-wrapper {
  margin-right: 0;
}

table tr th.tbs-table-selection-column.tbs-table-cell-fix-left {
  z-index: 3;
}

table tr th.tbs-table-selection-column:after {
  background-color: transparent !important;
}

.tbs-table-selection {
  position: relative;
  display: inline-flex;
  flex-direction: column;
}

.tbs-table-selection-extra {
  position: absolute;
  top: 0;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s;
  margin-inline-start: 100%;
  padding-inline-start: 4px;
}

.tbs-table-selection-extra .anticon {
  color: #bfbfbf;
  font-size: 10px;
}

.tbs-table-selection-extra .anticon:hover {
  color: #a6a6a6;
}

.tbs-table-expand-icon-col {
  width: 48px;
}

.tbs-table-row-expand-icon-cell {
  text-align: center;
}

.tbs-table-row-expand-icon-cell .tbs-table-row-expand-icon {
  display: inline-flex;
  float: none;
  vertical-align: sub;
}

.tbs-table-row-indent {
  float: left;
  height: 1px;
}

.tbs-table-row-expand-icon {
  color: var(--tbs-primary-color);
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  float: left;
  box-sizing: border-box;
  width: 17px;
  height: 17px;
  padding: 0;
  color: inherit;
  line-height: 17px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  transform: scale(0.94117647);
  transition: all 0.3s;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-table-row-expand-icon:focus-visible,
.tbs-table-row-expand-icon:hover {
  color: var(--tbs-primary-color-hover);
}

.tbs-table-row-expand-icon:active {
  color: var(--tbs-primary-color-active);
}

.tbs-table-row-expand-icon:focus,
.tbs-table-row-expand-icon:hover,
.tbs-table-row-expand-icon:active {
  border-color: currentcolor;
}

.tbs-table-row-expand-icon:before,
.tbs-table-row-expand-icon:after {
  position: absolute;
  background: currentcolor;
  transition: transform 0.3s ease-out;
  content: "";
}

.tbs-table-row-expand-icon:before {
  top: 7px;
  right: 3px;
  left: 3px;
  height: 1px;
}

.tbs-table-row-expand-icon:after {
  top: 3px;
  bottom: 3px;
  left: 7px;
  width: 1px;
  transform: rotate(90deg);
}

.tbs-table-row-expand-icon-collapsed:before {
  transform: rotate(-180deg);
}

.tbs-table-row-expand-icon-collapsed:after {
  transform: rotate(0);
}

.tbs-table-row-expand-icon-spaced {
  background: transparent;
  border: 0;
  visibility: hidden;
}

.tbs-table-row-expand-icon-spaced:before,
.tbs-table-row-expand-icon-spaced:after {
  display: none;
  content: none;
}

.tbs-table-row-indent + .tbs-table-row-expand-icon {
  margin-top: 2.5005px;
  margin-right: 8px;
}

tr.tbs-table-expanded-row > td,
tr.tbs-table-expanded-row:hover > td {
  background: #fbfbfb;
}

tr.tbs-table-expanded-row .tbs-descriptions-view {
  display: flex;
}

tr.tbs-table-expanded-row .tbs-descriptions-view table {
  flex: auto;
  width: auto;
}

.tbs-table .tbs-table-expanded-row-fixed {
  position: relative;
  margin: -16px;
  padding: 16px;
}

.tbs-table-tbody > tr.tbs-table-placeholder {
  text-align: center;
}

.tbs-table-empty .tbs-table-tbody > tr.tbs-table-placeholder {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-table-tbody > tr.tbs-table-placeholder:hover > td {
  background: #fff;
}

.tbs-table-cell-fix-left,
.tbs-table-cell-fix-right {
  position: sticky !important;
  z-index: 2;
  background: #fff;
}

.tbs-table-cell-fix-left-first:after,
.tbs-table-cell-fix-left-last:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  width: 30px;
  transform: translate(100%);
  transition: box-shadow 0.3s;
  content: "";
  pointer-events: none;
}

.tbs-table-cell-fix-left-all:after {
  display: none;
}

.tbs-table-cell-fix-right-first:after,
.tbs-table-cell-fix-right-last:after {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  width: 30px;
  transform: translate(-100%);
  transition: box-shadow 0.3s;
  content: "";
  pointer-events: none;
}

.tbs-table .tbs-table-container:before,
.tbs-table .tbs-table-container:after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 30px;
  transition: box-shadow 0.3s;
  content: "";
  pointer-events: none;
}

.tbs-table .tbs-table-container:before {
  left: 0;
}

.tbs-table .tbs-table-container:after {
  right: 0;
}

.tbs-table-ping-left:not(.tbs-table-has-fix-left) > .tbs-table-container {
  position: relative;
}

.tbs-table-ping-left:not(.tbs-table-has-fix-left) > .tbs-table-container:before {
  box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.1490196078);
}

.tbs-table-ping-left .tbs-table-cell-fix-left-first:after,
.tbs-table-ping-left .tbs-table-cell-fix-left-last:after {
  box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.1490196078);
}

.tbs-table-ping-left .tbs-table-cell-fix-left-last:before {
  background-color: transparent !important;
}

.tbs-table-ping-right:not(.tbs-table-has-fix-right) > .tbs-table-container {
  position: relative;
}

.tbs-table-ping-right:not(.tbs-table-has-fix-right) > .tbs-table-container:after {
  box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.1490196078);
}

.tbs-table-ping-right .tbs-table-cell-fix-right-first:after,
.tbs-table-ping-right .tbs-table-cell-fix-right-last:after {
  box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.1490196078);
}

.tbs-table-sticky-holder {
  position: sticky;
  z-index: 3;
  background: #fff;
}

.tbs-table-sticky-scroll {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  background: rgba(204, 204, 204, 0.0588235294);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0.6;
}

.tbs-table-sticky-scroll:hover {
  transform-origin: center bottom;
}

.tbs-table-sticky-scroll-bar {
  height: 8px;
  background-color: rgba(0, 0, 0, 0.3490196078);
  border-radius: 4px;
}

.tbs-table-sticky-scroll-bar:hover,
.tbs-table-sticky-scroll-bar-active {
  background-color: rgba(0, 0, 0, 0.8);
}

@media all and (-ms-high-contrast: none) {
  .tbs-table-ping-left .tbs-table-cell-fix-left-last:after {
    box-shadow: none !important;
  }
  .tbs-table-ping-right .tbs-table-cell-fix-right-first:after {
    box-shadow: none !important;
  }
}
.tbs-table-title {
  border-radius: 2px 2px 0 0;
}

.tbs-table-title + .tbs-table-container {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tbs-table-title + .tbs-table-container table {
  border-radius: 0;
}

.tbs-table-title + .tbs-table-container table > thead > tr:first-child th:first-child {
  border-radius: 0;
}

.tbs-table-title + .tbs-table-container table > thead > tr:first-child th:last-child {
  border-radius: 0;
}

.tbs-table-container {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.tbs-table-container table > thead > tr:first-child th:first-child {
  border-top-left-radius: 2px;
}

.tbs-table-container table > thead > tr:first-child th:last-child {
  border-top-right-radius: 2px;
}

.tbs-table-footer {
  border-radius: 0 0 2px 2px;
}

.tbs-table-wrapper-rtl,
.tbs-table-rtl {
  direction: rtl;
}

.tbs-table-wrapper-rtl .tbs-table table {
  text-align: right;
}

.tbs-table-wrapper-rtl .tbs-table-thead > tr > th[colspan]:not([colspan="1"]) {
  text-align: center;
}

.tbs-table-wrapper-rtl .tbs-table-thead > tr > th:not(:last-child):not(.tbs-table-selection-column):not(.tbs-table-row-expand-icon-cell):not([colspan]):before {
  right: auto;
  left: 0;
}

.tbs-table-wrapper-rtl .tbs-table-thead > tr > th {
  text-align: right;
}

.tbs-table-tbody > tr .tbs-table-wrapper:only-child .tbs-table.tbs-table-rtl {
  margin: -16px 33px -16px -16px;
}

.tbs-table-wrapper.tbs-table-wrapper-rtl .tbs-table-pagination-left {
  justify-content: flex-end;
}

.tbs-table-wrapper.tbs-table-wrapper-rtl .tbs-table-pagination-right {
  justify-content: flex-start;
}

.tbs-table-wrapper-rtl .tbs-table-column-sorter {
  margin-right: 4px;
  margin-left: 0;
}

.tbs-table-wrapper-rtl .tbs-table-filter-column-title {
  padding: 16px 16px 16px 2.3em;
}

.tbs-table-rtl .tbs-table-thead tr th.tbs-table-column-has-sorters .tbs-table-filter-column-title {
  padding: 0 0 0 2.3em;
}

.tbs-table-wrapper-rtl .tbs-table-filter-trigger {
  margin: -4px 4px -4px -8px;
}

.tbs-dropdown-rtl .tbs-table-filter-dropdown .tbs-checkbox-wrapper + span,
.tbs-dropdown-rtl .tbs-table-filter-dropdown-submenu .tbs-checkbox-wrapper + span,
.tbs-dropdown-menu-submenu-rtl.tbs-table-filter-dropdown .tbs-checkbox-wrapper + span,
.tbs-dropdown-menu-submenu-rtl.tbs-table-filter-dropdown-submenu .tbs-checkbox-wrapper + span {
  padding-right: 8px;
  padding-left: 0;
}

.tbs-table-wrapper-rtl .tbs-table-selection {
  text-align: center;
}

.tbs-table-wrapper-rtl .tbs-table-row-indent,
.tbs-table-wrapper-rtl .tbs-table-row-expand-icon {
  float: right;
}

.tbs-table-wrapper-rtl .tbs-table-row-indent + .tbs-table-row-expand-icon {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-table-wrapper-rtl .tbs-table-row-expand-icon:after {
  transform: rotate(-90deg);
}

.tbs-table-wrapper-rtl .tbs-table-row-expand-icon-collapsed:before {
  transform: rotate(180deg);
}

.tbs-table-wrapper-rtl .tbs-table-row-expand-icon-collapsed:after {
  transform: rotate(0);
}

tbs-table,
tbs-table-title-footer,
tbs-table-inner-scroll,
tbs-table-inner-default,
tbs-table-selection {
  display: block;
}

tbs-filter-trigger {
  display: inline-flex;
}

.tbs-table-out-bordered > .tbs-table-title {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 0;
}

.tbs-table-out-bordered > .tbs-table-container {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 0;
}

.tbs-table-out-bordered > .tbs-table-footer {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 0;
}

cdk-virtual-scroll-viewport.tbs-table-body {
  overflow-y: scroll;
}

.tbs-table-hide-scrollbar {
  scrollbar-color: #fafafa #fafafa;
}

.tbs-table-hide-scrollbar::-webkit-scrollbar {
  background-color: #fafafa;
}

.tbs-table.tbs-table-small .tbs-table-hide-scrollbar {
  scrollbar-color: #fafafa #fafafa;
}

.tbs-table.tbs-table-small .tbs-table-hide-scrollbar::-webkit-scrollbar {
  background-color: transparent;
}

.tbs-table-wrapper-rtl .tbs-table thead > tr > th.tbs-table-selection-column {
  text-align: center;
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > thead > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr > td,
.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tfoot > tr > th,
.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tfoot > tr > td {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > thead > tr:not(:last-child) > th {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > thead > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr > .tbs-table-cell-fix-right-first:after,
.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tfoot > tr > .tbs-table-cell-fix-right-first:after {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr > td > .tbs-table-expanded-row-fixed {
  margin: -16px -17px;
}

.tbs-table.tbs-table-bordered > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr > td > .tbs-table-expanded-row-fixed:after {
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  content: "";
}

.tbs-table.tbs-table-bordered.tbs-table-scroll-horizontal > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr.tbs-table-expanded-row > td,
.tbs-table.tbs-table-bordered.tbs-table-scroll-horizontal > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr.tbs-table-placeholder > td {
  border-right: 0;
}

.tbs-table.tbs-table-bordered.tbs-table-middle > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr > td > .tbs-table-expanded-row-fixed {
  margin: -12px -9px;
}

.tbs-table.tbs-table-bordered.tbs-table-small > .tbs-table-container > .cdk-virtual-scroll-viewport > .cdk-virtual-scroll-content-wrapper > table > tbody > tr > td > .tbs-table-expanded-row-fixed {
  margin: -8px -9px;
}

.tbs-table-custom-column col {
  display: none;
  width: auto !important;
  min-width: auto !important;
}

.tbs-table-custom-column .tbs-table-thead .tbs-table-row,
.tbs-table-custom-column .tbs-table-thead tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.tbs-table-custom-column .tbs-table-thead .tbs-table-row th,
.tbs-table-custom-column .tbs-table-thead tr th {
  overflow: hidden;
}

.tbs-table-custom-column .tbs-table-tbody .tbs-table-row,
.tbs-table-custom-column .tbs-table-tbody tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.tbs-table-custom-column .tbs-table-tbody .tbs-table-row td,
.tbs-table-custom-column .tbs-table-tbody tr td {
  overflow: hidden;
}

.tbs-table-custom-column .tbs-table-tbody .tbs-table-row .tbs-disable-td,
.tbs-table-custom-column .tbs-table-tbody tr .tbs-disable-td {
  width: 100%;
}

.tbs-table-custom-column .tbs-table-fixed tr .tbs-table-cell-fix-left-last,
.tbs-table-custom-column .tbs-table-fixed tr .tbs-table-cell-fix-right-first {
  overflow: visible;
}

.tbs-table-custom-column .tbs-table-fixed .tbs-table-row {
  width: 100%;
}

.tbs-tabs-small > .tbs-tabs-nav .tbs-tabs-tab {
  padding: 8px 0;
  font-size: 14px;
}

.tbs-tabs-large > .tbs-tabs-nav .tbs-tabs-tab {
  padding: 16px 0;
  font-size: 16px;
}

.tbs-tabs-card.tbs-tabs-small > .tbs-tabs-nav .tbs-tabs-tab {
  padding: 6px 16px;
}

.tbs-tabs-card.tbs-tabs-large > .tbs-tabs-nav .tbs-tabs-tab {
  padding: 7px 16px 6px;
}

.tbs-tabs-rtl {
  direction: rtl;
}

.tbs-tabs-rtl .tbs-tabs-nav .tbs-tabs-tab {
  margin: 0 0 0 32px;
}

.tbs-tabs-rtl .tbs-tabs-nav .tbs-tabs-tab:last-of-type {
  margin-left: 0;
}

.tbs-tabs-rtl .tbs-tabs-nav .tbs-tabs-tab .anticon {
  margin-right: 0;
  margin-left: 12px;
}

.tbs-tabs-rtl .tbs-tabs-nav .tbs-tabs-tab .tbs-tabs-tab-remove {
  margin-right: 8px;
  margin-left: -4px;
}

.tbs-tabs-rtl .tbs-tabs-nav .tbs-tabs-tab .tbs-tabs-tab-remove .anticon {
  margin: 0;
}

.tbs-tabs-rtl.tbs-tabs-left > .tbs-tabs-nav {
  order: 1;
}

.tbs-tabs-rtl.tbs-tabs-left > .tbs-tabs-content-holder {
  order: 0;
}

.tbs-tabs-rtl.tbs-tabs-right > .tbs-tabs-nav {
  order: 0;
}

.tbs-tabs-rtl.tbs-tabs-right > .tbs-tabs-content-holder {
  order: 1;
}

.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab {
  margin-right: 2px;
  margin-left: 0;
}

.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-nav-add,
.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-nav-add,
.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-nav-add,
.tbs-tabs-rtl.tbs-tabs-card.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-nav-add {
  margin-right: 2px;
  margin-left: 0;
}

.tbs-tabs-dropdown-rtl {
  direction: rtl;
}

.tbs-tabs-dropdown-rtl .tbs-tabs-dropdown-menu-item {
  text-align: right;
}

.tbs-tabs-top,
.tbs-tabs-bottom {
  flex-direction: column;
}

.tbs-tabs-top > .tbs-tabs-nav,
.tbs-tabs-bottom > .tbs-tabs-nav,
.tbs-tabs-top > div > .tbs-tabs-nav,
.tbs-tabs-bottom > div > .tbs-tabs-nav {
  margin: 0 0 16px;
}

.tbs-tabs-top > .tbs-tabs-nav:before,
.tbs-tabs-bottom > .tbs-tabs-nav:before,
.tbs-tabs-top > div > .tbs-tabs-nav:before,
.tbs-tabs-bottom > div > .tbs-tabs-nav:before {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  content: "";
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-ink-bar {
  height: 2px;
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-ink-bar-animated,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-ink-bar-animated,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-ink-bar-animated,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-ink-bar-animated {
  transition: width 0.3s, left 0.3s, right 0.3s;
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after {
  top: 0;
  bottom: 0;
  width: 30px;
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before {
  left: 0;
  box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, 0.0784313725);
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after {
  right: 0;
  box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.0784313725);
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-left:before,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-left:before,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-left:before,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-left:before {
  opacity: 1;
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-right:after,
.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-right:after,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-right:after,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-right:after {
  opacity: 1;
}

.tbs-tabs-top > .tbs-tabs-nav:before,
.tbs-tabs-top > div > .tbs-tabs-nav:before {
  bottom: 0;
}

.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-ink-bar {
  bottom: 0;
}

.tbs-tabs-bottom > .tbs-tabs-nav,
.tbs-tabs-bottom > div > .tbs-tabs-nav {
  order: 1;
  margin-top: 16px;
  margin-bottom: 0;
}

.tbs-tabs-bottom > .tbs-tabs-nav:before,
.tbs-tabs-bottom > div > .tbs-tabs-nav:before {
  top: 0;
}

.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-ink-bar {
  top: 0;
}

.tbs-tabs-bottom > .tbs-tabs-content-holder,
.tbs-tabs-bottom > div > .tbs-tabs-content-holder {
  order: 0;
}

.tbs-tabs-left > .tbs-tabs-nav,
.tbs-tabs-right > .tbs-tabs-nav,
.tbs-tabs-left > div > .tbs-tabs-nav,
.tbs-tabs-right > div > .tbs-tabs-nav {
  flex-direction: column;
  min-width: 50px;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-tab {
  padding: 8px 24px;
  text-align: center;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab {
  margin: 16px 0 0;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-wrap,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-wrap,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-wrap,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-wrap {
  flex-direction: column;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after {
  right: 0;
  left: 0;
  height: 30px;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before {
  top: 0;
  box-shadow: inset 0 10px 8px -8px rgba(0, 0, 0, 0.0784313725);
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after {
  bottom: 0;
  box-shadow: inset 0 -10px 8px -8px rgba(0, 0, 0, 0.0784313725);
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-top:before,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-top:before,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-top:before,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-top:before {
  opacity: 1;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-bottom:after,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-bottom:after,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-bottom:after,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-wrap.tbs-tabs-nav-wrap-ping-bottom:after {
  opacity: 1;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-ink-bar {
  width: 2px;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-ink-bar-animated,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-ink-bar-animated,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-ink-bar-animated,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-ink-bar-animated {
  transition: height 0.3s, top 0.3s;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-list,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-list,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-list,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-list,
.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-nav-operations,
.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-nav-operations,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-nav-operations,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-nav-operations {
  flex: 1 0 auto;
  flex-direction: column;
}

.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-ink-bar {
  right: 0;
}

.tbs-tabs-left > .tbs-tabs-content-holder,
.tbs-tabs-left > div > .tbs-tabs-content-holder {
  margin-left: -1px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-tabs-left > .tbs-tabs-content-holder > .tbs-tabs-content > .tbs-tabs-tabpane,
.tbs-tabs-left > div > .tbs-tabs-content-holder > .tbs-tabs-content > .tbs-tabs-tabpane {
  padding-left: 24px;
}

.tbs-tabs-right > .tbs-tabs-nav,
.tbs-tabs-right > div > .tbs-tabs-nav {
  order: 1;
}

.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-ink-bar {
  left: 0;
}

.tbs-tabs-right > .tbs-tabs-content-holder,
.tbs-tabs-right > div > .tbs-tabs-content-holder {
  order: 0;
  margin-right: -1px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-tabs-right > .tbs-tabs-content-holder > .tbs-tabs-content > .tbs-tabs-tabpane,
.tbs-tabs-right > div > .tbs-tabs-content-holder > .tbs-tabs-content > .tbs-tabs-tabpane {
  padding-right: 24px;
}

.tbs-tabs-dropdown {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  display: block;
}

.tbs-tabs-dropdown-hidden {
  display: none;
}

.tbs-tabs-dropdown-menu {
  max-height: 200px;
  margin: 0;
  padding: 4px 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.tbs-tabs-dropdown-menu-item {
  display: flex;
  align-items: center;
  min-width: 120px;
  margin: 0;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-tabs-dropdown-menu-item > span {
  flex: 1;
  white-space: nowrap;
}

.tbs-tabs-dropdown-menu-item-remove {
  flex: none;
  margin-left: 12px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.tbs-tabs-dropdown-menu-item-remove:hover {
  color: var(--tbs-primary-5);
}

.tbs-tabs-dropdown-menu-item:hover {
  background: var(--tbs-neutral-400);
}

.tbs-tabs-dropdown-menu-item-disabled,
.tbs-tabs-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.2509803922);
  background: transparent;
  cursor: not-allowed;
}

.tbs-tabs-card > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-card > div > .tbs-tabs-nav .tbs-tabs-tab {
  margin: 0;
  padding: 8px 16px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-tabs-card > .tbs-tabs-nav .tbs-tabs-tab-active,
.tbs-tabs-card > div > .tbs-tabs-nav .tbs-tabs-tab-active {
  color: var(--tbs-primary-color);
  background: #fff;
}

.tbs-tabs-card > .tbs-tabs-nav .tbs-tabs-ink-bar,
.tbs-tabs-card > div > .tbs-tabs-nav .tbs-tabs-ink-bar {
  visibility: hidden;
}

.tbs-tabs-card.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab {
  margin-left: 2px;
}

.tbs-tabs-card.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-tab {
  border-radius: 2px 2px 0 0;
}

.tbs-tabs-card.tbs-tabs-top > .tbs-tabs-nav .tbs-tabs-tab-active,
.tbs-tabs-card.tbs-tabs-top > div > .tbs-tabs-nav .tbs-tabs-tab-active {
  border-bottom-color: #fff;
}

.tbs-tabs-card.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-tab {
  border-radius: 0 0 2px 2px;
}

.tbs-tabs-card.tbs-tabs-bottom > .tbs-tabs-nav .tbs-tabs-tab-active,
.tbs-tabs-card.tbs-tabs-bottom > div > .tbs-tabs-nav .tbs-tabs-tab-active {
  border-top-color: #fff;
}

.tbs-tabs-card.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-tab + .tbs-tabs-tab {
  margin-top: 2px;
}

.tbs-tabs-card.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-tab {
  border-radius: 2px 0 0 2px;
}

.tbs-tabs-card.tbs-tabs-left > .tbs-tabs-nav .tbs-tabs-tab-active,
.tbs-tabs-card.tbs-tabs-left > div > .tbs-tabs-nav .tbs-tabs-tab-active {
  border-right-color: #fff;
}

.tbs-tabs-card.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-tab,
.tbs-tabs-card.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-tab {
  border-radius: 0 2px 2px 0;
}

.tbs-tabs-card.tbs-tabs-right > .tbs-tabs-nav .tbs-tabs-tab-active,
.tbs-tabs-card.tbs-tabs-right > div > .tbs-tabs-nav .tbs-tabs-tab-active {
  border-left-color: #fff;
}

.tbs-tabs {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: flex;
}

.tbs-tabs > .tbs-tabs-nav,
.tbs-tabs > div > .tbs-tabs-nav {
  position: relative;
  display: flex;
  flex: none;
  align-items: center;
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-wrap,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-wrap {
  position: relative;
  display: inline-block;
  display: flex;
  flex: auto;
  align-self: stretch;
  overflow: hidden;
  white-space: nowrap;
  transform: translate(0);
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:before,
.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-wrap:after,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:after {
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  content: "";
  pointer-events: none;
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-list,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-list {
  position: relative;
  display: flex;
  transition: transform 0.3s;
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-operations,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-operations {
  display: flex;
  align-self: stretch;
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-operations-hidden,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-operations-hidden {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-more,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-more {
  position: relative;
  padding: 8px 16px;
  background: transparent;
  border: 0;
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-more:after,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-more:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  transform: translateY(100%);
  content: "";
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-add,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-add {
  min-width: 40px;
  margin-left: 2px;
  padding: 0 8px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px 2px 0 0;
  outline: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-add:hover,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-add:hover {
  color: var(--tbs-primary-5);
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-add:active,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-add:active,
.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-add:focus,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-add:focus {
  color: var(--tbs-primary-7);
}

.tbs-tabs-extra-content {
  flex: none;
}

.tbs-tabs-centered > .tbs-tabs-nav .tbs-tabs-nav-wrap:not([class*=tbs-tabs-nav-wrap-ping]),
.tbs-tabs-centered > div > .tbs-tabs-nav .tbs-tabs-nav-wrap:not([class*=tbs-tabs-nav-wrap-ping]) {
  justify-content: center;
}

.tbs-tabs-ink-bar {
  position: absolute;
  background: var(--tbs-primary-color);
  pointer-events: none;
}

.tbs-tabs-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

.tbs-tabs-tab-btn:focus,
.tbs-tabs-tab-remove:focus,
.tbs-tabs-tab-btn:active,
.tbs-tabs-tab-remove:active {
  color: var(--tbs-primary-7);
}

.tbs-tabs-tab-btn {
  outline: none;
  transition: all 0.3s;
}

.tbs-tabs-tab-remove {
  flex: none;
  margin-right: -4px;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-tabs-tab-remove:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-tabs-tab:hover {
  color: var(--tbs-primary-5);
}

.tbs-tabs-tab.tbs-tabs-tab-active .tbs-tabs-tab-btn {
  color: var(--tbs-primary-color);
  text-shadow: 0 0 0.25px currentcolor;
}

.tbs-tabs-tab.tbs-tabs-tab-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-tabs-tab.tbs-tabs-tab-disabled .tbs-tabs-tab-btn:focus,
.tbs-tabs-tab.tbs-tabs-tab-disabled .tbs-tabs-tab-remove:focus,
.tbs-tabs-tab.tbs-tabs-tab-disabled .tbs-tabs-tab-btn:active,
.tbs-tabs-tab.tbs-tabs-tab-disabled .tbs-tabs-tab-remove:active {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-tabs-tab .tbs-tabs-tab-remove .anticon {
  margin: 0;
}

.tbs-tabs-tab .anticon {
  margin-right: 12px;
}

.tbs-tabs-tab + .tbs-tabs-tab {
  margin: 0 0 0 32px;
}

.tbs-tabs-content {
  position: relative;
  width: 100%;
}

.tbs-tabs-content-holder {
  flex: auto;
  min-width: 0;
  min-height: 0;
}

.tbs-tabs-tabpane {
  outline: none;
}

.tbs-tabs-tabpane-hidden {
  display: none;
}

.tbs-tabs-switch-appear,
.tbs-tabs-switch-enter {
  transition: none;
}

.tbs-tabs-switch-appear-start,
.tbs-tabs-switch-enter-start {
  opacity: 0;
}

.tbs-tabs-switch-appear-active,
.tbs-tabs-switch-enter-active {
  opacity: 1;
  transition: opacity 0.3s;
}

.tbs-tabs-switch-leave {
  position: absolute;
  transition: none;
  inset: 0;
}

.tbs-tabs-switch-leave-start {
  opacity: 1;
}

.tbs-tabs-switch-leave-active {
  opacity: 0;
  transition: opacity 0.3s;
}

.tbs-tabs-dropdown-menu-item a[tbs-tab-link] {
  position: relative;
}

.tbs-tabs-tab-btn {
  background-color: unset;
  border: none;
  cursor: pointer;
}

.tbs-tabs-tab a[tbs-tab-link]:before {
  position: absolute;
  inset: 0;
  background-color: transparent;
  content: "";
}

.tbs-tabs-tab a[tbs-tab-link] ~ * {
  position: relative;
}

.tbs-tabs-dropdown.tbs-dropdown .tbs-dropdown-menu {
  max-height: 200px;
  margin: 0;
  padding: 4px 0;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 2px;
  outline: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.tbs-tabs-dropdown.tbs-dropdown .tbs-dropdown-menu-item {
  min-width: 120px;
  margin: 0;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-tabs-dropdown.tbs-dropdown .tbs-dropdown-menu-item:hover {
  background: var(--tbs-neutral-400);
}

.tbs-tabs-dropdown.tbs-dropdown .tbs-dropdown-menu-item-disabled,
.tbs-tabs-dropdown.tbs-dropdown .tbs-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.2509803922);
  background: transparent;
  cursor: not-allowed;
}

.tbs-tabs-dropdown.tbs-dropdown .tbs-dropdown-menu-item-disabled a,
.tbs-tabs-dropdown.tbs-dropdown .tbs-dropdown-menu-item-disabled:hover a {
  color: rgba(0, 0, 0, 0.2509803922);
  pointer-events: none;
}

.tbs-tabs-rtl .tbs-tabs-rtl-tab-next {
  right: auto;
  left: 2px;
}

.tbs-tabs-tab-disabled a {
  color: rgba(0, 0, 0, 0.2509803922);
  pointer-events: none;
}

.tbs-tabs > .tbs-tabs-nav .tbs-tabs-nav-add,
.tbs-tabs > div > .tbs-tabs-nav .tbs-tabs-nav-add {
  min-height: 40px;
}

.tbs-timeline {
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  font-feature-settings: "tnum";
  margin: 0;
  padding: 0;
  list-style: none;
}

.tbs-timeline-item {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  font-size: 14px;
  list-style: none;
}

.tbs-timeline-item-tail {
  position: absolute;
  top: 10px;
  left: 4px;
  height: calc(100% - 10px);
  border-left: 2px solid rgba(0, 0, 0, 0.06);
}

.tbs-timeline-item-pending .tbs-timeline-item-head {
  font-size: 12px;
  background-color: transparent;
}

.tbs-timeline-item-pending .tbs-timeline-item-tail {
  display: none;
}

.tbs-timeline-item-head {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 100px;
}

.tbs-timeline-item-head-blue {
  color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
}

.tbs-timeline-item-head-red {
  color: var(--tbs-error-color);
  border-color: var(--tbs-error-color);
}

.tbs-timeline-item-head-green {
  color: var(--tbs-success-color);
  border-color: var(--tbs-success-color);
}

.tbs-timeline-item-head-gray {
  color: rgba(0, 0, 0, 0.2509803922);
  border-color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-timeline-item-head-custom {
  position: absolute;
  top: 5.5px;
  left: 5px;
  width: auto;
  height: auto;
  margin-top: 0;
  padding: 3px 1px;
  line-height: 1;
  text-align: center;
  border: 0;
  border-radius: 0;
  transform: translate(-50%, -50%);
}

.tbs-timeline-item-content {
  position: relative;
  top: -7.001px;
  margin: 0 0 0 26px;
  word-break: break-word;
}

.tbs-timeline-item-last > .tbs-timeline-item-tail {
  display: none;
}

.tbs-timeline-item-last > .tbs-timeline-item-content {
  min-height: 48px;
}

.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-tail,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-tail,
.tbs-timeline.tbs-timeline-label .tbs-timeline-item-tail,
.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head,
.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head,
.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head-custom,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head-custom,
.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head-custom {
  left: 50%;
}

.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head,
.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head {
  margin-left: -4px;
}

.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head-custom,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head-custom,
.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head-custom {
  margin-left: 1px;
}

.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-left .tbs-timeline-item-content,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-left .tbs-timeline-item-content,
.tbs-timeline.tbs-timeline-label .tbs-timeline-item-left .tbs-timeline-item-content {
  left: calc(50% - 4px);
  width: calc(50% - 14px);
  text-align: left;
}

.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-right .tbs-timeline-item-content,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-content,
.tbs-timeline.tbs-timeline-label .tbs-timeline-item-right .tbs-timeline-item-content {
  width: calc(50% - 12px);
  margin: 0;
  text-align: right;
}

.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-tail,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-head,
.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-head-custom {
  left: calc(100% - 6px);
}

.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-content {
  width: calc(100% - 18px);
}

.tbs-timeline.tbs-timeline-pending .tbs-timeline-item-last .tbs-timeline-item-tail {
  display: block;
  height: calc(100% - 14px);
  border-left: 2px dotted rgba(0, 0, 0, 0.06);
}

.tbs-timeline.tbs-timeline-reverse .tbs-timeline-item-last .tbs-timeline-item-tail {
  display: none;
}

.tbs-timeline.tbs-timeline-reverse .tbs-timeline-item-pending .tbs-timeline-item-tail {
  top: 15px;
  display: block;
  height: calc(100% - 15px);
  border-left: 2px dotted rgba(0, 0, 0, 0.06);
}

.tbs-timeline.tbs-timeline-reverse .tbs-timeline-item-pending .tbs-timeline-item-content {
  min-height: 48px;
}

.tbs-timeline.tbs-timeline-label .tbs-timeline-item-label {
  position: absolute;
  top: -7.001px;
  width: calc(50% - 12px);
  text-align: right;
}

.tbs-timeline.tbs-timeline-label .tbs-timeline-item-right .tbs-timeline-item-label {
  left: calc(50% + 14px);
  width: calc(50% - 14px);
  text-align: left;
}

.tbs-timeline-rtl {
  direction: rtl;
}

.tbs-timeline-rtl .tbs-timeline-item-tail {
  right: 4px;
  left: auto;
  border-right: 2px solid rgba(0, 0, 0, 0.06);
  border-left: none;
}

.tbs-timeline-rtl .tbs-timeline-item-head-custom {
  right: 5px;
  left: auto;
  transform: translate(50%, -50%);
}

.tbs-timeline-rtl .tbs-timeline-item-content {
  margin: 0 18px 0 0;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-tail,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-tail,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-tail,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head-custom,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head-custom,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head-custom {
  right: 50%;
  left: auto;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head {
  margin-right: -4px;
  margin-left: 0;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-head-custom,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-head-custom,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-head-custom {
  margin-right: 1px;
  margin-left: 0;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-left .tbs-timeline-item-content,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-left .tbs-timeline-item-content,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-left .tbs-timeline-item-content {
  right: calc(50% - 4px);
  left: auto;
  text-align: right;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-alternate .tbs-timeline-item-right .tbs-timeline-item-content,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-content,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-right .tbs-timeline-item-content {
  text-align: left;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-tail,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-head,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-head-custom {
  right: 0;
  left: auto;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-right .tbs-timeline-item-right .tbs-timeline-item-content {
  width: 100%;
  margin-right: 18px;
  text-align: right;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-pending .tbs-timeline-item-last .tbs-timeline-item-tail,
.tbs-timeline-rtl.tbs-timeline.tbs-timeline-reverse .tbs-timeline-item-pending .tbs-timeline-item-tail {
  border-right: 2px dotted rgba(0, 0, 0, 0.06);
  border-left: none;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-label {
  text-align: left;
}

.tbs-timeline-rtl.tbs-timeline.tbs-timeline-label .tbs-timeline-item-right .tbs-timeline-item-label {
  right: calc(50% + 14px);
  text-align: right;
}

.tbs-transfer-customize-list .tbs-transfer-list {
  flex: 1 1 50%;
  width: auto;
  height: auto;
  min-height: 200px;
}

.tbs-transfer-customize-list .tbs-table-wrapper .tbs-table-small {
  border: 0;
  border-radius: 0;
}

.tbs-transfer-customize-list .tbs-table-wrapper .tbs-table-small .tbs-table-selection-column {
  width: 40px;
  min-width: 40px;
}

.tbs-transfer-customize-list .tbs-table-wrapper .tbs-table-small > .tbs-table-content > .tbs-table-body > table > .tbs-table-thead > tr > th {
  background: #fafafa;
}

.tbs-transfer-customize-list .tbs-table-wrapper .tbs-table-small > .tbs-table-content .tbs-table-row:last-child td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-transfer-customize-list .tbs-table-wrapper .tbs-table-small .tbs-table-body {
  margin: 0;
}

.tbs-transfer-customize-list .tbs-table-wrapper .tbs-table-pagination.tbs-pagination {
  margin: 16px 0 4px;
}

.tbs-transfer-customize-list .tbs-input[disabled] {
  background-color: transparent;
}

.tbs-transfer-status-error .tbs-transfer-list {
  border-color: var(--tbs-error-color);
}

.tbs-transfer-status-error .tbs-transfer-list-search:not([disabled]) {
  border-color: var(--tbs-neutral-600);
}

.tbs-transfer-status-error .tbs-transfer-list-search:not([disabled]):hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-transfer-status-error .tbs-transfer-list-search:not([disabled]):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-transfer-status-error .tbs-transfer-list-search:not([disabled]):focus {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-transfer-status-error .tbs-transfer-list-search:not([disabled]):focus {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-transfer-status-warning .tbs-transfer-list {
  border-color: var(--tbs-warning-color);
}

.tbs-transfer-status-warning .tbs-transfer-list-search:not([disabled]) {
  border-color: var(--tbs-neutral-600);
}

.tbs-transfer-status-warning .tbs-transfer-list-search:not([disabled]):hover {
  border-color: var(--tbs-primary-5);
  border-right-width: 1px;
}

.tbs-input-rtl .tbs-transfer-status-warning .tbs-transfer-list-search:not([disabled]):hover {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-transfer-status-warning .tbs-transfer-list-search:not([disabled]):focus {
  border-color: var(--tbs-primary-color-hover);
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
  border-right-width: 1px;
  outline: 0;
}

.tbs-input-rtl .tbs-transfer-status-warning .tbs-transfer-list-search:not([disabled]):focus {
  border-right-width: 0;
  border-left-width: 1px !important;
}

.tbs-transfer {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  display: flex;
  align-items: stretch;
}

.tbs-transfer-disabled .tbs-transfer-list {
  background: var(--tbs-neutral-400);
}

.tbs-transfer-list {
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 200px;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
}

.tbs-transfer-list-with-pagination {
  width: 250px;
  height: auto;
}

.tbs-transfer-list-search .anticon-search {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-transfer-list-header {
  display: flex;
  flex: none;
  align-items: center;
  height: 40px;
  padding: 8px 12px 9px;
  color: rgba(0, 0, 0, 0.8509803922);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px 2px 0 0;
}

.tbs-transfer-list-header > *:not(:last-child) {
  margin-right: 4px;
}

.tbs-transfer-list-header > * {
  flex: none;
}

.tbs-transfer-list-header-title {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-align: right;
  text-overflow: ellipsis;
}

.tbs-transfer-list-header-dropdown {
  font-size: 10px;
  transform: translateY(10%);
  cursor: pointer;
}

.tbs-transfer-list-header-dropdown[disabled] {
  cursor: not-allowed;
}

.tbs-transfer-list-body {
  display: flex;
  flex: auto;
  flex-direction: column;
  overflow: hidden;
  font-size: 14px;
}

.tbs-transfer-list-body-search-wrapper {
  position: relative;
  flex: none;
  padding: 12px;
}

.tbs-transfer-list-content {
  flex: auto;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.tbs-transfer-list-content-item {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  line-height: 20px;
  transition: all 0.3s;
}

.tbs-transfer-list-content-item > *:not(:last-child) {
  margin-right: 8px;
}

.tbs-transfer-list-content-item > * {
  flex: none;
}

.tbs-transfer-list-content-item-text {
  flex: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tbs-transfer-list-content-item-remove {
  position: relative;
  color: var(--tbs-neutral-600);
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-transfer-list-content-item-remove:hover {
  color: var(--tbs-primary-color-hover);
}

.tbs-transfer-list-content-item-remove:after {
  position: absolute;
  inset: -6px -50%;
  content: "";
}

.tbs-transfer-list-content-item:not(.tbs-transfer-list-content-item-disabled):hover {
  background-color: var(--tbs-neutral-400);
  cursor: pointer;
}

.tbs-transfer-list-content-item:not(.tbs-transfer-list-content-item-disabled).tbs-transfer-list-content-item-checked:hover {
  background-color: var(--tbs-primary-color-active-deprecated-d-02);
}

.tbs-transfer-list-content-show-remove .tbs-transfer-list-content-item:not(.tbs-transfer-list-content-item-disabled):hover {
  background: transparent;
  cursor: default;
}

.tbs-transfer-list-content-item-checked {
  background-color: var(--tbs-primary-1);
}

.tbs-transfer-list-content-item-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-transfer-list-pagination {
  padding: 8px 0;
  text-align: right;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-transfer-list-body-not-found {
  flex: none;
  width: 100%;
  margin: auto 0;
  color: rgba(0, 0, 0, 0.2509803922);
  text-align: center;
}

.tbs-transfer-list-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tbs-transfer-operation {
  display: flex;
  flex: none;
  flex-direction: column;
  align-self: center;
  margin: 0 8px;
  vertical-align: middle;
}

.tbs-transfer-operation .tbs-btn {
  display: block;
}

.tbs-transfer-operation .tbs-btn:first-child {
  margin-bottom: 4px;
}

.tbs-transfer-operation .tbs-btn .anticon {
  font-size: 12px;
}

.tbs-transfer .tbs-empty-image {
  max-height: -2px;
}

.tbs-transfer-rtl {
  direction: rtl;
}

.tbs-transfer-rtl .tbs-transfer-list-search {
  padding-right: 8px;
  padding-left: 24px;
}

.tbs-transfer-rtl .tbs-transfer-list-search-action {
  right: auto;
  left: 12px;
}

.tbs-transfer-rtl .tbs-transfer-list-header > *:not(:last-child) {
  margin-right: 0;
  margin-left: 4px;
}

.tbs-transfer-rtl .tbs-transfer-list-header {
  right: 0;
  left: auto;
}

.tbs-transfer-rtl .tbs-transfer-list-header-title {
  text-align: left;
}

.tbs-transfer-rtl .tbs-transfer-list-content-item > *:not(:last-child) {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-transfer-rtl .tbs-transfer-list-pagination {
  text-align: left;
}

.tbs-transfer-rtl .tbs-transfer-list-footer {
  right: 0;
  left: auto;
}

.tbs-typography {
  color: rgba(0, 0, 0, 0.8509803922);
  word-break: break-word;
}

.tbs-typography.tbs-typography-secondary {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-typography.tbs-typography-success {
  color: var(--tbs-success-color);
}

.tbs-typography.tbs-typography-warning {
  color: var(--tbs-warning-color);
}

.tbs-typography.tbs-typography-danger {
  color: var(--tbs-error-color);
}

a.tbs-typography.tbs-typography-danger:active,
a.tbs-typography.tbs-typography-danger:focus {
  color: var(--tbs-error-color-active);
}

a.tbs-typography.tbs-typography-danger:hover {
  color: var(--tbs-error-color-hover);
}

.tbs-typography.tbs-typography-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
  -webkit-user-select: none;
  user-select: none;
}

div.tbs-typography,
.tbs-typography p {
  margin-bottom: 1em;
}

h1.tbs-typography,
div.tbs-typography-h1,
div.tbs-typography-h1 > textarea,
.tbs-typography h1 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.23;
}

h2.tbs-typography,
div.tbs-typography-h2,
div.tbs-typography-h2 > textarea,
.tbs-typography h2 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.35;
}

h3.tbs-typography,
div.tbs-typography-h3,
div.tbs-typography-h3 > textarea,
.tbs-typography h3 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.35;
}

h4.tbs-typography,
div.tbs-typography-h4,
div.tbs-typography-h4 > textarea,
.tbs-typography h4 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}

h5.tbs-typography,
div.tbs-typography-h5,
div.tbs-typography-h5 > textarea,
.tbs-typography h5 {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

.tbs-typography + h1.tbs-typography,
.tbs-typography + h2.tbs-typography,
.tbs-typography + h3.tbs-typography,
.tbs-typography + h4.tbs-typography,
.tbs-typography + h5.tbs-typography {
  margin-top: 1.2em;
}

.tbs-typography div + h1,
.tbs-typography ul + h1,
.tbs-typography li + h1,
.tbs-typography p + h1,
.tbs-typography h1 + h1,
.tbs-typography h2 + h1,
.tbs-typography h3 + h1,
.tbs-typography h4 + h1,
.tbs-typography h5 + h1,
.tbs-typography div + h2,
.tbs-typography ul + h2,
.tbs-typography li + h2,
.tbs-typography p + h2,
.tbs-typography h1 + h2,
.tbs-typography h2 + h2,
.tbs-typography h3 + h2,
.tbs-typography h4 + h2,
.tbs-typography h5 + h2,
.tbs-typography div + h3,
.tbs-typography ul + h3,
.tbs-typography li + h3,
.tbs-typography p + h3,
.tbs-typography h1 + h3,
.tbs-typography h2 + h3,
.tbs-typography h3 + h3,
.tbs-typography h4 + h3,
.tbs-typography h5 + h3,
.tbs-typography div + h4,
.tbs-typography ul + h4,
.tbs-typography li + h4,
.tbs-typography p + h4,
.tbs-typography h1 + h4,
.tbs-typography h2 + h4,
.tbs-typography h3 + h4,
.tbs-typography h4 + h4,
.tbs-typography h5 + h4,
.tbs-typography div + h5,
.tbs-typography ul + h5,
.tbs-typography li + h5,
.tbs-typography p + h5,
.tbs-typography h1 + h5,
.tbs-typography h2 + h5,
.tbs-typography h3 + h5,
.tbs-typography h4 + h5,
.tbs-typography h5 + h5 {
  margin-top: 1.2em;
}

a.tbs-typography-ellipsis,
span.tbs-typography-ellipsis {
  display: inline-block;
  max-width: 100%;
}

a.tbs-typography,
.tbs-typography a {
  color: var(--tbs-primary-color);
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
}

a.tbs-typography:focus-visible,
.tbs-typography a:focus-visible,
a.tbs-typography:hover,
.tbs-typography a:hover {
  color: var(--tbs-primary-color-hover);
}

a.tbs-typography:active,
.tbs-typography a:active {
  color: var(--tbs-primary-color-active);
}

a.tbs-typography:active,
.tbs-typography a:active,
a.tbs-typography:hover,
.tbs-typography a:hover {
  text-decoration: none;
}

a.tbs-typography[disabled],
.tbs-typography a[disabled],
a.tbs-typography.tbs-typography-disabled,
.tbs-typography a.tbs-typography-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

a.tbs-typography[disabled]:active,
.tbs-typography a[disabled]:active,
a.tbs-typography.tbs-typography-disabled:active,
.tbs-typography a.tbs-typography-disabled:active,
a.tbs-typography[disabled]:hover,
.tbs-typography a[disabled]:hover,
a.tbs-typography.tbs-typography-disabled:hover,
.tbs-typography a.tbs-typography-disabled:hover {
  color: rgba(0, 0, 0, 0.2509803922);
}

a.tbs-typography[disabled]:active,
.tbs-typography a[disabled]:active,
a.tbs-typography.tbs-typography-disabled:active,
.tbs-typography a.tbs-typography-disabled:active {
  pointer-events: none;
}

.tbs-typography code {
  margin: 0 0.2em;
  padding: 0.2em 0.4em 0.1em;
  font-size: 85%;
  background: rgba(150, 150, 150, 0.1019607843);
  border: 1px solid rgba(100, 100, 100, 0.2);
  border-radius: 3px;
}

.tbs-typography kbd {
  margin: 0 0.2em;
  padding: 0.15em 0.4em 0.1em;
  font-size: 90%;
  background: rgba(150, 150, 150, 0.0588235294);
  border: 1px solid rgba(100, 100, 100, 0.2);
  border-bottom-width: 2px;
  border-radius: 3px;
}

.tbs-typography mark {
  padding: 0;
  background-color: #ffe58f;
}

.tbs-typography u,
.tbs-typography ins {
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

.tbs-typography s,
.tbs-typography del {
  text-decoration: line-through;
}

.tbs-typography strong {
  font-weight: 600;
}

.tbs-typography-expand,
.tbs-typography-edit,
.tbs-typography-copy {
  color: var(--tbs-primary-color);
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  margin-left: 4px;
}

.tbs-typography-expand:focus-visible,
.tbs-typography-edit:focus-visible,
.tbs-typography-copy:focus-visible,
.tbs-typography-expand:hover,
.tbs-typography-edit:hover,
.tbs-typography-copy:hover {
  color: var(--tbs-primary-color-hover);
}

.tbs-typography-expand:active,
.tbs-typography-edit:active,
.tbs-typography-copy:active {
  color: var(--tbs-primary-color-active);
}

.tbs-typography-copy-success,
.tbs-typography-copy-success:hover,
.tbs-typography-copy-success:focus {
  color: var(--tbs-success-color);
}

.tbs-typography-edit-content {
  position: relative;
}

div.tbs-typography-edit-content {
  left: -12px;
  margin-top: -5px;
  margin-bottom: calc(1em - 5px);
}

.tbs-typography-edit-content-confirm {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  pointer-events: none;
}

.tbs-typography-edit-content textarea {
  height: 1em;
  margin: 0 !important;
  -moz-transition: none;
}

.tbs-typography ul,
.tbs-typography ol {
  margin: 0 0 1em;
  padding: 0;
}

.tbs-typography ul li,
.tbs-typography ol li {
  margin: 0 0 0 20px;
  padding: 0 0 0 4px;
}

.tbs-typography ul {
  list-style-type: circle;
}

.tbs-typography ul ul {
  list-style-type: disc;
}

.tbs-typography ol {
  list-style-type: decimal;
}

.tbs-typography pre,
.tbs-typography blockquote {
  margin: 1em 0;
}

.tbs-typography pre {
  padding: 0.4em 0.6em;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: rgba(150, 150, 150, 0.1019607843);
  border: 1px solid rgba(100, 100, 100, 0.2);
  border-radius: 3px;
}

.tbs-typography pre code {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  background: transparent;
  border: 0;
}

.tbs-typography blockquote {
  padding: 0 0 0 0.6em;
  border-left: 4px solid rgba(100, 100, 100, 0.2);
  opacity: 0.85;
}

.tbs-typography-single-line {
  white-space: nowrap;
}

.tbs-typography-ellipsis-single-line {
  overflow: hidden;
  text-overflow: ellipsis;
}

a.tbs-typography-ellipsis-single-line,
span.tbs-typography-ellipsis-single-line {
  vertical-align: bottom;
}

.tbs-typography-ellipsis-multiple-line {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tbs-typography-rtl {
  direction: rtl;
}

.tbs-typography-rtl .tbs-typography-expand,
.tbs-typography-rtl .tbs-typography-edit,
.tbs-typography-rtl .tbs-typography-copy {
  margin-right: 4px;
  margin-left: 0;
}

.tbs-typography-rtl .tbs-typography-expand {
  float: left;
}

div.tbs-typography-edit-content.tbs-typography-rtl {
  right: -12px;
  left: auto;
}

.tbs-typography-rtl .tbs-typography-edit-content-confirm {
  right: auto;
  left: 10px;
}

.tbs-typography-rtl.tbs-typography ul li,
.tbs-typography-rtl.tbs-typography ol li {
  margin: 0 20px 0 0;
  padding: 0 4px 0 0;
}

.tbs-upload {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  outline: 0;
}

.tbs-upload p {
  margin: 0;
}

.tbs-upload-btn {
  display: block;
  width: 100%;
  outline: none;
}

.tbs-upload input[type=file] {
  cursor: pointer;
}

.tbs-upload.tbs-upload-select {
  display: inline-block;
}

.tbs-upload.tbs-upload-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-upload.tbs-upload-select-picture-card {
  width: 104px;
  height: 104px;
  margin-right: 8px;
  margin-bottom: 8px;
  text-align: center;
  vertical-align: top;
  background-color: #fafafa;
  border: 1px dashed var(--tbs-neutral-600);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.tbs-upload.tbs-upload-select-picture-card > .tbs-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.tbs-upload.tbs-upload-select-picture-card:hover {
  border-color: var(--tbs-primary-color);
}

.tbs-upload-disabled.tbs-upload.tbs-upload-select-picture-card:hover {
  border-color: var(--tbs-neutral-600);
}

.tbs-upload.tbs-upload-drag {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed var(--tbs-neutral-600);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.tbs-upload.tbs-upload-drag .tbs-upload {
  padding: 16px 0;
}

.tbs-upload.tbs-upload-drag.tbs-upload-drag-hover:not(.tbs-upload-disabled) {
  border-color: var(--tbs-primary-7);
}

.tbs-upload.tbs-upload-drag.tbs-upload-disabled {
  cursor: not-allowed;
}

.tbs-upload.tbs-upload-drag .tbs-upload-btn {
  display: table;
  height: 100%;
}

.tbs-upload.tbs-upload-drag .tbs-upload-drag-container {
  display: table-cell;
  vertical-align: middle;
}

.tbs-upload.tbs-upload-drag:not(.tbs-upload-disabled):hover {
  border-color: var(--tbs-primary-5);
}

.tbs-upload.tbs-upload-drag p.tbs-upload-drag-icon {
  margin-bottom: 20px;
}

.tbs-upload.tbs-upload-drag p.tbs-upload-drag-icon .anticon {
  color: var(--tbs-primary-5);
  font-size: 48px;
}

.tbs-upload.tbs-upload-drag p.tbs-upload-text {
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 16px;
}

.tbs-upload.tbs-upload-drag p.tbs-upload-hint {
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
}

.tbs-upload.tbs-upload-drag .anticon-plus {
  color: rgba(0, 0, 0, 0.2509803922);
  font-size: 30px;
  transition: all 0.3s;
}

.tbs-upload.tbs-upload-drag .anticon-plus:hover,
.tbs-upload.tbs-upload-drag:hover .anticon-plus {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-upload-picture-card-wrapper {
  display: inline-block;
  width: 100%;
}

.tbs-upload-picture-card-wrapper:before {
  display: table;
  content: "";
}

.tbs-upload-picture-card-wrapper:after {
  display: table;
  clear: both;
  content: "";
}

.tbs-upload-list {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  list-style: none;
  font-feature-settings: "tnum";
  line-height: 1.5715;
}

.tbs-upload-list:before {
  display: table;
  content: "";
}

.tbs-upload-list:after {
  display: table;
  clear: both;
  content: "";
}

.tbs-upload-list-item {
  position: relative;
  height: 22.001px;
  margin-top: 8px;
  font-size: 14px;
}

.tbs-upload-list-item-name {
  display: inline-block;
  width: 100%;
  padding-left: 22px;
  overflow: hidden;
  line-height: 1.5715;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tbs-upload-list-item-card-actions {
  position: absolute;
  right: 0;
}

.tbs-upload-list-item-card-actions-btn {
  opacity: 0;
}

.tbs-upload-list-item-card-actions-btn.tbs-btn-sm {
  height: 22.001px;
  line-height: 1;
  vertical-align: top;
}

.tbs-upload-list-item-card-actions.picture {
  top: 22px;
  line-height: 0;
}

.tbs-upload-list-item-card-actions-btn:focus,
.tbs-upload-list-item-card-actions.picture .tbs-upload-list-item-card-actions-btn {
  opacity: 1;
}

.tbs-upload-list-item-card-actions .anticon {
  color: rgba(0, 0, 0, 0.4509803922);
  transition: all 0.3s;
}

.tbs-upload-list-item-card-actions:hover .anticon {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-upload-list-item-info {
  height: 100%;
  transition: background-color 0.3s;
}

.tbs-upload-list-item-info > span {
  display: block;
  width: 100%;
  height: 100%;
}

.tbs-upload-list-item-info .anticon-loading .anticon,
.tbs-upload-list-item-info .tbs-upload-text-icon .anticon {
  position: absolute;
  top: 5px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
}

.tbs-upload-list-item:hover .tbs-upload-list-item-info {
  background-color: var(--tbs-neutral-400);
}

.tbs-upload-list-item:hover .tbs-upload-list-item-card-actions-btn {
  opacity: 1;
}

.tbs-upload-list-item-error,
.tbs-upload-list-item-error .tbs-upload-text-icon > .anticon,
.tbs-upload-list-item-error .tbs-upload-list-item-name {
  color: var(--tbs-error-color);
}

.tbs-upload-list-item-error .tbs-upload-list-item-card-actions .anticon {
  color: var(--tbs-error-color);
}

.tbs-upload-list-item-error .tbs-upload-list-item-card-actions-btn {
  opacity: 1;
}

.tbs-upload-list-item-progress {
  position: absolute;
  bottom: -12px;
  width: 100%;
  padding-left: 26px;
  font-size: 14px;
  line-height: 0;
}

.tbs-upload-list-picture .tbs-upload-list-item,
.tbs-upload-list-picture-card .tbs-upload-list-item {
  position: relative;
  height: 66px;
  padding: 8px;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
}

.tbs-upload-list-picture .tbs-upload-list-item:hover,
.tbs-upload-list-picture-card .tbs-upload-list-item:hover {
  background: transparent;
}

.tbs-upload-list-picture .tbs-upload-list-item-error,
.tbs-upload-list-picture-card .tbs-upload-list-item-error {
  border-color: var(--tbs-error-color);
}

.tbs-upload-list-picture .tbs-upload-list-item:hover .tbs-upload-list-item-info,
.tbs-upload-list-picture-card .tbs-upload-list-item:hover .tbs-upload-list-item-info {
  background: transparent;
}

.tbs-upload-list-picture .tbs-upload-list-item-uploading,
.tbs-upload-list-picture-card .tbs-upload-list-item-uploading {
  border-style: dashed;
}

.tbs-upload-list-picture .tbs-upload-list-item-thumbnail,
.tbs-upload-list-picture-card .tbs-upload-list-item-thumbnail {
  width: 48px;
  height: 48px;
  line-height: 60px;
  text-align: center;
  opacity: 0.8;
}

.tbs-upload-list-picture .tbs-upload-list-item-thumbnail .anticon,
.tbs-upload-list-picture-card .tbs-upload-list-item-thumbnail .anticon {
  font-size: 26px;
}

.tbs-upload-list-picture .tbs-upload-list-item-error .tbs-upload-list-item-thumbnail .anticon svg path[fill="#e6f7ff"],
.tbs-upload-list-picture-card .tbs-upload-list-item-error .tbs-upload-list-item-thumbnail .anticon svg path[fill="#e6f7ff"] {
  fill: var(--tbs-error-color-deprecated-bg);
}

.tbs-upload-list-picture .tbs-upload-list-item-error .tbs-upload-list-item-thumbnail .anticon svg path[fill="#1890ff"],
.tbs-upload-list-picture-card .tbs-upload-list-item-error .tbs-upload-list-item-thumbnail .anticon svg path[fill="#1890ff"] {
  fill: var(--tbs-error-color);
}

.tbs-upload-list-picture .tbs-upload-list-item-icon,
.tbs-upload-list-picture-card .tbs-upload-list-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  transform: translate(-50%, -50%);
}

.tbs-upload-list-picture .tbs-upload-list-item-icon .anticon,
.tbs-upload-list-picture-card .tbs-upload-list-item-icon .anticon {
  font-size: 26px;
}

.tbs-upload-list-picture .tbs-upload-list-item-image,
.tbs-upload-list-picture-card .tbs-upload-list-item-image {
  max-width: 100%;
}

.tbs-upload-list-picture .tbs-upload-list-item-thumbnail img,
.tbs-upload-list-picture-card .tbs-upload-list-item-thumbnail img {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.tbs-upload-list-picture .tbs-upload-list-item-name,
.tbs-upload-list-picture-card .tbs-upload-list-item-name {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 0 0 8px;
  padding-right: 8px;
  padding-left: 48px;
  overflow: hidden;
  line-height: 44px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.3s;
}

.tbs-upload-list-picture .tbs-upload-list-item-uploading .tbs-upload-list-item-name,
.tbs-upload-list-picture-card .tbs-upload-list-item-uploading .tbs-upload-list-item-name {
  margin-bottom: 12px;
}

.tbs-upload-list-picture .tbs-upload-list-item-progress,
.tbs-upload-list-picture-card .tbs-upload-list-item-progress {
  bottom: 14px;
  width: calc(100% - 24px);
  margin-top: 0;
  padding-left: 56px;
}

.tbs-upload-list-picture-card-container {
  display: inline-block;
  width: 104px;
  height: 104px;
  margin: 0 8px 8px 0;
  vertical-align: top;
}

.tbs-upload-list-picture-card .tbs-upload-list-item {
  height: 100%;
  margin: 0;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-info {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-info:before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  opacity: 0;
  transition: all 0.3s;
  content: " ";
}

.tbs-upload-list-picture-card .tbs-upload-list-item:hover .tbs-upload-list-item-info:before {
  opacity: 1;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-actions .anticon-eye,
.tbs-upload-list-picture-card .tbs-upload-list-item-actions .anticon-download,
.tbs-upload-list-picture-card .tbs-upload-list-item-actions .anticon-delete {
  z-index: 10;
  width: 16px;
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.8509803922);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-actions .anticon-eye:hover,
.tbs-upload-list-picture-card .tbs-upload-list-item-actions .anticon-download:hover,
.tbs-upload-list-picture-card .tbs-upload-list-item-actions .anticon-delete:hover {
  color: #fff;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-info:hover + .tbs-upload-list-item-actions,
.tbs-upload-list-picture-card .tbs-upload-list-item-actions:hover {
  opacity: 1;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-thumbnail,
.tbs-upload-list-picture-card .tbs-upload-list-item-thumbnail img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-name {
  display: none;
  margin: 8px 0 0;
  padding: 0;
  line-height: 1.5715;
  text-align: center;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-file + .tbs-upload-list-item-name {
  position: absolute;
  bottom: 10px;
  display: block;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-uploading.tbs-upload-list-item {
  background-color: #fafafa;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-uploading .tbs-upload-list-item-info {
  height: auto;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-uploading .tbs-upload-list-item-info:before,
.tbs-upload-list-picture-card .tbs-upload-list-item-uploading .tbs-upload-list-item-info .anticon-eye,
.tbs-upload-list-picture-card .tbs-upload-list-item-uploading .tbs-upload-list-item-info .anticon-delete {
  display: none;
}

.tbs-upload-list-picture-card .tbs-upload-list-item-progress {
  bottom: 32px;
  width: calc(100% - 14px);
  padding-left: 0;
}

.tbs-upload-list-text-container,
.tbs-upload-list-picture-container {
  transition: opacity 0.3s, height 0.3s;
}

.tbs-upload-list-text-container:before,
.tbs-upload-list-picture-container:before {
  display: table;
  width: 0;
  height: 0;
  content: "";
}

.tbs-upload-list-text-container .tbs-upload-span,
.tbs-upload-list-picture-container .tbs-upload-span {
  display: block;
  flex: auto;
}

.tbs-upload-list-text .tbs-upload-span,
.tbs-upload-list-picture .tbs-upload-span {
  display: flex;
  align-items: center;
}

.tbs-upload-list-text .tbs-upload-span > *,
.tbs-upload-list-picture .tbs-upload-span > * {
  flex: none;
}

.tbs-upload-list-text .tbs-upload-list-item-name,
.tbs-upload-list-picture .tbs-upload-list-item-name {
  flex: auto;
  margin: 0;
  padding: 0 8px;
}

.tbs-upload-list-text .tbs-upload-list-item-card-actions,
.tbs-upload-list-picture .tbs-upload-list-item-card-actions,
.tbs-upload-list-text .tbs-upload-text-icon .anticon {
  position: static;
}

.tbs-upload-list .tbs-upload-animate-inline-appear,
.tbs-upload-list .tbs-upload-animate-inline-enter,
.tbs-upload-list .tbs-upload-animate-inline-leave {
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  animation-fill-mode: forwards;
}

.tbs-upload-list .tbs-upload-animate-inline-appear,
.tbs-upload-list .tbs-upload-animate-inline-enter {
  animation-name: uploadAnimateInlineIn;
}

.tbs-upload-list .tbs-upload-animate-inline-leave {
  animation-name: uploadAnimateInlineOut;
}

@keyframes uploadAnimateInlineIn {
  0% {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateInlineOut {
  to {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
.tbs-upload-rtl {
  direction: rtl;
}

.tbs-upload-rtl.tbs-upload.tbs-upload-select-picture-card {
  margin-right: auto;
  margin-left: 8px;
}

.tbs-upload-list-rtl {
  direction: rtl;
}

.tbs-upload-list-rtl .tbs-upload-list-item-list-type-text:hover .tbs-upload-list-item-name-icon-count-1 {
  padding-right: 22px;
  padding-left: 14px;
}

.tbs-upload-list-rtl .tbs-upload-list-item-list-type-text:hover .tbs-upload-list-item-name-icon-count-2 {
  padding-right: 22px;
  padding-left: 28px;
}

.tbs-upload-list-rtl .tbs-upload-list-item-name {
  padding-right: 22px;
  padding-left: 0;
}

.tbs-upload-list-rtl .tbs-upload-list-item-name-icon-count-1 {
  padding-left: 14px;
}

.tbs-upload-list-rtl .tbs-upload-list-item-card-actions {
  right: auto;
  left: 0;
}

.tbs-upload-list-rtl .tbs-upload-list-item-card-actions .anticon {
  padding-right: 0;
  padding-left: 5px;
}

.tbs-upload-list-rtl .tbs-upload-list-item-info {
  padding: 0 4px 0 12px;
}

.tbs-upload-list-rtl .tbs-upload-list-item-error .tbs-upload-list-item-card-actions .anticon {
  padding-right: 0;
  padding-left: 5px;
}

.tbs-upload-list-rtl .tbs-upload-list-item-progress {
  padding-right: 26px;
  padding-left: 0;
}

.tbs-upload-list-picture .tbs-upload-list-item-info,
.tbs-upload-list-picture-card .tbs-upload-list-item-info {
  padding: 0;
}

.tbs-upload-list-rtl.tbs-upload-list-picture .tbs-upload-list-item-thumbnail,
.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-thumbnail {
  right: 8px;
  left: auto;
}

.tbs-upload-list-rtl.tbs-upload-list-picture .tbs-upload-list-item-icon,
.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-icon {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%);
}

.tbs-upload-list-rtl.tbs-upload-list-picture .tbs-upload-list-item-name,
.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-name {
  margin: 0 8px 0 0;
  padding-right: 48px;
  padding-left: 8px;
}

.tbs-upload-list-rtl.tbs-upload-list-picture .tbs-upload-list-item-name-icon-count-1,
.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-name-icon-count-1 {
  padding-right: 48px;
  padding-left: 18px;
}

.tbs-upload-list-rtl.tbs-upload-list-picture .tbs-upload-list-item-name-icon-count-2,
.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-name-icon-count-2 {
  padding-right: 48px;
  padding-left: 36px;
}

.tbs-upload-list-rtl.tbs-upload-list-picture .tbs-upload-list-item-progress,
.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-progress {
  padding-right: 0;
  padding-left: 0;
}

.tbs-upload-list-rtl .tbs-upload-list-picture-card-container {
  margin: 0 0 8px 8px;
}

.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-actions {
  right: 50%;
  left: auto;
  transform: translate(50%, -50%);
}

.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item-file + .tbs-upload-list-item-name {
  margin: 8px 0 0;
  padding: 0;
}

.tbs-upload-list-rtl.tbs-upload-list-picture-card .tbs-upload-list-item {
  float: unset;
}

.tbs-select-auto-complete {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
}

.tbs-select-auto-complete .tbs-select-clear {
  right: 13px;
}

.tbs-select-dropdown-hidden {
  display: none;
}

.tbs-cascader-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}

.tbs-cascader-checkbox-wrapper:hover .tbs-cascader-checkbox-inner,
.tbs-cascader-checkbox:hover .tbs-cascader-checkbox-inner,
.tbs-cascader-checkbox-input:focus + .tbs-cascader-checkbox-inner {
  border-color: var(--tbs-primary-color);
}

.tbs-cascader-checkbox-checked:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tbs-primary-color);
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: "";
}

.tbs-cascader-checkbox:hover:after,
.tbs-cascader-checkbox-wrapper:hover .tbs-cascader-checkbox:after {
  visibility: visible;
}

.tbs-cascader-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}

.tbs-cascader-checkbox-inner:after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: " ";
}

.tbs-cascader-checkbox-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.tbs-cascader-checkbox-checked .tbs-cascader-checkbox-inner:after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: " ";
}

.tbs-cascader-checkbox-checked .tbs-cascader-checkbox-inner {
  background-color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
}

.tbs-cascader-checkbox-disabled {
  cursor: not-allowed;
}

.tbs-cascader-checkbox-disabled.tbs-cascader-checkbox-checked .tbs-cascader-checkbox-inner:after {
  border-color: rgba(0, 0, 0, 0.2509803922);
  animation-name: none;
}

.tbs-cascader-checkbox-disabled .tbs-cascader-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}

.tbs-cascader-checkbox-disabled .tbs-cascader-checkbox-inner {
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600) !important;
}

.tbs-cascader-checkbox-disabled .tbs-cascader-checkbox-inner:after {
  border-color: var(--tbs-neutral-400);
  border-collapse: separate;
  animation-name: none;
}

.tbs-cascader-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-cascader-checkbox-disabled:hover:after,
.tbs-cascader-checkbox-wrapper:hover .tbs-cascader-checkbox-disabled:after {
  visibility: hidden;
}

.tbs-cascader-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}

.tbs-cascader-checkbox-wrapper:after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: " ";
}

.tbs-cascader-checkbox-wrapper.tbs-cascader-checkbox-wrapper-disabled {
  cursor: not-allowed;
}

.tbs-cascader-checkbox-wrapper + .tbs-cascader-checkbox-wrapper {
  margin-left: 8px;
}

.tbs-cascader-checkbox-wrapper.tbs-cascader-checkbox-wrapper-in-form-item input[type=checkbox] {
  width: 14px;
  height: 14px;
}

.tbs-cascader-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}

.tbs-cascader-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-block;
}

.tbs-cascader-checkbox-group-item {
  margin-right: 8px;
}

.tbs-cascader-checkbox-group-item:last-child {
  margin-right: 0;
}

.tbs-cascader-checkbox-group-item + .tbs-cascader-checkbox-group-item {
  margin-left: 0;
}

.tbs-cascader-checkbox-indeterminate .tbs-cascader-checkbox-inner {
  background-color: #fff;
  border-color: var(--tbs-neutral-600);
}

.tbs-cascader-checkbox-indeterminate .tbs-cascader-checkbox-inner:after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--tbs-primary-color);
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: " ";
}

.tbs-cascader-checkbox-indeterminate.tbs-cascader-checkbox-disabled .tbs-cascader-checkbox-inner:after {
  background-color: rgba(0, 0, 0, 0.2509803922);
  border-color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-cascader-checkbox-rtl {
  direction: rtl;
}

.tbs-cascader-checkbox-group-rtl .tbs-cascader-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-cascader-checkbox-group-rtl .tbs-cascader-checkbox-group-item:last-child {
  margin-left: 0 !important;
}

.tbs-cascader-checkbox-group-rtl .tbs-cascader-checkbox-group-item + .tbs-cascader-checkbox-group-item {
  margin-left: 8px;
}

.tbs-cascader {
  width: 184px;
}

.tbs-cascader-checkbox {
  top: 0;
  margin-right: 8px;
}

.tbs-cascader-menus {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.tbs-cascader-menus.tbs-cascader-menu-empty .tbs-cascader-menu {
  width: 100%;
  height: auto;
}

.tbs-cascader-menu {
  flex-grow: 1;
  min-width: 111px;
  height: 180px;
  margin: -4px 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.tbs-cascader-menu-item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 5px 12px;
  overflow: hidden;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-cascader-menu-item:hover {
  background: var(--tbs-neutral-400);
}

.tbs-cascader-menu-item-disabled {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-cascader-menu-item-disabled:hover {
  background: transparent;
}

.tbs-cascader-menu-empty .tbs-cascader-menu-item {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: default;
  pointer-events: none;
}

.tbs-cascader-menu-item-active:not(.tbs-cascader-menu-item-disabled),
.tbs-cascader-menu-item-active:not(.tbs-cascader-menu-item-disabled):hover {
  font-weight: 600;
  background-color: var(--tbs-primary-1);
}

.tbs-cascader-menu-item-content {
  flex: auto;
}

.tbs-cascader-menu-item-expand .tbs-cascader-menu-item-expand-icon,
.tbs-cascader-menu-item-loading-icon {
  margin-left: 4px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 10px;
}

.tbs-cascader-menu-item-disabled.tbs-cascader-menu-item-expand .tbs-cascader-menu-item-expand-icon,
.tbs-cascader-menu-item-disabled.tbs-cascader-menu-item-loading-icon {
  color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-cascader-menu-item-keyword {
  color: #ff4d4f;
}

.tbs-cascader-compact-item:not(.tbs-cascader-compact-last-item):not(.tbs-cascader-compact-item-rtl) {
  margin-right: -1px;
}

.tbs-cascader-compact-item:not(.tbs-cascader-compact-last-item).tbs-cascader-compact-item-rtl {
  margin-left: -1px;
}

.tbs-cascader-compact-item:hover,
.tbs-cascader-compact-item:focus,
.tbs-cascader-compact-item:active {
  z-index: 2;
}

.tbs-cascader-compact-item[disabled] {
  z-index: 0;
}

.tbs-cascader-compact-item:not(.tbs-cascader-compact-first-item):not(.tbs-cascader-compact-last-item).tbs-cascader {
  border-radius: 0;
}

.tbs-cascader-compact-item.tbs-cascader.tbs-cascader-compact-first-item:not(.tbs-cascader-compact-last-item):not(.tbs-cascader-compact-item-rtl) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-cascader-compact-item.tbs-cascader.tbs-cascader-compact-last-item:not(.tbs-cascader-compact-first-item):not(.tbs-cascader-compact-item-rtl) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-cascader-compact-item.tbs-cascader.tbs-cascader-compact-item-rtl.tbs-cascader-compact-first-item:not(.tbs-cascader-compact-last-item) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tbs-cascader-compact-item.tbs-cascader.tbs-cascader-compact-item-rtl.tbs-cascader-compact-last-item:not(.tbs-cascader-compact-first-item) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.tbs-cascader-rtl .tbs-cascader-menu-item-expand-icon,
.tbs-cascader-rtl .tbs-cascader-menu-item-loading-icon {
  margin-right: 4px;
  margin-left: 0;
}

.tbs-cascader-rtl .tbs-cascader-checkbox {
  top: 0;
  margin-right: 0;
  margin-left: 8px;
}

.tbs-cascader-menus {
  position: relative;
  margin-top: 2px;
  margin-bottom: 2px;
}

tbs-tree-virtual-scroll-view {
  position: relative;
  display: block;
  overflow: auto;
  transform: translateZ(0);
  will-change: scroll-position;
  contain: strict;
  -webkit-overflow-scrolling: touch;
}

tbs-tree-virtual-scroll-view .tbs-tree-list,
tbs-tree-virtual-scroll-view .tbs-tree-list-holder {
  height: 100%;
}

tbs-tree-virtual-scroll-view .tbs-tree-switcher + .tbs-tree-switcher.tbs-tree-leaf-line-icon,
tbs-tree-view .tbs-tree-switcher + .tbs-tree-switcher.tbs-tree-leaf-line-icon {
  display: none;
}

tbs-tree-view .tbs-tree-list-holder-inner {
  display: flex;
  flex-direction: column;
}

@keyframes tbs-tree-node-fx-do-not-use {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tbs-tree.tbs-tree-directory .tbs-tree-treenode {
  position: relative;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode:before {
  position: absolute;
  inset: 0 0 4px;
  transition: background-color 0.3s;
  content: "";
  pointer-events: none;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode:hover:before {
  background: var(--tbs-neutral-400);
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode > * {
  z-index: 1;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode .tbs-tree-switcher {
  transition: color 0.3s;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode .tbs-tree-node-content-wrapper {
  border-radius: 0;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode .tbs-tree-node-content-wrapper:hover {
  background: transparent;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode .tbs-tree-node-content-wrapper.tbs-tree-node-selected {
  color: #fff;
  background: transparent;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode-selected:hover:before,
.tbs-tree.tbs-tree-directory .tbs-tree-treenode-selected:before {
  background: var(--tbs-primary-color);
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode-selected .tbs-tree-switcher {
  color: #fff;
}

.tbs-tree.tbs-tree-directory .tbs-tree-treenode-selected .tbs-tree-node-content-wrapper {
  color: #fff;
  background: transparent;
}

.tbs-tree-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}

.tbs-tree-checkbox-wrapper:hover .tbs-tree-checkbox-inner,
.tbs-tree-checkbox:hover .tbs-tree-checkbox-inner,
.tbs-tree-checkbox-input:focus + .tbs-tree-checkbox-inner {
  border-color: var(--tbs-primary-color);
}

.tbs-tree-checkbox-checked:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tbs-primary-color);
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: "";
}

.tbs-tree-checkbox:hover:after,
.tbs-tree-checkbox-wrapper:hover .tbs-tree-checkbox:after {
  visibility: visible;
}

.tbs-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}

.tbs-tree-checkbox-inner:after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: " ";
}

.tbs-tree-checkbox-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.tbs-tree-checkbox-checked .tbs-tree-checkbox-inner:after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: " ";
}

.tbs-tree-checkbox-checked .tbs-tree-checkbox-inner {
  background-color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
}

.tbs-tree-checkbox-disabled {
  cursor: not-allowed;
}

.tbs-tree-checkbox-disabled.tbs-tree-checkbox-checked .tbs-tree-checkbox-inner:after {
  border-color: rgba(0, 0, 0, 0.2509803922);
  animation-name: none;
}

.tbs-tree-checkbox-disabled .tbs-tree-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}

.tbs-tree-checkbox-disabled .tbs-tree-checkbox-inner {
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600) !important;
}

.tbs-tree-checkbox-disabled .tbs-tree-checkbox-inner:after {
  border-color: var(--tbs-neutral-400);
  border-collapse: separate;
  animation-name: none;
}

.tbs-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-tree-checkbox-disabled:hover:after,
.tbs-tree-checkbox-wrapper:hover .tbs-tree-checkbox-disabled:after {
  visibility: hidden;
}

.tbs-tree-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}

.tbs-tree-checkbox-wrapper:after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: " ";
}

.tbs-tree-checkbox-wrapper.tbs-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}

.tbs-tree-checkbox-wrapper + .tbs-tree-checkbox-wrapper {
  margin-left: 8px;
}

.tbs-tree-checkbox-wrapper.tbs-tree-checkbox-wrapper-in-form-item input[type=checkbox] {
  width: 14px;
  height: 14px;
}

.tbs-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}

.tbs-tree-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-block;
}

.tbs-tree-checkbox-group-item {
  margin-right: 8px;
}

.tbs-tree-checkbox-group-item:last-child {
  margin-right: 0;
}

.tbs-tree-checkbox-group-item + .tbs-tree-checkbox-group-item {
  margin-left: 0;
}

.tbs-tree-checkbox-indeterminate .tbs-tree-checkbox-inner {
  background-color: #fff;
  border-color: var(--tbs-neutral-600);
}

.tbs-tree-checkbox-indeterminate .tbs-tree-checkbox-inner:after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--tbs-primary-color);
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: " ";
}

.tbs-tree-checkbox-indeterminate.tbs-tree-checkbox-disabled .tbs-tree-checkbox-inner:after {
  background-color: rgba(0, 0, 0, 0.2509803922);
  border-color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-tree-checkbox-rtl {
  direction: rtl;
}

.tbs-tree-checkbox-group-rtl .tbs-tree-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-tree-checkbox-group-rtl .tbs-tree-checkbox-group-item:last-child {
  margin-left: 0 !important;
}

.tbs-tree-checkbox-group-rtl .tbs-tree-checkbox-group-item + .tbs-tree-checkbox-group-item {
  margin-left: 8px;
}

.tbs-tree {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  background: #fff;
  border-radius: 2px;
  transition: background-color 0.3s;
}

.tbs-tree-focused:not(:hover):not(.tbs-tree-active-focused) {
  background: var(--tbs-primary-1);
}

.tbs-tree-list-holder-inner {
  align-items: flex-start;
}

.tbs-tree.tbs-tree-block-node .tbs-tree-list-holder-inner {
  align-items: stretch;
}

.tbs-tree.tbs-tree-block-node .tbs-tree-list-holder-inner .tbs-tree-node-content-wrapper {
  flex: auto;
}

.tbs-tree.tbs-tree-block-node .tbs-tree-list-holder-inner .tbs-tree-treenode.dragging {
  position: relative;
}

.tbs-tree.tbs-tree-block-node .tbs-tree-list-holder-inner .tbs-tree-treenode.dragging:after {
  position: absolute;
  inset: 0 0 4px;
  border: 1px solid var(--tbs-primary-color);
  opacity: 0;
  animation: tbs-tree-node-fx-do-not-use 0.3s;
  animation-play-state: running;
  animation-fill-mode: forwards;
  content: "";
  pointer-events: none;
}

.tbs-tree .tbs-tree-treenode {
  display: flex;
  align-items: flex-start;
  padding: 0 0 4px;
  outline: none;
}

.tbs-tree .tbs-tree-treenode-disabled .tbs-tree-node-content-wrapper {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-tree .tbs-tree-treenode-disabled .tbs-tree-node-content-wrapper:hover {
  background: transparent;
}

.tbs-tree .tbs-tree-treenode-active .tbs-tree-node-content-wrapper {
  background: var(--tbs-neutral-400);
}

.tbs-tree .tbs-tree-treenode:not(.tbs-tree .tbs-tree-treenode-disabled).filter-node .tbs-tree-title {
  color: inherit;
  font-weight: 500;
}

.tbs-tree .tbs-tree-treenode-draggable .tbs-tree-draggable-icon {
  width: 24px;
  line-height: 24px;
  text-align: center;
  visibility: visible;
  opacity: 0.2;
  transition: opacity 0.3s;
}

.tbs-tree-treenode:hover .tbs-tree .tbs-tree-treenode-draggable .tbs-tree-draggable-icon {
  opacity: 0.45;
}

.tbs-tree .tbs-tree-treenode-draggable.tbs-tree-treenode-disabled .tbs-tree-draggable-icon {
  visibility: hidden;
}

.tbs-tree-indent {
  align-self: stretch;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-tree-indent-unit {
  display: inline-block;
  width: 24px;
}

.tbs-tree-draggable-icon {
  visibility: hidden;
}

.tbs-tree-switcher {
  position: relative;
  flex: none;
  align-self: stretch;
  width: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-tree-switcher .tbs-tree-switcher-icon,
.tbs-tree-switcher .tbs-select-tree-switcher-icon {
  display: inline-block;
  font-size: 10px;
  vertical-align: baseline;
}

.tbs-tree-switcher .tbs-tree-switcher-icon svg,
.tbs-tree-switcher .tbs-select-tree-switcher-icon svg {
  transition: transform 0.3s;
}

.tbs-tree-switcher-noop {
  cursor: default;
}

.tbs-tree-switcher_close .tbs-tree-switcher-icon svg {
  transform: rotate(-90deg);
}

.tbs-tree-switcher-loading-icon {
  color: var(--tbs-primary-color);
}

.tbs-tree-switcher-leaf-line {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.tbs-tree-switcher-leaf-line:before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  margin-left: -1px;
  border-right: 1px solid var(--tbs-neutral-600);
  content: " ";
}

.tbs-tree-switcher-leaf-line:after {
  position: absolute;
  width: 10px;
  height: 14px;
  border-bottom: 1px solid var(--tbs-neutral-600);
  content: " ";
}

.tbs-tree-checkbox {
  top: initial;
  margin: 4px 8px 0 0;
}

.tbs-tree .tbs-tree-node-content-wrapper {
  position: relative;
  z-index: auto;
  min-height: 24px;
  margin: 0;
  padding: 0 4px;
  color: inherit;
  line-height: 24px;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s;
}

.tbs-tree .tbs-tree-node-content-wrapper:hover {
  background-color: var(--tbs-neutral-400);
}

.tbs-tree .tbs-tree-node-content-wrapper.tbs-tree-node-selected {
  background-color: var(--tbs-primary-2);
}

.tbs-tree .tbs-tree-node-content-wrapper .tbs-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  vertical-align: top;
}

.tbs-tree .tbs-tree-node-content-wrapper .tbs-tree-iconEle:empty {
  display: none;
}

.tbs-tree-unselectable .tbs-tree-node-content-wrapper:hover {
  background-color: transparent;
}

.tbs-tree-node-content-wrapper {
  line-height: 24px;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-tree-node-content-wrapper .tbs-tree-drop-indicator {
  position: absolute;
  z-index: 1;
  height: 2px;
  background-color: var(--tbs-primary-color);
  border-radius: 1px;
  pointer-events: none;
}

.tbs-tree-node-content-wrapper .tbs-tree-drop-indicator:after {
  position: absolute;
  top: -3px;
  left: -6px;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid var(--tbs-primary-color);
  border-radius: 50%;
  content: "";
}

.tbs-tree .tbs-tree-treenode.drop-container > [draggable] {
  box-shadow: 0 0 0 2px var(--tbs-primary-color);
}

.tbs-tree-show-line .tbs-tree-indent-unit {
  position: relative;
  height: 100%;
}

.tbs-tree-show-line .tbs-tree-indent-unit:before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  border-right: 1px solid var(--tbs-neutral-600);
  content: "";
}

.tbs-tree-show-line .tbs-tree-indent-unit-end:before {
  display: none;
}

.tbs-tree-show-line .tbs-tree-switcher {
  background: #fff;
}

.tbs-tree-show-line .tbs-tree-switcher-line-icon {
  vertical-align: -0.15em;
}

.tbs-tree .tbs-tree-treenode-leaf-last .tbs-tree-switcher-leaf-line:before {
  top: auto !important;
  bottom: auto !important;
  height: 14px !important;
}

.tbs-tree-rtl {
  direction: rtl;
}

.tbs-tree-rtl .tbs-tree-node-content-wrapper[draggable=true] .tbs-tree-drop-indicator:after {
  right: -6px;
  left: unset;
}

.tbs-tree .tbs-tree-treenode-rtl {
  direction: rtl;
}

.tbs-tree-rtl .tbs-tree-switcher_close .tbs-tree-switcher-icon svg {
  transform: rotate(90deg);
}

.tbs-tree-rtl.tbs-tree-show-line .tbs-tree-indent-unit:before {
  right: auto;
  left: -13px;
  border-right: none;
  border-left: 1px solid var(--tbs-neutral-600);
}

.tbs-tree-rtl .tbs-tree-checkbox,
.tbs-tree-select-dropdown-rtl .tbs-select-tree-checkbox {
  margin: 4px 0 0 8px;
}

.font-highlight {
  color: #ff4d4f;
}

.tbs-tree-child-tree {
  overflow: hidden;
}

tbs-tree {
  display: block;
}

.tbs-select-tree-checkbox {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: relative;
  top: 0.2em;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  cursor: pointer;
}

.tbs-select-tree-checkbox-wrapper:hover .tbs-select-tree-checkbox-inner,
.tbs-select-tree-checkbox:hover .tbs-select-tree-checkbox-inner,
.tbs-select-tree-checkbox-input:focus + .tbs-select-tree-checkbox-inner {
  border-color: var(--tbs-primary-color);
}

.tbs-select-tree-checkbox-checked:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tbs-primary-color);
  border-radius: 2px;
  visibility: hidden;
  animation: antCheckboxEffect 0.36s ease-in-out;
  animation-fill-mode: backwards;
  content: "";
}

.tbs-select-tree-checkbox:hover:after,
.tbs-select-tree-checkbox-wrapper:hover .tbs-select-tree-checkbox:after {
  visibility: visible;
}

.tbs-select-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  direction: ltr;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-800);
  border-radius: 2px;
  border-collapse: separate;
  transition: all 0.3s;
}

.tbs-select-tree-checkbox-inner:after {
  position: absolute;
  top: 50%;
  left: 21.5%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: " ";
}

.tbs-select-tree-checkbox-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.tbs-select-tree-checkbox-checked .tbs-select-tree-checkbox-inner:after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: " ";
}

.tbs-select-tree-checkbox-checked .tbs-select-tree-checkbox-inner {
  background-color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
}

.tbs-select-tree-checkbox-disabled {
  cursor: not-allowed;
}

.tbs-select-tree-checkbox-disabled.tbs-select-tree-checkbox-checked .tbs-select-tree-checkbox-inner:after {
  border-color: rgba(0, 0, 0, 0.2509803922);
  animation-name: none;
}

.tbs-select-tree-checkbox-disabled .tbs-select-tree-checkbox-input {
  cursor: not-allowed;
  pointer-events: none;
}

.tbs-select-tree-checkbox-disabled .tbs-select-tree-checkbox-inner {
  background-color: var(--tbs-neutral-400);
  border-color: var(--tbs-neutral-600) !important;
}

.tbs-select-tree-checkbox-disabled .tbs-select-tree-checkbox-inner:after {
  border-color: var(--tbs-neutral-400);
  border-collapse: separate;
  animation-name: none;
}

.tbs-select-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-select-tree-checkbox-disabled:hover:after,
.tbs-select-tree-checkbox-wrapper:hover .tbs-select-tree-checkbox-disabled:after {
  visibility: hidden;
}

.tbs-select-tree-checkbox-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
  line-height: unset;
  cursor: pointer;
}

.tbs-select-tree-checkbox-wrapper:after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: " ";
}

.tbs-select-tree-checkbox-wrapper.tbs-select-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}

.tbs-select-tree-checkbox-wrapper + .tbs-select-tree-checkbox-wrapper {
  margin-left: 8px;
}

.tbs-select-tree-checkbox-wrapper.tbs-select-tree-checkbox-wrapper-in-form-item input[type=checkbox] {
  width: 14px;
  height: 14px;
}

.tbs-select-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}

.tbs-select-tree-checkbox-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-block;
}

.tbs-select-tree-checkbox-group-item {
  margin-right: 8px;
}

.tbs-select-tree-checkbox-group-item:last-child {
  margin-right: 0;
}

.tbs-select-tree-checkbox-group-item + .tbs-select-tree-checkbox-group-item {
  margin-left: 0;
}

.tbs-select-tree-checkbox-indeterminate .tbs-select-tree-checkbox-inner {
  background-color: #fff;
  border-color: var(--tbs-neutral-600);
}

.tbs-select-tree-checkbox-indeterminate .tbs-select-tree-checkbox-inner:after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--tbs-primary-color);
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: " ";
}

.tbs-select-tree-checkbox-indeterminate.tbs-select-tree-checkbox-disabled .tbs-select-tree-checkbox-inner:after {
  background-color: rgba(0, 0, 0, 0.2509803922);
  border-color: rgba(0, 0, 0, 0.2509803922);
}

.tbs-select-tree-checkbox-rtl {
  direction: rtl;
}

.tbs-select-tree-checkbox-group-rtl .tbs-select-tree-checkbox-group-item {
  margin-right: 0;
  margin-left: 8px;
}

.tbs-select-tree-checkbox-group-rtl .tbs-select-tree-checkbox-group-item:last-child {
  margin-left: 0 !important;
}

.tbs-select-tree-checkbox-group-rtl .tbs-select-tree-checkbox-group-item + .tbs-select-tree-checkbox-group-item {
  margin-left: 8px;
}

.tbs-tree-select-dropdown {
  padding: 8px 4px;
}

.tbs-tree-select-dropdown-rtl {
  direction: rtl;
}

.tbs-tree-select-dropdown .tbs-select-tree {
  border-radius: 0;
}

.tbs-tree-select-dropdown .tbs-select-tree-list-holder-inner {
  align-items: stretch;
}

.tbs-tree-select-dropdown .tbs-select-tree-list-holder-inner .tbs-select-tree-treenode .tbs-select-tree-node-content-wrapper {
  flex: auto;
}

.tbs-select-tree {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  background: #fff;
  border-radius: 2px;
  transition: background-color 0.3s;
}

.tbs-select-tree-focused:not(:hover):not(.tbs-select-tree-active-focused) {
  background: var(--tbs-primary-1);
}

.tbs-select-tree-list-holder-inner {
  align-items: flex-start;
}

.tbs-select-tree.tbs-select-tree-block-node .tbs-select-tree-list-holder-inner {
  align-items: stretch;
}

.tbs-select-tree.tbs-select-tree-block-node .tbs-select-tree-list-holder-inner .tbs-select-tree-node-content-wrapper {
  flex: auto;
}

.tbs-select-tree.tbs-select-tree-block-node .tbs-select-tree-list-holder-inner .tbs-select-tree-treenode.dragging {
  position: relative;
}

.tbs-select-tree.tbs-select-tree-block-node .tbs-select-tree-list-holder-inner .tbs-select-tree-treenode.dragging:after {
  position: absolute;
  inset: 0 0 4px;
  border: 1px solid var(--tbs-primary-color);
  opacity: 0;
  animation: tbs-tree-node-fx-do-not-use 0.3s;
  animation-play-state: running;
  animation-fill-mode: forwards;
  content: "";
  pointer-events: none;
}

.tbs-select-tree .tbs-select-tree-treenode {
  display: flex;
  align-items: flex-start;
  padding: 0 0 4px;
  outline: none;
}

.tbs-select-tree .tbs-select-tree-treenode-disabled .tbs-select-tree-node-content-wrapper {
  color: rgba(0, 0, 0, 0.2509803922);
  cursor: not-allowed;
}

.tbs-select-tree .tbs-select-tree-treenode-disabled .tbs-select-tree-node-content-wrapper:hover {
  background: transparent;
}

.tbs-select-tree .tbs-select-tree-treenode-active .tbs-select-tree-node-content-wrapper {
  background: var(--tbs-neutral-400);
}

.tbs-select-tree .tbs-select-tree-treenode:not(.tbs-select-tree .tbs-select-tree-treenode-disabled).filter-node .tbs-select-tree-title {
  color: inherit;
  font-weight: 500;
}

.tbs-select-tree .tbs-select-tree-treenode-draggable .tbs-select-tree-draggable-icon {
  width: 24px;
  line-height: 24px;
  text-align: center;
  visibility: visible;
  opacity: 0.2;
  transition: opacity 0.3s;
}

.tbs-select-tree-treenode:hover .tbs-select-tree .tbs-select-tree-treenode-draggable .tbs-select-tree-draggable-icon {
  opacity: 0.45;
}

.tbs-select-tree .tbs-select-tree-treenode-draggable.tbs-select-tree-treenode-disabled .tbs-select-tree-draggable-icon {
  visibility: hidden;
}

.tbs-select-tree-indent {
  align-self: stretch;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-select-tree-indent-unit {
  display: inline-block;
  width: 24px;
}

.tbs-select-tree-draggable-icon {
  visibility: hidden;
}

.tbs-select-tree-switcher {
  position: relative;
  flex: none;
  align-self: stretch;
  width: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-select-tree-switcher .tbs-tree-switcher-icon,
.tbs-select-tree-switcher .tbs-select-tree-switcher-icon {
  display: inline-block;
  font-size: 10px;
  vertical-align: baseline;
}

.tbs-select-tree-switcher .tbs-tree-switcher-icon svg,
.tbs-select-tree-switcher .tbs-select-tree-switcher-icon svg {
  transition: transform 0.3s;
}

.tbs-select-tree-switcher-noop {
  cursor: default;
}

.tbs-select-tree-switcher_close .tbs-select-tree-switcher-icon svg {
  transform: rotate(-90deg);
}

.tbs-select-tree-switcher-loading-icon {
  color: var(--tbs-primary-color);
}

.tbs-select-tree-switcher-leaf-line {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.tbs-select-tree-switcher-leaf-line:before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  margin-left: -1px;
  border-right: 1px solid var(--tbs-neutral-600);
  content: " ";
}

.tbs-select-tree-switcher-leaf-line:after {
  position: absolute;
  width: 10px;
  height: 14px;
  border-bottom: 1px solid var(--tbs-neutral-600);
  content: " ";
}

.tbs-select-tree-checkbox {
  top: initial;
  margin: 4px 8px 0 0;
}

.tbs-select-tree .tbs-select-tree-node-content-wrapper {
  position: relative;
  z-index: auto;
  min-height: 24px;
  margin: 0;
  padding: 0 4px;
  color: inherit;
  line-height: 24px;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s;
}

.tbs-select-tree .tbs-select-tree-node-content-wrapper:hover {
  background-color: var(--tbs-neutral-400);
}

.tbs-select-tree .tbs-select-tree-node-content-wrapper.tbs-select-tree-node-selected {
  background-color: var(--tbs-primary-2);
}

.tbs-select-tree .tbs-select-tree-node-content-wrapper .tbs-select-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  vertical-align: top;
}

.tbs-select-tree .tbs-select-tree-node-content-wrapper .tbs-select-tree-iconEle:empty {
  display: none;
}

.tbs-select-tree-unselectable .tbs-select-tree-node-content-wrapper:hover {
  background-color: transparent;
}

.tbs-select-tree-node-content-wrapper {
  line-height: 24px;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-select-tree-node-content-wrapper .tbs-tree-drop-indicator {
  position: absolute;
  z-index: 1;
  height: 2px;
  background-color: var(--tbs-primary-color);
  border-radius: 1px;
  pointer-events: none;
}

.tbs-select-tree-node-content-wrapper .tbs-tree-drop-indicator:after {
  position: absolute;
  top: -3px;
  left: -6px;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 2px solid var(--tbs-primary-color);
  border-radius: 50%;
  content: "";
}

.tbs-select-tree .tbs-select-tree-treenode.drop-container > [draggable] {
  box-shadow: 0 0 0 2px var(--tbs-primary-color);
}

.tbs-select-tree-show-line .tbs-select-tree-indent-unit {
  position: relative;
  height: 100%;
}

.tbs-select-tree-show-line .tbs-select-tree-indent-unit:before {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: -4px;
  border-right: 1px solid var(--tbs-neutral-600);
  content: "";
}

.tbs-select-tree-show-line .tbs-select-tree-indent-unit-end:before {
  display: none;
}

.tbs-select-tree-show-line .tbs-select-tree-switcher {
  background: #fff;
}

.tbs-select-tree-show-line .tbs-select-tree-switcher-line-icon {
  vertical-align: -0.15em;
}

.tbs-select-tree .tbs-select-tree-treenode-leaf-last .tbs-select-tree-switcher-leaf-line:before {
  top: auto !important;
  bottom: auto !important;
  height: 14px !important;
}

.tbs-tree-select-dropdown-rtl .tbs-select-tree .tbs-select-tree-switcher_close .tbs-select-tree-switcher-icon svg {
  transform: rotate(90deg);
}

.tbs-tree-select-dropdown-rtl .tbs-select-tree .tbs-select-tree-switcher-loading-icon {
  transform: scaleY(-1);
}

.tbs-tree.tbs-select-tree.tbs-tree-show-line tbs-tree-node[builtin]:not(:last-child) > li:before {
  position: absolute;
  left: 12px;
  width: 1px;
  height: calc(100% - 16px);
  margin: 26px 0;
  border-left: 1px solid var(--tbs-neutral-600);
  content: " ";
}

.tbs-select-dropdown.tbs-select-tree-dropdown {
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
  overflow: auto;
}

.tbs-picker-calendar {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  background: #fff;
}

.tbs-picker-calendar-header {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0;
}

.tbs-picker-calendar-header .tbs-picker-calendar-year-select {
  min-width: 80px;
}

.tbs-picker-calendar-header .tbs-picker-calendar-month-select {
  min-width: 70px;
  margin-left: 8px;
}

.tbs-picker-calendar-header .tbs-picker-calendar-mode-switch {
  margin-left: 8px;
}

.tbs-picker-calendar .tbs-picker-panel {
  background: #fff;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
}

.tbs-picker-calendar .tbs-picker-panel .tbs-picker-month-panel,
.tbs-picker-calendar .tbs-picker-panel .tbs-picker-date-panel {
  width: auto;
}

.tbs-picker-calendar .tbs-picker-panel .tbs-picker-body {
  padding: 8px 0;
}

.tbs-picker-calendar .tbs-picker-panel .tbs-picker-content {
  width: 100%;
}

.tbs-picker-calendar-mini {
  border-radius: 2px;
}

.tbs-picker-calendar-mini .tbs-picker-calendar-header {
  padding-right: 8px;
  padding-left: 8px;
}

.tbs-picker-calendar-mini .tbs-picker-panel {
  border-radius: 0 0 2px 2px;
}

.tbs-picker-calendar-mini .tbs-picker-content {
  height: 256px;
}

.tbs-picker-calendar-mini .tbs-picker-content th {
  height: auto;
  padding: 0;
  line-height: 18px;
}

.tbs-picker-calendar-mini .tbs-picker-cell:before {
  pointer-events: none;
}

.tbs-picker-calendar-full .tbs-picker-panel {
  display: block;
  width: 100%;
  text-align: right;
  background: #fff;
  border: 0;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-body th,
.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-body td {
  padding: 0;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-body th {
  height: auto;
  padding: 0 12px 5px 0;
  line-height: 18px;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell:before {
  display: none;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell:hover .tbs-picker-calendar-date {
  background: var(--tbs-neutral-400);
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell .tbs-picker-calendar-date-today:before {
  display: none;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected .tbs-picker-calendar-date,
.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected:hover .tbs-picker-calendar-date,
.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected .tbs-picker-calendar-date-today,
.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected:hover .tbs-picker-calendar-date-today {
  background: var(--tbs-primary-1);
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected .tbs-picker-calendar-date .tbs-picker-calendar-date-value,
.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected:hover .tbs-picker-calendar-date .tbs-picker-calendar-date-value,
.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected .tbs-picker-calendar-date-today .tbs-picker-calendar-date-value,
.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-cell-selected:hover .tbs-picker-calendar-date-today .tbs-picker-calendar-date-value {
  color: var(--tbs-primary-color);
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-calendar-date {
  display: block;
  width: auto;
  height: auto;
  margin: 0 4px;
  padding: 4px 8px 0;
  border: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  transition: background 0.3s;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-calendar-date-value {
  line-height: 24px;
  transition: color 0.3s;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-calendar-date-content {
  position: static;
  width: auto;
  height: 86px;
  overflow-y: auto;
  color: rgba(0, 0, 0, 0.8509803922);
  line-height: 1.5715;
  text-align: left;
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-calendar-date-today {
  border-color: var(--tbs-primary-color);
}

.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-calendar-date-today .tbs-picker-calendar-date-value {
  color: rgba(0, 0, 0, 0.8509803922);
}

@media only screen and (max-width: 480px) {
  .tbs-picker-calendar-header {
    display: block;
  }
  .tbs-picker-calendar-header .tbs-picker-calendar-year-select {
    width: 50%;
  }
  .tbs-picker-calendar-header .tbs-picker-calendar-month-select {
    width: calc(50% - 8px);
  }
  .tbs-picker-calendar-header .tbs-picker-calendar-mode-switch {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }
  .tbs-picker-calendar-header .tbs-picker-calendar-mode-switch > label {
    width: 50%;
    text-align: center;
  }
}
.tbs-picker-calendar-rtl {
  direction: rtl;
}

.tbs-picker-calendar-rtl .tbs-picker-calendar-header .tbs-picker-calendar-month-select,
.tbs-picker-calendar-rtl .tbs-picker-calendar-header .tbs-picker-calendar-mode-switch {
  margin-right: 8px;
  margin-left: 0;
}

.tbs-picker-calendar-rtl.tbs-picker-calendar-full .tbs-picker-panel {
  text-align: left;
}

.tbs-picker-calendar-rtl.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-body th {
  padding: 0 0 5px 12px;
}

.tbs-picker-calendar-rtl.tbs-picker-calendar-full .tbs-picker-panel .tbs-picker-calendar-date-content {
  text-align: right;
}

.tbs-space {
  display: inline-flex;
}

.tbs-space-vertical {
  flex-direction: column;
}

.tbs-space-align-center {
  align-items: center;
}

.tbs-space-align-start {
  align-items: flex-start;
}

.tbs-space-align-end {
  align-items: flex-end;
}

.tbs-space-align-baseline {
  align-items: baseline;
}

.tbs-space-item:empty {
  display: none;
}

.tbs-space-compact {
  display: inline-flex;
}

.tbs-space-compact-block {
  display: flex;
  width: 100%;
}

.tbs-space-compact-vertical {
  flex-direction: column;
}

.tbs-space-rtl,
.tbs-space-compact-rtl {
  direction: rtl;
}

tbs-space-item {
  display: block;
}

.tbs-image {
  position: relative;
  display: inline-block;
}

.tbs-image-img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.tbs-image-img-placeholder {
  background-color: var(--tbs-neutral-400);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIutbsY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xtbsV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30%;
}

.tbs-image-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5019607843);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.tbs-image-mask-info {
  padding: 0 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tbs-image-mask-info .anticon {
  margin-inline-end: 4px;
}

.tbs-image-mask:hover {
  opacity: 1;
}

.tbs-image-placeholder {
  position: absolute;
  inset: 0;
}

.tbs-image-preview {
  pointer-events: none;
  height: 100%;
  text-align: center;
}

.tbs-image-preview.tbs-zoom-enter,
.tbs-image-preview.tbs-zoom-appear {
  transform: none;
  opacity: 0;
  animation-duration: 0.3s;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-image-preview-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-image-preview-mask-hidden {
  display: none;
}

.tbs-image-preview-wrap {
  position: fixed;
  inset: 0;
  overflow: auto;
  outline: 0;
}

.tbs-image-preview-body {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tbs-image-preview-img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  transform: scaleZ(1);
  cursor: grab;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto;
}

.tbs-image-preview-img-wrapper {
  position: absolute;
  inset: 0;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.tbs-image-preview-img-wrapper:before {
  display: inline-block;
  width: 1px;
  height: 50%;
  margin-right: -1px;
  content: "";
}

.tbs-image-preview-moving .tbs-image-preview-img {
  cursor: grabbing;
}

.tbs-image-preview-moving .tbs-image-preview-img-wrapper {
  transition-duration: 0s;
}

.tbs-image-preview-wrap {
  z-index: 1080;
}

.tbs-image-preview-operations-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1081;
  width: 100%;
}

.tbs-image-preview-operations {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  font-feature-settings: "tnum";
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color: rgba(255, 255, 255, 0.8509803922);
  list-style: none;
  background: rgba(0, 0, 0, 0.1019607843);
  pointer-events: auto;
}

.tbs-image-preview-operations-operation {
  margin-left: 12px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-image-preview-operations-operation:hover {
  background: rgba(0, 0, 0, 0.2);
}

.tbs-image-preview-operations-operation-disabled {
  color: rgba(255, 255, 255, 0.2509803922);
  pointer-events: none;
}

.tbs-image-preview-operations-operation:last-of-type {
  margin-left: 0;
}

.tbs-image-preview-operations-progress {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.tbs-image-preview-operations-icon {
  font-size: 18px;
}

.tbs-image-preview-switch-left,
.tbs-image-preview-switch-right {
  position: fixed;
  top: 50%;
  right: 8px;
  z-index: 1081;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.8509803922);
  background: rgba(0, 0, 0, 0.1019607843);
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s;
  pointer-events: auto;
}

.tbs-image-preview-switch-left:hover,
.tbs-image-preview-switch-right:hover {
  background: rgba(0, 0, 0, 0.2);
}

.tbs-image-preview-switch-left-disabled,
.tbs-image-preview-switch-right-disabled,
.tbs-image-preview-switch-left-disabled:hover,
.tbs-image-preview-switch-right-disabled:hover {
  color: rgba(255, 255, 255, 0.2509803922);
  background: rgba(0, 0, 0, 0.1019607843);
  cursor: not-allowed;
}

.tbs-image-preview-switch-left-disabled > .anticon,
.tbs-image-preview-switch-right-disabled > .anticon,
.tbs-image-preview-switch-left-disabled:hover > .anticon,
.tbs-image-preview-switch-right-disabled:hover > .anticon {
  cursor: not-allowed;
}

.tbs-image-preview-switch-left > .anticon,
.tbs-image-preview-switch-right > .anticon {
  font-size: 18px;
}

.tbs-image-preview-switch-left {
  left: 8px;
}

.tbs-image-preview-switch-right {
  right: 8px;
}

.cdk-overlay-backdrop.tbs-image-preview-mask {
  opacity: 1;
}

.cdk-global-overlay-wrapper[dir=rtl] .tbs-image-preview-switch-left {
  right: 10px;
  left: unset;
  rotate: 180deg;
}

.cdk-global-overlay-wrapper[dir=rtl] .tbs-image-preview-switch-right {
  right: unset;
  left: 10px;
  rotate: 180deg;
}

.tbs-cron-expression {
  display: flex;
  flex-wrap: nowrap;
}

.tbs-cron-expression-content {
  width: 100%;
}

.tbs-cron-expression-content .tbs-cron-expression-input-group-error-focus {
  box-shadow: 0 0 0 2px var(--tbs-error-color-outline);
}

.tbs-cron-expression tbs-cron-expression-input {
  width: 20%;
}

.tbs-cron-expression-input-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.tbs-cron-expression-input-group input {
  width: 100%;
  padding: 0;
  border: none !important;
  border-radius: 0;
  outline: none;
  box-shadow: none !important;
}

.tbs-cron-expression-input-group-focus {
  border-color: var(--tbs-primary-color);
  outline: 0;
  box-shadow: 0 0 0 2px var(--tbs-primary-color-outline);
}

.tbs-cron-expression tbs-cron-expression-label {
  width: 20%;
}

.tbs-cron-expression-label-group {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  width: 100%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.tbs-cron-expression-label-group-default {
  padding: 0 12px;
}

.tbs-cron-expression-label-foucs {
  color: var(--tbs-primary-color);
}

.tbs-cron-expression-map {
  margin-left: 12px;
}

.tbs-cron-expression-preview {
  display: flex;
  padding: 12px;
}

.tbs-cron-expression-preview-dateTime {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
}

.tbs-cron-expression-preview-dateTime-center {
  justify-content: center;
}

.tbs-cron-expression-preview-content {
  display: flex;
  flex: 0 0 220px;
  align-items: center;
  padding-left: 16px;
}

.tbs-cron-expression-preview-list,
.tbs-cron-expression-preview-icon,
.tbs-cron-expression-preview-list li,
.tbs-cron-expression-preview-icon li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tbs-cron-expression-preview-list {
  height: 132px;
  overflow-y: scroll;
}

.tbs-cron-expression-preview-icon {
  display: flex;
  flex: 0 0 16px;
  justify-content: center;
}

.tbs-cron-expression-error {
  color: var(--tbs-error-color);
}

.tbs-qrcode {
  position: relative;
  display: inline-block;
  padding: 12px;
}

.tbs-qrcode > canvas {
  display: block;
}

.tbs-qrcode-border {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
}

.tbs-qrcode-mask {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9607843137);
}

.tbs-qrcode-expired {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-water-mark {
  position: relative;
  display: block;
}

.tbs-hashCode {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 1.5715;
  list-style: none;
  cursor: pointer;
}

.tbs-hashCode-header-copy {
  margin-left: 8px;
  cursor: pointer;
  opacity: 0.45;
}

.tbs-hashCode-header {
  display: flex;
  justify-content: left;
  width: 100%;
  height: 22px;
  padding-bottom: 8px;
}

.tbs-hashCode-header .tbs-hashCode-header-title {
  font-size: 14px;
  line-height: 1.5715;
  text-align: center;
  opacity: 0.45;
}

.tbs-hashCode-header .tbs-hashCode-header-logo {
  display: flex;
  flex: 1;
  justify-content: right;
}

.tbs-hashCode-double {
  width: 172px;
}

.tbs-hashCode-double.tbs-hashCode-primary {
  width: 220px;
}

.tbs-hashCode-single {
  display: flex;
  flex-direction: row-reverse;
  width: 236px;
}

.tbs-hashCode-single.tbs-hashCode-primary {
  width: 284px;
}

.tbs-hashCode-single .tbs-hashCode-header-copy {
  margin-top: 8px;
}

.tbs-hashCode-strip {
  width: 350px;
}

.tbs-hashCode-strip.tbs-hashCode-primary {
  width: 398px;
}

.tbs-hashCode-rect {
  display: flex;
  flex-direction: row-reverse;
  width: 196px;
}

.tbs-hashCode-rect.tbs-hashCode-primary {
  width: 244px;
}

.tbs-hashCode-primary {
  padding: 24px;
  background-color: var(--tbs-primary-color);
  border-radius: 24px;
}

.tbs-hashCode-primary .tbs-hashCode-header-copy {
  opacity: 1;
}

.tbs-hashCode-primary .tbs-hashCode-header-title,
.tbs-hashCode-primary .tbs-hashCode-header-copy,
.tbs-hashCode-primary .tbs-hashCode-header-logo {
  color: rgba(255, 255, 255, 0.8509803922);
}

.tbs-hashCode-contant {
  width: 100%;
  height: 100%;
}

.tbs-hashCode-code-value {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  justify-content: space-between;
  height: 35px;
  overflow: hidden;
}

.tbs-hashCode-code-value-block {
  height: 16px;
  font-size: 14px;
  font-family: Menlo, Monaco, Consolas, Courier New, monospace;
}

.tbs-hashCode-value-primary .tbs-hashCode-code-value-block {
  color: #fff;
}

.tbs-hashCode-texaure-double {
  width: 175px;
  height: 36px;
}

.tbs-hashCode-texaure {
  position: absolute;
  margin-top: -35px;
  overflow: hidden;
}

.tbs-hashCode-texaure-single {
  width: 210px;
  height: 28px;
  margin-top: -21px;
}

.tbs-hashCode-texaure-strip {
  width: 350px;
  height: 36px;
}

.tbs-hashCode-texaure-rect {
  width: 175px;
  height: 72px;
  margin-top: -71px;
}

.tbs-resizable-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  border: 1px dashed #d1d1d1;
}

.tbs-resizable-handle {
  position: absolute;
  z-index: 9;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-resizable-handle-top {
  top: -5px;
  left: 0;
  width: 100%;
  height: 10px;
}

.tbs-resizable-handle-right {
  top: 0;
  right: -5px;
  width: 10px;
  height: 100%;
}

.tbs-resizable-handle-bottom {
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
}

.tbs-resizable-handle-left {
  top: 0;
  left: -5px;
  width: 10px;
  height: 100%;
}

.tbs-resizable-handle-topRight {
  top: -5px;
  right: -5px;
  z-index: 10;
  width: 20px;
  height: 20px;
}

.tbs-resizable-handle-bottomRight {
  right: -5px;
  bottom: -5px;
  z-index: 10;
  width: 20px;
  height: 20px;
}

.tbs-resizable-handle-bottomLeft {
  bottom: -5px;
  left: -5px;
  z-index: 10;
  width: 20px;
  height: 20px;
}

.tbs-resizable-handle-topLeft {
  top: -5px;
  left: -5px;
  z-index: 10;
  width: 20px;
  height: 20px;
}

.tbs-resizable .tbs-resizable-handle-cursor-type-window.tbs-resizable-handle-top,
.tbs-resizable .tbs-resizable-handle-cursor-type-window.tbs-resizable-handle-bottom {
  cursor: ns-resize;
}

.tbs-resizable .tbs-resizable-handle-cursor-type-window.tbs-resizable-handle-right,
.tbs-resizable .tbs-resizable-handle-cursor-type-window.tbs-resizable-handle-left {
  cursor: ew-resize;
}

.tbs-resizable .tbs-resizable-handle-cursor-type-grid.tbs-resizable-handle-top,
.tbs-resizable .tbs-resizable-handle-cursor-type-grid.tbs-resizable-handle-bottom {
  cursor: row-resize;
}

.tbs-resizable .tbs-resizable-handle-cursor-type-grid.tbs-resizable-handle-right,
.tbs-resizable .tbs-resizable-handle-cursor-type-grid.tbs-resizable-handle-left {
  cursor: col-resize;
}

.tbs-resizable .tbs-resizable-handle-bottomRight,
.tbs-resizable .tbs-resizable-handle-topLeft {
  cursor: nwse-resize;
}

.tbs-resizable .tbs-resizable-handle-bottomLeft,
.tbs-resizable .tbs-resizable-handle-topRight {
  cursor: nesw-resize;
}

.tbs-resizable-disabled .tbs-resizable-handle {
  pointer-events: none;
}

.tbs-code-editor {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.tbs-code-editor .tbs-code-editor-loading {
  position: absolute;
  z-index: 100;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.tbs-code-editor .tbs-code-editor-toolkit {
  position: absolute;
  top: 20px;
  right: 160px;
  z-index: 2;
  min-width: 100px;
  height: 24px;
  text-align: right;
  background: transparent;
}

.tbs-code-editor .tbs-code-editor-toolkit i,
.tbs-code-editor .tbs-code-editor-toolkit span[tbs-icon] {
  position: relative;
  right: 4px;
  cursor: pointer;
}

.tbs-code-editor .tbs-code-editor-toolkit i:not(:last-child),
.tbs-code-editor .tbs-code-editor-toolkit span[tbs-icon]:not(:last-child) {
  padding-right: 4px;
}

.tbs-code-editor .tbs-code-editor-toolkit i.active,
.tbs-code-editor .tbs-code-editor-toolkit span[tbs-icon].active {
  color: var(--tbs-primary-color);
}

.tbs-spin {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  position: absolute;
  display: none;
  color: var(--tbs-primary-color);
  font-size: 0;
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.tbs-spin-spinning {
  position: static;
  display: inline-block;
  opacity: 1;
}

.tbs-spin-nested-loading {
  position: relative;
}

.tbs-spin-nested-loading > div > .tbs-spin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
}

.tbs-spin-nested-loading > div > .tbs-spin .tbs-spin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
}

.tbs-spin-nested-loading > div > .tbs-spin .tbs-spin-text {
  position: absolute;
  top: 50%;
  width: 100%;
  padding-top: 5px;
  font-size: 14px;
  text-shadow: 0 1px 2px #fff;
}

.tbs-spin-nested-loading > div > .tbs-spin.tbs-spin-show-text .tbs-spin-dot {
  margin-top: -20px;
}

.tbs-spin-nested-loading > div > .tbs-spin-sm .tbs-spin-dot {
  margin: -7px;
}

.tbs-spin-nested-loading > div > .tbs-spin-sm .tbs-spin-text {
  padding-top: 2px;
}

.tbs-spin-nested-loading > div > .tbs-spin-sm.tbs-spin-show-text .tbs-spin-dot {
  margin-top: -17px;
}

.tbs-spin-nested-loading > div > .tbs-spin-lg .tbs-spin-dot {
  margin: -16px;
}

.tbs-spin-nested-loading > div > .tbs-spin-lg .tbs-spin-text {
  padding-top: 11px;
}

.tbs-spin-nested-loading > div > .tbs-spin-lg.tbs-spin-show-text .tbs-spin-dot {
  margin-top: -26px;
}

.tbs-spin-container {
  position: relative;
  transition: opacity 0.3s;
}

.tbs-spin-container:after {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: all 0.3s;
  content: "";
  pointer-events: none;
}

.tbs-spin-blur {
  clear: both;
  opacity: 0.5;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.tbs-spin-blur:after {
  opacity: 0.4;
  pointer-events: auto;
}

.tbs-spin-tip {
  color: rgba(0, 0, 0, 0.4509803922);
}

.tbs-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 1em;
  height: 1em;
}

.tbs-spin-dot-item {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: var(--tbs-primary-color);
  border-radius: 100%;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  opacity: 0.3;
  animation: antSpinMove 1s infinite linear alternate;
}

.tbs-spin-dot-item:nth-child(1) {
  top: 0;
  left: 0;
}

.tbs-spin-dot-item:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}

.tbs-spin-dot-item:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}

.tbs-spin-dot-item:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}

.tbs-spin-dot-spin {
  transform: rotate(0);
  animation: antRotate 1.2s infinite linear;
}

.tbs-spin-sm .tbs-spin-dot {
  font-size: 14px;
}

.tbs-spin-sm .tbs-spin-dot i {
  width: 6px;
  height: 6px;
}

.tbs-spin-lg .tbs-spin-dot {
  font-size: 32px;
}

.tbs-spin-lg .tbs-spin-dot i {
  width: 14px;
  height: 14px;
}

.tbs-spin.tbs-spin-show-text .tbs-spin-text {
  display: block;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .tbs-spin-blur {
    background: #fff;
    opacity: 0.5;
  }
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@keyframes antRotate {
  to {
    transform: rotate(360deg);
  }
}
.tbs-spin-rtl {
  direction: rtl;
}

.tbs-spin-rtl .tbs-spin-dot-spin {
  transform: rotate(-45deg);
  animation-name: antRotateRtl;
}

@keyframes antRotateRtl {
  to {
    transform: rotate(-405deg);
  }
}
tbs-spin {
  display: block;
}

.tbs-graph {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.tbs-graph-nodes .tbs-graph-node-rect {
  fill: transparent;
  stroke: var(--tbs-primary-3);
  stroke-width: 1px;
}

.tbs-graph-nodes .tbs-graph-node-rect:hover {
  stroke: var(--tbs-primary-color);
}

.tbs-graph-edges .tbs-graph-edge path {
  fill: none;
  stroke: var(--tbs-primary-3);
  stroke-linecap: butt;
  stroke-width: 1px;
}

.tbs-graph-edges .tbs-graph-edge path:hover {
  stroke: var(--tbs-primary-color);
}

.tbs-graph-edges .tbs-graph-edge-text {
  font-size: 12px;
  fill: rgba(0, 0, 0, 0.8509803922);
}

.tbs-graph-edge-marker {
  color: var(--tbs-primary-3);
  fill: var(--tbs-primary-3);
}

.tbs-graph-minimap {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: #fff;
  border: 1px solid var(--tbs-neutral-600);
  transition: opacity 0.3s linear;
  pointer-events: auto;
}

.tbs-graph-minimap.hidden {
  opacity: 0;
  pointer-events: none;
}

.tbs-graph-minimap canvas {
  border: 1px solid #999;
}

.tbs-graph-minimap rect {
  cursor: move;
  filter: url(#minimapDropShadow);
  fill: #fff;
  stroke: rgba(0, 0, 0, 0.4509803922);
  stroke-width: 1px;
  fill-opacity: 0;
}

.tbs-graph-minimap svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.tbs-graph-minimap .buffer,
.tbs-graph-minimap .viewport {
  display: block;
  height: 100%;
}

.tbs-tag {
  box-sizing: border-box;
  margin: 0 8px 0 0;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: "tnum";
  display: inline-block;
  height: auto;
  padding: 0 7px;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  background: #fafafa;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 2px;
  opacity: 1;
  transition: all 0.3s;
}

.tbs-tag,
.tbs-tag a,
.tbs-tag a:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-tag > a:first-child:last-child {
  display: inline-block;
  margin: 0 -8px;
  padding: 0 8px;
}

.tbs-tag-close-icon {
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.tbs-tag-close-icon:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-tag-has-color {
  border-color: transparent;
}

.tbs-tag-has-color,
.tbs-tag-has-color a,
.tbs-tag-has-color a:hover,
.tbs-tag-has-color .anticon-close,
.tbs-tag-has-color .anticon-close:hover {
  color: #fff;
}

.tbs-tag-checkable {
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
}

.tbs-tag-checkable:not(.tbs-tag-checkable-checked):hover {
  color: var(--tbs-primary-color);
}

.tbs-tag-checkable:active,
.tbs-tag-checkable-checked {
  color: #fff;
}

.tbs-tag-checkable-checked {
  background-color: var(--tbs-primary-6);
}

.tbs-tag-checkable:active {
  background-color: var(--tbs-primary-7);
}

.tbs-tag-hidden {
  display: none;
}

.tbs-tag-pink {
  color: #c41d7f;
  background: #fff0f6;
  border-color: #ffadd2;
}

.tbs-tag-pink-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}

.tbs-tag-magenta {
  color: #c41d7f;
  background: #fff0f6;
  border-color: #ffadd2;
}

.tbs-tag-magenta-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}

.tbs-tag-red {
  color: #cf1322;
  background: #fff1f0;
  border-color: #ffa39e;
}

.tbs-tag-red-inverse {
  color: #fff;
  background: #f5222d;
  border-color: #f5222d;
}

.tbs-tag-volcano {
  color: #d4380d;
  background: #fff2e8;
  border-color: #ffbb96;
}

.tbs-tag-volcano-inverse {
  color: #fff;
  background: #fa541c;
  border-color: #fa541c;
}

.tbs-tag-orange {
  color: #d46b08;
  background: #fff7e6;
  border-color: #ffd591;
}

.tbs-tag-orange-inverse {
  color: #fff;
  background: #fa8c16;
  border-color: #fa8c16;
}

.tbs-tag-yellow {
  color: #d4b106;
  background: #feffe6;
  border-color: #fffb8f;
}

.tbs-tag-yellow-inverse {
  color: #fff;
  background: #fadb14;
  border-color: #fadb14;
}

.tbs-tag-gold {
  color: #d48806;
  background: #fffbe6;
  border-color: #ffe58f;
}

.tbs-tag-gold-inverse {
  color: #fff;
  background: #faad14;
  border-color: #faad14;
}

.tbs-tag-cyan {
  color: #08979c;
  background: #e6fffb;
  border-color: #87e8de;
}

.tbs-tag-cyan-inverse {
  color: #fff;
  background: #13c2c2;
  border-color: #13c2c2;
}

.tbs-tag-lime {
  color: #7cb305;
  background: #fcffe6;
  border-color: #eaff8f;
}

.tbs-tag-lime-inverse {
  color: #fff;
  background: #a0d911;
  border-color: #a0d911;
}

.tbs-tag-green {
  color: #389e0d;
  background: #f6ffed;
  border-color: #b7eb8f;
}

.tbs-tag-green-inverse {
  color: #fff;
  background: #52c41a;
  border-color: #52c41a;
}

.tbs-tag-blue {
  color: #096dd9;
  background: #e6f7ff;
  border-color: #91d5ff;
}

.tbs-tag-blue-inverse {
  color: #fff;
  background: #1890ff;
  border-color: #1890ff;
}

.tbs-tag-geekblue {
  color: #1d39c4;
  background: #f0f5ff;
  border-color: #adc6ff;
}

.tbs-tag-geekblue-inverse {
  color: #fff;
  background: #2f54eb;
  border-color: #2f54eb;
}

.tbs-tag-purple {
  color: #531dab;
  background: #f9f0ff;
  border-color: #d3adf7;
}

.tbs-tag-purple-inverse {
  color: #fff;
  background: #722ed1;
  border-color: #722ed1;
}

.tbs-tag-success {
  color: var(--tbs-success-color);
  background: var(--tbs-success-color-deprecated-bg);
  border-color: var(--tbs-success-color-deprecated-border);
}

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

.tbs-tag-error {
  color: var(--tbs-error-color);
  background: var(--tbs-error-color-deprecated-bg);
  border-color: var(--tbs-error-color-deprecated-border);
}

.tbs-tag-warning {
  color: var(--tbs-warning-color);
  background: var(--tbs-warning-color-deprecated-bg);
  border-color: var(--tbs-warning-color-deprecated-border);
}

.tbs-tag > .anticon + span,
.tbs-tag > span + .anticon {
  margin-left: 7px;
}

.tbs-tag.tbs-tag-rtl {
  margin-right: 0;
  margin-left: 8px;
  direction: rtl;
  text-align: right;
}

.tbs-tag-rtl .tbs-tag-close-icon {
  margin-right: 3px;
  margin-left: 0;
}

.tbs-tag-rtl.tbs-tag > .anticon + span,
.tbs-tag-rtl.tbs-tag > span + .anticon {
  margin-right: 7px;
  margin-left: 0;
}

.tbs-tag.tbs-tag-borderless {
  border-color: transparent;
}

.github-btn {
  height: 20px;
  overflow: hidden;
  font: 700 11px/14px Helvetica Neue, Helvetica, Arial, sans-serif;
}

.gh-btn,
.gh-count,
.gh-ico {
  float: left;
}

.gh-btn,
.gh-count {
  padding: 2px 5px 2px 4px;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
}

.gh-btn {
  background-color: #eee;
  background-image: linear-gradient(to bottom, #fcfcfc 0, #eee);
  background-repeat: no-repeat;
  border: 1px solid #d5d5d5;
  filter: "progid:dximagetransform.microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#eeeeee', GradientType=0)";
}

.gh-btn:hover,
.gh-btn:focus {
  text-decoration: none;
  background-color: #ddd;
  background-image: linear-gradient(to bottom, #eee 0, #ddd);
  border-color: #ccc;
  filter: "progid:dximagetransform.microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0)";
}

.gh-btn:active {
  background-color: #dcdcdc;
  background-image: none;
  border-color: #b5b5b5;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1490196078);
}

.gh-ico {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMTIgMTIgNDAgNDAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMTIgMTIgNDAgNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiMzMzMzMzMiIGQ9Ik0zMiAxMy40Yy0xMC41IDAtMTkgOC41LTE5IDE5YzAgOC40IDUuNSAxNS41IDEzIDE4YzEgMC4yIDEuMy0wLjQgMS4zLTAuOWMwLTAuNSAwLTEuNyAwLTMuMiBjLTUuMyAxLjEtNi40LTIuNi02LjQtMi42QzIwIDQxLjYgMTguOCA0MSAxOC44IDQxYy0xLjctMS4yIDAuMS0xLjEgMC4xLTEuMWMxLjkgMC4xIDIuOSAyIDIuOSAyYzEuNyAyLjkgNC41IDIuMSA1LjUgMS42IGMwLjItMS4yIDAuNy0yLjEgMS4yLTIuNmMtNC4yLTAuNS04LjctMi4xLTguNy05LjRjMC0yLjEgMC43LTMuNyAyLTUuMWMtMC4yLTAuNS0wLjgtMi40IDAuMi01YzAgMCAxLjYtMC41IDUuMiAyIGMxLjUtMC40IDMuMS0wLjcgNC44LTAuN2MxLjYgMCAzLjMgMC4yIDQuNyAwLjdjMy42LTIuNCA1LjItMiA1LjItMmMxIDIuNiAwLjQgNC42IDAuMiA1YzEuMiAxLjMgMiAzIDIgNS4xYzAgNy4zLTQuNSA4LjktOC43IDkuNCBjMC43IDAuNiAxLjMgMS43IDEuMyAzLjVjMCAyLjYgMCA0LjYgMCA1LjJjMCAwLjUgMC40IDEuMSAxLjMgMC45YzcuNS0yLjYgMTMtOS43IDEzLTE4LjFDNTEgMjEuOSA0Mi41IDEzLjQgMzIgMTMuNHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.gh-count {
  position: relative;
  display: none;
  margin-left: 4px;
  background-color: #fafafa;
  border: 1px solid #d4d4d4;
}

.gh-count:hover,
.gh-count:focus {
  color: #4183c4;
}

.gh-count:before,
.gh-count:after {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  content: "";
}

.gh-count:before {
  top: 50%;
  left: -3px;
  margin-top: -4px;
  border-width: 4px 4px 4px 0;
  border-right-color: #fafafa;
}

.page-wrapper-rtl .gh-count:before {
  right: -3px;
  left: auto;
  transform: rotate(180deg);
}

.gh-count:after {
  top: 50%;
  left: -4px;
  z-index: -1;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #d4d4d4;
}

.page-wrapper-rtl .gh-count:after {
  right: -4px;
  left: auto;
  transform: rotate(180deg);
}

.github-btn-large {
  height: 30px;
}

.github-btn-large .gh-btn,
.github-btn-large .gh-count {
  padding: 3px 10px 3px 8px;
  font-size: 16px;
  line-height: 22px;
  border-radius: 4px;
}

.github-btn-large .gh-ico {
  width: 20px;
  height: 20px;
}

.github-btn-large .gh-count {
  margin-left: 6px;
}

.github-btn-large .gh-count:before {
  left: -5px;
  margin-top: -6px;
  border-width: 6px 6px 6px 0;
}

.github-btn-large .gh-count:after {
  left: -6px;
  margin-top: -7px;
  border-width: 7px 7px 7px 0;
}

#header {
  position: relative;
  z-index: 10;
  max-width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px #f0f1f2;
}

#header .menu-row {
  display: flex;
  align-items: center;
  margin: 0;
}

#header .menu-row > * {
  flex: none;
  margin: 0 16px 0 0;
}

#header .menu-row > *:last-child {
  margin-right: 40px;
}

.page-wrapper-rtl #header .menu-row > *:last-child {
  margin-right: 16px;
  margin-left: 40px;
}

#header .header-button {
  color: rgba(0, 0, 0, 0.8509803922);
  border-color: var(--tbs-neutral-600);
}

@media only screen and (max-width: 767.99px) {
  #header {
    text-align: center;
  }
}
#github-btn {
  display: flex;
  flex-flow: nowrap;
  height: auto;
}

#github-btn .gh-btn {
  height: auto;
  padding: 1px 4px;
  background: transparent;
  border: 0;
}

#github-btn .gh-btn .gh-ico {
  width: 20px;
  height: 20px;
  margin: 0;
}

#github-btn .gh-btn .gh-text {
  display: none;
}

#github-btn .gh-count {
  min-width: 45px;
  height: auto;
  padding: 4px 8px;
  font-weight: 400;
  background: #fff;
}

#github-btn .gh-count:hover {
  color: var(--tbs-primary-color);
}

#github-btn.responsive-mode .gh-count {
  display: none !important;
}

#logo {
  height: 64px;
  padding-left: 40px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 18px;
  font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji", sans-serif;
  line-height: 64px;
  white-space: nowrap;
  text-decoration: none;
}

.page-wrapper-rtl #logo {
  float: right;
  padding-right: 40px;
  padding-left: 0;
}

#logo img {
  position: relative;
  top: -1.5px;
  width: 28.27px;
  height: 32px;
  margin-right: 16px;
}

.page-wrapper-rtl #logo img {
  margin-right: 0;
  margin-left: 16px;
}

@media only screen and (max-width: 767.99px) {
  #logo {
    padding-right: 0;
    padding-left: 0;
  }
}
#nav {
  height: 100%;
  font-size: 14px;
  font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji", sans-serif;
  border: 0;
}

#nav.tbs-menu-horizontal {
  border-bottom: none;
}

#nav.tbs-menu-horizontal > .tbs-menu-item,
#nav.tbs-menu-horizontal > .tbs-menu-submenu {
  min-width: 64px;
  height: 64px;
  padding-right: 12px;
  padding-left: 12px;
  line-height: 64px;
}

#nav.tbs-menu-horizontal > .tbs-menu-item:after,
#nav.tbs-menu-horizontal > .tbs-menu-submenu:after {
  inset: 0 12px auto;
  border-width: 2px;
}

#nav.tbs-menu-horizontal .tbs-menu-submenu-title .anticon {
  margin: 0;
}

#nav.tbs-menu-horizontal > .tbs-menu-item-selected a {
  color: var(--tbs-primary-color);
}

#nav > .tbs-menu-item,
#nav > .tbs-menu-submenu {
  text-align: center;
}

.header-link {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-menu-item-active .header-link {
  color: var(--tbs-primary-color);
}

.popover-menu {
  width: 300px;
}

.popover-menu .tbs-popover-inner-content {
  padding: 0;
}

.popover-menu .tbs-popover-inner-content #nav .tbs-menu-item,
.popover-menu .tbs-popover-inner-content #nav .tbs-menu-submenu {
  text-align: left;
}

.popover-menu .tbs-popover-inner-content #nav .tbs-menu-item-group-title {
  padding-left: 24px;
}

.popover-menu .tbs-popover-inner-content #nav .tbs-menu-item-group-list {
  padding: 0 16px;
}

.popover-menu .tbs-popover-inner-content #nav .tbs-menu-item,
.popover-menu .tbs-popover-inner-content #nav a {
  color: #333;
}

#search-box {
  position: relative;
  display: flex;
  flex: auto !important;
  align-items: center;
  height: 22px;
  margin: 0 auto 0 0 !important;
  padding-left: 16px;
  line-height: 22px;
  white-space: nowrap;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  transition: width 0.5s;
}

.page-wrapper-rtl #search-box {
  margin: 0 0 0 auto !important;
  padding-right: 16px;
  padding-left: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-left: none;
}

.page-wrapper-rtl #search-box input {
  padding-right: 20px;
  padding-left: 11px;
}

#search-box > * {
  flex: auto;
}

#search-box .anticon {
  position: absolute;
  top: 50%;
  z-index: 1;
  flex: none;
  color: #ced4d9;
  transform: translateY(-50%);
  pointer-events: none;
}

#search-box input {
  width: 100%;
  max-width: 200px;
  padding-left: 20px;
  font-size: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#search-box input::placeholder {
  color: #a3b1bf;
}

#search-box.narrow-mode {
  flex: none !important;
  width: 30px;
}

#search-box.narrow-mode:hover .anticon {
  color: #a3b1bf;
}

#search-box.narrow-mode .anticon {
  right: 0;
  left: auto;
}

.page-wrapper-rtl #search-box.narrow-mode .anticon {
  right: auto;
  left: 0;
}

#search-box.narrow-mode input {
  max-width: none;
  padding-right: 20px;
  padding-left: 11px;
  cursor: pointer;
}

.page-wrapper-rtl #search-box.narrow-mode input {
  padding-right: 11px;
  padding-left: 20px;
}

#search-box.narrow-mode.focused {
  width: 500px;
}

#search-box.narrow-mode.focused .anticon {
  color: #ced4d9;
}

#search-box.narrow-mode.focused input {
  cursor: text;
}

.component-select.tbs-select-dropdown {
  font-size: 14px;
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2509803922);
}

.component-select .tbs-select-dropdown-menu {
  max-height: 200px;
}

.component-select .tbs-select-dropdown-menu-item {
  border-radius: 0 !important;
}

.component-select .tbs-component-decs {
  position: absolute;
  right: 16px;
  color: #aaa;
  font-size: 12px;
}

.page-wrapper-rtl .component-select .tbs-component-decs {
  right: auto;
  left: 16px;
}

@media only screen and (max-width: 767.99px) {
  #search-box {
    display: none;
  }
}
a {
  transition: color 0.3s ease;
}

.main-wrapper {
  position: relative;
  padding: 40px 0 0;
  background: #fff;
}

.main-container {
  position: relative;
  min-height: 500px;
  padding: 0 170px 32px 64px;
  background: #fff;
}

.tbs-row-rtl .main-container {
  padding: 0 64px 144px 170px;
}

.main-menu {
  z-index: 1;
}

.main-menu-inner {
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
}

.main-menu:hover .main-menu-inner {
  overflow-y: auto;
}

.main-menu > div,
.main-menu > div > div {
  height: 100%;
}

.aside-container {
  min-height: 100%;
  padding-bottom: 48px;
  font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji", sans-serif;
}

.aside-container.tbs-menu-inline .tbs-menu-submenu-title h4,
.aside-container.tbs-menu-inline > .tbs-menu-item,
.aside-container.tbs-menu-inline .tbs-menu-item a {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
}

.aside-container.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-title {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 13px;
}

.aside-container.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-title:after {
  position: relative;
  top: 12px;
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background: rgba(0, 0, 0, 0.0588235294);
  content: "";
}

.aside-container.tbs-menu-inline > .tbs-menu-item,
.aside-container.tbs-menu-inline > .tbs-menu-submenu > .tbs-menu-submenu-title,
.aside-container.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-title,
.aside-container.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item,
.aside-container.tbs-menu-inline.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item {
  padding-left: 40px !important;
}

.tbs-row-rtl .aside-container.tbs-menu-inline > .tbs-menu-item,
.tbs-row-rtl .aside-container.tbs-menu-inline > .tbs-menu-submenu > .tbs-menu-submenu-title,
.tbs-row-rtl .aside-container.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-title,
.tbs-row-rtl .aside-container.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item,
.tbs-row-rtl .aside-container.tbs-menu-inline.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-list > .tbs-menu-item {
  padding-right: 40px !important;
  padding-left: 16px !important;
  text-align: right;
}

.aside-container.tbs-menu-inline.tbs-menu-inline .tbs-menu-item-group-title {
  padding-left: 56px;
}

.tbs-row-rtl .aside-container.tbs-menu-inline.tbs-menu-inline .tbs-menu-item-group-title {
  padding-right: 56px;
  padding-left: 16px;
}

.aside-container.tbs-menu-inline.tbs-menu-inline .tbs-menu-item-group-list > .tbs-menu-item {
  padding-left: 80px !important;
}

.tbs-row-rtl .aside-container.tbs-menu-inline.tbs-menu-inline .tbs-menu-item-group-list > .tbs-menu-item {
  padding-right: 80px !important;
  padding-left: 16px !important;
  text-align: right;
}

.aside-container.tbs-menu-inline .tbs-menu-item-group:first-child .tbs-menu-item-group-title {
  margin-top: 0;
}

.aside-container a[disabled] {
  color: #ccc;
}

.aside-container .menu-item-link-outside {
  position: relative;
}

.aside-container .menu-item-link-outside .anticon {
  position: absolute;
  top: 16px;
  right: -10px;
  color: var(--tbs-primary-color);
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s;
}

.aside-container .menu-item-link-outside:hover .anticon {
  opacity: 1;
}

.aside-container .chinese {
  margin-left: 6px;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.67;
}

.outside-link {
  display: inline-block;
}

.outside-link-icon {
  margin-left: 5px;
  color: #aaa;
  font-size: 12px;
}

.menu-site .tbs-menu-item > a {
  color: rgba(0, 0, 0, 0.8509803922);
}

.menu-site .tbs-menu-item-selected > a,
.menu-site .tbs-menu-item > a:hover {
  color: var(--tbs-primary-color);
}

#react-content {
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.page-wrapper {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.page-wrapper-rtl {
  direction: rtl;
}

.drawer-content {
  padding: 40px 0;
}

.drawer-content-wrapper {
  background-color: #fff;
}

.drawer {
  z-index: 1029;
}

#_hj_feedback_container .path1:before {
  color: var(--tbs-primary-color) !important;
}

#_hj_feedback_container .path2:before {
  color: #fff !important;
}

.fixed-widgets {
  position: fixed;
  right: 32px;
  bottom: 102px;
  z-index: 2147483640;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.page-wrapper-rtl .fixed-widgets {
  right: auto;
  left: 32px;
}

.fixed-widgets-tooltip .tbs-tooltip-inner {
  min-width: 100px;
}

.fixed-widgets > div {
  display: block;
}

.fixed-widgets-active {
  color: var(--tbs-primary-color);
}

.fixed-widgets .fixed-widgets-avatar {
  color: #000;
  background-color: #fff;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
  transition: color 0.3s;
}

.fixed-widgets .fixed-widgets-avatar:hover {
  color: var(--tbs-primary-color);
}

#header,
#header #search-box,
#header #nav.tbs-menu,
.main-wrapper,
.main-wrapper > .tbs-row > .main-menu .main-menu-inner > .tbs-menu,
.main-wrapper > .tbs-row > .main-menu .main-menu-inner > .tbs-menu.aside-container.tbs-menu-inline > .tbs-menu-item-group > .tbs-menu-item-group-title:after,
.main-wrapper .main-container,
#demo-toc.toc {
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

#header > .tbs-row > .tbs-col h1 {
  margin-bottom: 0;
}

#header.home-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  background: transparent;
  box-shadow: none;
}

#header.home-header #logo {
  padding-right: 16px;
  padding-left: 40px;
}

.page-wrapper-rtl #header.home-header #logo {
  padding-right: 40px;
  padding-left: 16px;
}

#header.home-header .tbs-menu {
  background: transparent;
}

@media (max-width: 576px) {
  #header.home-header .tbs-row .tbs-col {
    margin: 0 auto;
  }
  #header.home-header .tbs-row .tbs-col a {
    padding-right: 0;
    padding-left: 0;
  }
  #header.home-header .tbs-row .tbs-col:last-child {
    display: none;
  }
}
.rc-footer {
  position: relative;
  clear: both;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.5;
  background-color: #000;
}

.rc-footer a {
  color: rgba(255, 255, 255, 0.9019607843);
  text-decoration: none;
  transition: all 0.3s;
}

.rc-footer a:hover {
  color: #40a9ff;
}

.rc-footer-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0 20px;
}

.rc-footer-columns {
  display: flex;
  justify-content: space-around;
}

.rc-footer-column {
  margin-bottom: 60px;
}

.rc-footer-column h2 {
  position: relative;
  margin: 0 auto 24px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.rc-footer-column-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 22px;
  margin-right: 0.5em;
  text-align: center;
  vertical-align: middle;
}

.rc-footer-column-icon > span,
.rc-footer-column-icon > svg,
.rc-footer-column-icon img {
  display: block;
  width: 100%;
}

.rc-footer-item {
  margin: 12px 0;
}

.rc-footer-item-icon {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 16px;
  margin-right: 0.4em;
  text-align: center;
  vertical-align: middle;
}

.rc-footer-item-icon > span,
.rc-footer-item-icon > svg,
.rc-footer-item-icon img {
  display: block;
  width: 100%;
}

.rc-footer-item-separator {
  margin: 0 0.3em;
}

.rc-footer-bottom-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.rc-footer-light {
  color: rgba(0, 0, 0, 0.8509803922);
  background-color: transparent;
}

.rc-footer-light h2,
.rc-footer-light a {
  color: rgba(0, 0, 0, 0.8509803922);
}

.rc-footer-light .rc-footer-bottom-container {
  border-top-color: #e8e8e8;
}

.rc-footer-light .rc-footer-item-separator,
.rc-footer-light .rc-footer-item-description {
  color: rgba(0, 0, 0, 0.4509803922);
}

@media only screen and (max-width: 767.99px) {
  .rc-footer {
    text-align: center;
  }
  .rc-footer-container {
    padding: 40px 0;
  }
  .rc-footer-columns {
    display: block;
  }
  .rc-footer-column {
    display: block;
    margin-bottom: 40px;
  }
  .rc-footer-column:last-child {
    margin-bottom: 0;
  }
}
.rc-footer {
  z-index: 11;
}

.rc-footer-container {
  max-width: unset;
  padding: 60px;
}

.rc-footer-bottom-container {
  max-width: calc(100% - 120px);
}

.rc-footer-columns {
  justify-content: space-between;
}

.page-wrapper-rtl .rc-footer-item {
  display: flex;
  justify-content: flex-start;
  text-align: right;
}

.page-wrapper-rtl .rc-footer-item-icon {
  margin-right: 0;
  margin-left: 0.4em;
}

.drawer {
  position: fixed;
  top: 0;
  z-index: 9999;
  transition: width 0s ease 0.3s, height 0s ease 0.3s, transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer > * {
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), box-shadow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer.drawer-open {
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer .drawer-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), height 0s ease 0.3s;
}

.drawer-content-wrapper {
  position: absolute;
  background: #fff;
}

.drawer-content {
  position: relative;
  z-index: 1;
  overflow: auto;
}

.drawer-handle {
  position: absolute;
  top: 72px;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  cursor: pointer;
}

.drawer-handle-icon {
  position: relative;
  width: 14px;
  height: 2px;
  background: #333;
  transition: background 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer-handle-icon:before,
.drawer-handle-icon:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: "";
}

.drawer-handle-icon:before {
  top: -5px;
}

.drawer-handle-icon:after {
  top: 5px;
}

.drawer-left,
.drawer-right {
  width: 0%;
  height: 100%;
}

.drawer-left .drawer-content-wrapper,
.drawer-right .drawer-content-wrapper,
.drawer-left .drawer-content,
.drawer-right .drawer-content {
  height: 100%;
}

.drawer-left.drawer-open,
.drawer-right.drawer-open {
  width: 100%;
}

.drawer-left.drawer-open.no-mask,
.drawer-right.drawer-open.no-mask {
  width: 0%;
}

.drawer-left {
  left: 0;
}

.drawer-left .drawer-handle {
  right: -40px;
  border-radius: 0 4px 4px 0;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-left.drawer-open .drawer-content-wrapper {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-right,
.drawer-right .drawer-content-wrapper {
  right: 0;
}

.drawer-right .drawer-handle {
  left: -40px;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-right.drawer-open .drawer-content-wrapper {
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-right.drawer-open.no-mask {
  right: 1px;
  transform: translate(1px);
}

.drawer-top,
.drawer-bottom {
  width: 100%;
  height: 0%;
}

.drawer-top .drawer-content-wrapper,
.drawer-bottom .drawer-content-wrapper,
.drawer-top .drawer-content,
.drawer-bottom .drawer-content {
  width: 100%;
}

.drawer-top .drawer-content,
.drawer-bottom .drawer-content,
.drawer-top.drawer-open,
.drawer-bottom.drawer-open {
  height: 100%;
}

.drawer-top.drawer-open.no-mask,
.drawer-bottom.drawer-open.no-mask {
  height: 0%;
}

.drawer-top .drawer-handle,
.drawer-bottom .drawer-handle {
  left: 50%;
  margin-left: -20px;
}

.drawer-top {
  top: 0;
}

.drawer-top .drawer-handle {
  top: auto;
  bottom: -40px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-top.drawer-open .drawer-content-wrapper {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-bottom,
.drawer-bottom .drawer-content-wrapper {
  bottom: 0;
}

.drawer-bottom .drawer-handle {
  top: -40px;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-bottom.drawer-open .drawer-content-wrapper {
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1490196078);
}

.drawer-bottom.drawer-open.no-mask {
  bottom: 1px;
  transform: translateY(1px);
}

.drawer.drawer-open .drawer-mask {
  height: 100%;
  opacity: 0.3;
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.drawer.drawer-open .drawer-handle-icon {
  background: transparent;
}

.drawer.drawer-open .drawer-handle-icon:before {
  transform: translateY(5px) rotate(45deg);
}

.drawer.drawer-open .drawer-handle-icon:after {
  transform: translateY(-5px) rotate(-45deg);
}

.prev-next-nav {
  margin-right: 64px;
  margin-left: 64px;
  overflow: hidden;
  font-size: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.prev-next-nav > .prev-page,
.prev-next-nav > .next-page {
  float: left;
  width: 50%;
  height: 72px;
  line-height: 72px;
  text-decoration: none;
}

.page-wrapper-rtl .prev-next-nav > .prev-page,
.page-wrapper-rtl .prev-next-nav > .next-page {
  float: right;
}

.prev-next-nav > a.prev-page .footer-nav-icon-before {
  position: relative;
  left: 0;
  margin-right: 1em;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  transition: all 0.3s;
}

.page-wrapper-rtl .prev-next-nav > a.prev-page .footer-nav-icon-before {
  right: 0;
  left: auto;
  margin-right: 0;
  margin-left: 1em;
  transform: rotate(180deg);
}

.prev-next-nav > a.prev-page .footer-nav-icon-after {
  display: none;
}

.prev-next-nav > a.prev-page:hover .footer-nav-icon-before {
  left: -3px;
  color: var(--tbs-primary-color);
}

.prev-next-nav > .next-page {
  float: right;
  text-align: right;
}

.page-wrapper-rtl .prev-next-nav > .next-page {
  float: left;
  text-align: left;
}

.prev-next-nav > .next-page .footer-nav-icon-after {
  position: relative;
  right: 0;
  margin-left: 1em;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  transition: all 0.3s;
}

.page-wrapper-rtl .prev-next-nav > .next-page .footer-nav-icon-after {
  right: auto;
  left: 0;
  margin-right: 1em;
  margin-left: 0;
  transform: rotate(180deg);
}

.prev-next-nav > .next-page .footer-nav-icon-before {
  display: none;
}

.prev-next-nav > .next-page:hover .footer-nav-icon-after {
  right: -3px;
  color: var(--tbs-primary-color);
}

.prev-next-nav .chinese {
  margin-left: 0.5em;
}

.markdown {
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  line-height: 2;
}

.highlight {
  line-height: 1.5;
}

.markdown img {
  max-width: calc(100% - 32px);
}

.markdown p > img {
  margin: 34px 0;
  box-shadow: 0 8px 20px rgba(143, 168, 191, 0.3490196078);
}

.markdown p > img.markdown-inline-image {
  margin: 0;
  box-shadow: none;
}

.markdown h1 {
  margin-top: 8px;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  font-size: 30px;
  font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji", sans-serif;
  line-height: 38px;
}

.markdown h1 .subtitle {
  margin-left: 12px;
}

.tbs-row-rtl .markdown h1 .subtitle {
  margin-right: 12px;
  margin-left: 0;
}

.markdown h2 {
  font-size: 24px;
  line-height: 32px;
}

.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
  clear: both;
  margin: 1.6em 0 0.6em;
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  font-family: Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji", sans-serif;
}

.markdown h3 {
  font-size: 18px;
}

.markdown h4 {
  font-size: 16px;
}

.markdown h5 {
  font-size: 14px;
}

.markdown h6 {
  font-size: 12px;
}

.markdown hr {
  clear: both;
  height: 1px;
  margin: 56px 0;
  background: rgba(0, 0, 0, 0.0588235294);
  border: 0;
}

.markdown p,
.markdown pre {
  margin: 1em 0;
}

.markdown ul > li {
  margin-left: 20px;
  padding-left: 4px;
  list-style-type: circle;
}

.tbs-row-rtl .markdown ul > li {
  margin-right: 20px;
  margin-left: 0;
  padding-right: 4px;
  padding-left: 0;
}

.markdown ul > li:empty {
  display: none;
}

.markdown ol > li {
  margin-left: 20px;
  padding-left: 4px;
  list-style-type: decimal;
}

.tbs-row-rtl .markdown ol > li {
  margin-right: 20px;
  margin-left: 0;
  padding-right: 4px;
  padding-left: 0;
}

.markdown ul > li > p,
.markdown ol > li > p {
  margin: 0.2em 0;
}

.markdown code {
  margin: 0 1px;
  padding: 0.2em 0.4em;
  font-size: 0.9em;
  background: #f2f4f5;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 3px;
}

.markdown pre {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  background: #f2f4f5;
  border-radius: 2px;
}

.markdown pre code {
  margin: 0;
  padding: 0;
  overflow: auto;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 13px;
  background: var(--tbs-neutral-400);
  border: none;
}

.markdown strong,
.markdown b {
  font-weight: 500;
}

.markdown > table {
  width: 100%;
  margin: 8px 0 16px;
  empty-cells: show;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-collapse: collapse;
  border-spacing: 0;
}

.markdown > table th {
  color: #5c6b77;
  font-weight: 500;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.0196078431);
}

.markdown > table th,
.markdown > table td {
  padding: 16px 24px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.markdown blockquote {
  margin: 1em 0;
  padding-left: 0.8em;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 90%;
  border-left: 4px solid rgba(0, 0, 0, 0.06);
}

.tbs-row-rtl .markdown blockquote {
  padding-right: 0.8em;
  padding-left: 0;
  border-right: 4px solid rgba(0, 0, 0, 0.06);
  border-left: none;
}

.markdown blockquote p {
  margin: 0;
}

.markdown .anchor {
  margin-left: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tbs-row-rtl .markdown .anchor {
  margin-right: 8px;
  margin-left: 0;
}

.markdown .waiting {
  color: #ccc;
  cursor: not-allowed;
}

.markdown a.edit-button {
  display: inline-block;
  margin-left: 8px;
  text-decoration: none;
}

.tbs-row-rtl .markdown a.edit-button {
  margin-right: 8px;
  margin-left: 0;
}

.markdown a.edit-button .anticon {
  display: block;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 16px;
}

.markdown a.edit-button .anticon:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
  display: inline-block;
  opacity: 1;
}

.markdown > br,
.markdown > p > br {
  clear: both;
}

.markdown.api-container {
  overflow-x: auto;
}

.markdown.api-container table {
  min-width: 720px;
  margin: 2em 0;
  font-size: 13px;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  line-height: 1.5715;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.markdown.api-container table th,
.markdown.api-container table td {
  padding: 12px;
  border-color: rgba(0, 0, 0, 0.0588235294);
  border-width: 1px 0;
}

.markdown.api-container table th {
  padding-top: 14px;
  border-width: 0 0 2px;
}

.markdown.api-container table tbody tr {
  transition: all 0.3s;
}

.markdown.api-container table tbody tr:hover {
  background: rgba(60, 90, 100, 0.0392156863);
}

.markdown.api-container table td:first-child {
  width: 20%;
  color: #595959;
  font-weight: 600;
}

.markdown.api-container table td:nth-child(3) {
  width: 22%;
  color: #c41d7f;
  font-size: 13px;
  word-break: break-all;
}

.markdown.api-container table td:nth-child(4) {
  width: 16%;
  font-size: 13px;
}

.markdown.api-container hr {
  margin: 12px 0;
}

.grid-demo .demo-row,
[id^=components-grid-demo-] .demo-row,
.grid-demo .code-box-demo .demo-row,
.grid-demo .tbs-row > div,
[id^=components-grid-demo-] .tbs-row > div,
.grid-demo .code-box-demo .tbs-row > div,
[id^=components-grid-demo-] .code-box-demo .tbs-row > div {
  min-height: 30px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #fff;
  text-align: center;
  border-radius: 0;
}

.grid-demo .code-box-demo .tbs-row > div:not(.gutter-row),
[id^=components-grid-demo-] .code-box-demo .tbs-row > div:not(.gutter-row) {
  padding: 16px 0;
  background: #0092ff;
}

.grid-demo .code-box-demo .tbs-row > div:not(.gutter-row):nth-child(odd),
[id^=components-grid-demo-] .code-box-demo .tbs-row > div:not(.gutter-row):nth-child(odd) {
  background: rgba(0, 146, 255, 0.7490196078);
}

.grid-demo .tbs-row .demo-col,
[id^=components-grid-demo-] .tbs-row .demo-col,
.grid-demo .code-box-demo .tbs-row .demo-col,
[id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col {
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 0;
  color: #fff;
  font-size: 18px;
  text-align: center;
  border: none;
}

.grid-demo .tbs-row .demo-col-1,
[id^=components-grid-demo-] .tbs-row .demo-col-1 {
  background: rgba(0, 146, 255, 0.7490196078);
}

.grid-demo .tbs-row .demo-col-2,
[id^=components-grid-demo-] .tbs-row .demo-col-2,
.grid-demo .code-box-demo .tbs-row .demo-col-2,
[id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col-2 {
  background: rgba(0, 146, 255, 0.5019607843);
}

.grid-demo .tbs-row .demo-col-3,
[id^=components-grid-demo-] .tbs-row .demo-col-3,
.grid-demo .code-box-demo .tbs-row .demo-col-3,
[id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col-3 {
  color: #999;
  background: rgba(255, 255, 255, 0.2);
}

.grid-demo .tbs-row .demo-col-4,
[id^=components-grid-demo-] .tbs-row .demo-col-4,
.grid-demo .code-box-demo .tbs-row .demo-col-4,
[id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col-4 {
  background: rgba(0, 146, 255, 0.6);
}

.grid-demo .tbs-row .demo-col-5,
[id^=components-grid-demo-] .tbs-row .demo-col-5,
.grid-demo .code-box-demo .tbs-row .demo-col-5,
[id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col-5 {
  color: #999;
  background: rgba(255, 255, 255, 0.2);
}

.grid-demo .code-box-demo .height-100,
[id^=components-grid-demo-] .code-box-demo .height-100 {
  height: 100px;
  line-height: 100px;
}

.grid-demo .code-box-demo .height-50,
[id^=components-grid-demo-] .code-box-demo .height-50 {
  height: 50px;
  line-height: 50px;
}

.grid-demo .code-box-demo .height-120,
[id^=components-grid-demo-] .code-box-demo .height-120 {
  height: 120px;
  line-height: 120px;
}

.grid-demo .code-box-demo .height-80,
[id^=components-grid-demo-] .code-box-demo .height-80 {
  height: 80px;
  line-height: 80px;
}

[id=components-grid-demo-playground] > .code-box-demo .tbs-row > div,
[id=components-grid-demo-gutter] > .code-box-demo .tbs-row > div {
  margin-top: 0;
  margin-bottom: 0;
}

.markdown ul.tbs-timeline {
  line-height: 2;
}

.markdown ul.tbs-timeline li.tbs-timeline-item {
  margin: 0;
  padding: 0 0 30px;
  list-style: none;
}

.markdown ul.tbs-timeline li.tbs-timeline-item .tbs-timeline-item-content {
  position: relative;
  top: -14px;
  padding-left: 32px;
  font-size: 14px;
}

.markdown ul.tbs-timeline li.tbs-timeline-item .tbs-timeline-item-content > h2 {
  margin-top: 0;
  padding-top: 4px;
  direction: ltr;
}

.tbs-row-rtl .markdown ul.tbs-timeline li.tbs-timeline-item .tbs-timeline-item-content > h2 span {
  float: right;
}

.markdown ul.tbs-timeline li.tbs-timeline-item:first-child {
  margin-top: 40px;
}

.design-inline-cards {
  display: flex;
  margin: 0 -20px;
}

.design-inline-cards > * {
  flex: 10%;
  margin: 0 20px;
}

.design-inline-cards img {
  width: 100%;
  max-width: 100%;
}

.design-inline-cards h4 {
  margin-bottom: 0;
}

.preview-image-boxes {
  display: flex;
  float: right;
  clear: both;
  width: 496px;
  margin: 0 0 70px 64px;
}

.preview-image-boxes-with-carousel {
  width: 420px;
}

.preview-image-boxes-with-carousel .preview-image-box img {
  padding: 0;
}

.preview-image-boxes + .preview-image-boxes {
  margin-top: -35px;
}

.preview-image-box {
  float: left;
  width: 100%;
}

.preview-image-box + .preview-image-box {
  margin-left: 24px;
}

.preview-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: #f2f4f5;
}

.preview-image-wrapper.video {
  display: block;
  padding: 0;
  background: 0;
}

.preview-image-wrapper video {
  display: block;
  width: 100%;
}

.preview-image-wrapper video + svg {
  position: absolute;
  top: 0;
  left: 0;
}

.preview-image-wrapper.good:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--tbs-primary-color);
  content: "";
}

.preview-image-wrapper.bad:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: var(--tbs-error-color);
  content: "";
}

.preview-image-title {
  margin-top: 5px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 12px;
}

.preview-image-description {
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 12px;
  line-height: 1.5;
}

.preview-image-description hr {
  margin: 2px 0;
  background: none;
  border: 0;
}

.preview-image-box img {
  max-width: 100%;
  padding: 12px;
  background: #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.preview-image-box img.no-padding {
  padding: 0;
  background: none;
}

.preview-image-boxes.preview-image-boxes-with-carousel img {
  padding: 0;
  box-shadow: 0 1px #ddd, 0 3px #fff, 0 4px #ddd, 0 6px #fff, 0 7px #ddd;
}

.preview-image-box img:hover {
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3019607843);
}

.image-modal {
  text-align: center;
}

.image-modal-container {
  position: relative;
  text-align: center;
}

.image-modal .image-modal-single.slick-slider {
  padding-bottom: 0;
}

.image-modal .image-modal-single .slick-dots {
  display: none !important;
}

.transition-video-player,
.motion-video-min {
  float: right;
  width: 600px;
  padding: 0 0 70px 20px;
}

.transition-video-player .preview-image-wrapper,
.motion-video-min .preview-image-wrapper {
  padding: 0;
}

.motion-video-min {
  width: 390px;
}

.motion-principle-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 48px 0 24px;
}

.principle-wrapper {
  width: 100%;
}

.principle-wrapper .principle {
  display: inline-block;
  width: 100%;
  min-height: 180px;
  margin-right: 12.5%;
  margin-bottom: 24px;
  padding: 24px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.principle-wrapper .principle:last-child {
  margin-right: 0;
}

.principle-wrapper .principle h4 {
  margin: 16px 0 8px;
}

.principle-wrapper .principle p {
  font-size: 12px;
  line-height: 24px;
}

.toc {
  margin: 16px 0;
  padding-left: 0;
  font-size: 12px;
  list-style: none;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.page-wrapper-rtl .toc {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-left: none;
}

ul.toc > li {
  margin-left: 0;
  padding-left: 0;
  line-height: 1.5;
  list-style: none;
}

ul.toc > li:not(:last-child) {
  margin-bottom: 4px;
}

.page-wrapper-rtl ul.toc > li {
  margin-right: 0;
  padding-right: 0;
}

.toc li > ul {
  display: none;
  font-size: 12px;
  text-indent: 8px;
}

.toc a {
  display: block;
  width: 110px;
  margin-left: -1px;
  padding-left: 16px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8509803922);
  white-space: nowrap;
  text-overflow: ellipsis;
  border-left: 1px solid transparent;
  transition: all 0.3s ease;
}

.page-wrapper-rtl .toc a {
  margin-right: -1px;
  margin-left: 0;
  padding-right: 16px;
  padding-left: 0;
  border-right: 1px solid transparent;
  border-left: none;
}

.toc a:hover {
  color: var(--tbs-primary-color);
}

.toc a.current {
  color: var(--tbs-primary-color);
  border-color: var(--tbs-primary-color);
}

.toc-affix {
  position: absolute;
  top: 8px;
  right: 20px;
}

.toc-affix .tbs-affix {
  z-index: 9;
  max-height: calc(100vh - 16px);
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
}

.page-wrapper-rtl .toc-affix {
  right: auto;
  left: 20px;
}

.toc-affix-bottom {
  position: absolute;
  right: 20px;
  bottom: 88px;
}

.toc-affix-bottom .tbs-affix {
  background: #fff;
}

.page-wrapper-rtl .toc-affix-bottom {
  right: auto;
  left: 20px;
}

#page-404 {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-image: url(https://os.alipayobjects.com/rmsportal/NOAjOBbnYCrtbsrW.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-attachment: fixed;
}

#page-404 section {
  position: absolute;
  top: 48%;
  left: 55%;
  margin: -103px 0 0 -120px;
  text-align: center;
}

#page-404 h1 {
  color: var(--tbs-primary-color);
  font-weight: 500;
  font-size: 120px;
}

#page-404 p {
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 18px;
}

pre code {
  display: block;
  padding: 16px 32px;
  color: rgba(0, 0, 0, 0.8509803922);
  font-size: 14px;
  font-family: Lucida Console, Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  line-height: 2;
  white-space: pre;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
}

code[class*=language-],
pre[class*=language-] {
  color: #000;
  font-family: Lucida Console, Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  line-height: 1.5;
  direction: ltr;
  white-space: pre;
  text-align: left;
  word-wrap: normal;
  word-break: normal;
  word-spacing: normal;
  tab-size: 4;
  hyphens: none;
  background: none;
}

pre[class*=language-]::selection,
code[class*=language-]::selection {
  text-shadow: none;
  background: #b3d4fc;
}

pre[class*=language-]::selection,
pre[class*=language-] ::selection,
code[class*=language-]::selection,
code[class*=language-] ::selection {
  text-shadow: none;
  background: #b3d4fc;
}

@media print {
  code[class*=language-],
  pre[class*=language-] {
    text-shadow: none;
  }
}
pre[class*=language-] {
  margin: 16px 0;
  padding: 12px 20px;
  overflow: auto;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
  background: var(--tbs-neutral-400);
}

:not(pre) > code[class*=language-] {
  padding: 0.1em;
  white-space: normal;
  border-radius: 0.3em;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #708090;
}

.token.punctuation {
  color: #999;
}

.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #f81d22;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted,
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #0b8235;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #008dff;
}

.token.function {
  color: #f81d22;
}

.token.regex,
.token.important,
.token.variable {
  color: #e90;
}

.token.important,
.token.bold {
  font-weight: 700;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.code-boxes-col-1-1 {
  width: 100%;
}

.code-boxes-col-2-1 {
  display: inline-block;
  vertical-align: top;
}

.code-box {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  transition: all 0.2s;
}

.code-box .code-box-title,
.code-box .code-box-title a {
  color: rgba(0, 0, 0, 0.8509803922);
  background: #fff;
}

.code-box .code-box-description p {
  color: rgba(0, 0, 0, 0.8509803922);
}

.code-box,
.code-box .code-box-demo {
  background-color: #fff;
}

.code-box .markdown pre {
  margin: 0.5em 0;
  padding: 6px 12px;
}

.code-box .markdown pre code {
  margin: 0;
  background: var(--tbs-neutral-400);
}

.code-box:target {
  border: 1px solid var(--tbs-primary-color);
}

.code-box-expand-trigger {
  position: relative;
  margin-left: 12px;
  color: #3b4357;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.75;
  transition: all 0.3s;
}

.code-box-expand-trigger:hover {
  opacity: 1;
}

.tbs-row-rtl .code-box-expand-trigger {
  margin-right: 8px;
  margin-left: 0;
}

.code-box-title {
  position: absolute;
  top: -14px;
  margin-left: 16px;
  padding: 1px 8px;
  color: #777;
  background: #fff;
  border-radius: 2px 2px 0 0;
  transition: background-color 0.4s;
}

.tbs-row-rtl .code-box-title {
  margin-right: 16px;
  margin-left: 0;
  border-radius: 2px 0 0 2px;
}

.code-box-title a,
.code-box-title a:hover {
  color: rgba(0, 0, 0, 0.8509803922);
  font-weight: 500;
  font-size: 14px;
}

.code-box-description {
  padding: 18px 24px 12px;
}

.code-box a.edit-button {
  position: absolute;
  top: 7px;
  right: -16px;
  padding-right: 6px;
  font-size: 12px;
  text-decoration: none;
  background: inherit;
  transform: scale(0.9);
}

.tbs-row-rtl .code-box a.edit-button {
  right: auto;
  left: -21px;
  padding-right: 0;
  padding-left: 6px;
}

.code-box a.edit-button .anticon {
  color: rgba(0, 0, 0, 0.4509803922);
  transition: all 0.3s;
}

.code-box a.edit-button .anticon:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.tbs-row.tbs-row-rtl .code-box a.edit-button {
  right: auto;
  left: -22px;
  margin-right: 0;
  padding-right: 8px;
  padding-left: 6px;
}

.code-box-demo {
  padding: 42px 24px 50px;
  color: rgba(0, 0, 0, 0.8509803922);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.code-box iframe {
  width: 100%;
  border: 0;
}

.code-box-meta.markdown {
  position: relative;
  width: 100%;
  font-size: 14px;
  border-radius: 0 0 2px 2px;
  transition: background-color 0.4s;
}

.code-box-meta blockquote {
  margin: 0;
}

.code-box-meta h4,
section.code-box-meta p {
  margin: 0;
}

.code-box-meta > p {
  width: 100%;
  margin: 0.5em 0;
  padding-right: 25px;
  font-size: 12px;
  word-break: break-word;
}

.tbs-row-rtl .code-box-meta > p {
  padding-right: 0;
  padding-left: 25px;
}

.code-box.expand .code-box-meta {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  border-radius: 0;
}

.code-box .code-expand-icon {
  cursor: pointer;
}

.code-box .code-expand-icon-show,
.code-box .code-expand-icon-hide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-shadow: none;
  transition: all 0.4s;
  -webkit-user-select: none;
  user-select: none;
}

.tbs-row-rtl .code-box .code-expand-icon-show,
.tbs-row-rtl .code-box .code-expand-icon-hide {
  right: 0;
  left: auto;
}

.code-box .code-expand-icon-show {
  opacity: 0.55;
  pointer-events: auto;
}

.code-box .code-expand-icon-show:hover,
.code-box .code-expand-icon.tbs-tooltip-open .code-expand-icon-show {
  opacity: 1;
}

.code-box .code-expand-icon-hide {
  opacity: 0;
  pointer-events: none;
}

.code-box .highlight-wrapper {
  display: none;
  overflow: auto;
  border-radius: 0 0 2px 2px;
}

.code-box .highlight-wrapper-expand {
  display: block;
}

.code-box .highlight {
  position: relative;
}

.code-box .highlight .tbs-tabs-nav-scroll {
  text-align: center;
}

.code-box .highlight pre {
  margin: 0;
  padding: 0;
  background: #fff;
}

.code-box .highlight:not(:first-child) {
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

.code-box-actions {
  display: flex;
  justify-content: center;
  padding: 12px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.code-box-actions:hover {
  opacity: 1;
}

.code-box-actions > form,
.code-box-actions > span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  vertical-align: top;
}

.tbs-row-rtl .code-box-actions > form,
.tbs-row-rtl .code-box-actions > span {
  margin-right: 16px;
  margin-left: 0;
}

.code-box-actions > form:first-child,
.code-box-actions > span:first-child {
  margin-left: 0;
}

.tbs-row-rtl .code-box-actions > form:first-child,
.tbs-row-rtl .code-box-actions > span:first-child {
  margin-right: 0;
}

.code-box-actions > form {
  top: -2px;
}

.code-box-code-action {
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 16px;
  line-height: 18px;
  cursor: pointer;
  transition: all 0.24s;
}

.code-box-code-action:hover {
  color: rgba(0, 0, 0, 0.7490196078);
}

.code-box-code-copy {
  width: 20px;
  height: 20px;
  color: rgba(0, 0, 0, 0.4509803922);
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.24s;
}

.code-box-code-copy:hover {
  color: rgba(0, 0, 0, 0.7490196078);
  transform: scale(1.2);
}

.code-box-code-copy.anticon-check {
  color: #52c41a !important;
  font-weight: 700;
}

.highlight-wrapper:hover .code-box-code-copy,
.highlight-wrapper:hover .code-box-codepen,
.highlight-wrapper:hover .code-box-codesandbox,
.highlight-wrapper:hover .code-box-riddle {
  opacity: 1;
}

.code-box pre {
  width: auto;
  margin: 0;
}

.code-box pre code {
  background: #fff;
  border: none;
}

.code-box-debug {
  border-color: #d3adf7;
}

.code-box-debug .code-box-title a {
  color: #722ed1;
}

.show-riddle-button .code-box-riddle {
  display: block;
}

.all-code-box-controls {
  float: right;
}

.tbs-row-rtl .all-code-box-controls {
  float: left;
}

.tbs-row-rtl #components-tooltip-demo-placement .code-box-demo,
.tbs-row-rtl #components-popover-demo-placement .code-box-demo,
.tbs-row-rtl #components-popconfirm-demo-placement .code-box-demo {
  direction: ltr;
}

.color-palettes {
  margin: 0 1%;
}

.color-palettes-dark {
  margin: 0;
  padding: 0 28px;
  background-color: #141414;
}

.color-palettes-dark .color-title {
  color: rgba(255, 255, 255, 0.8509803922);
}

.color-palettes-dark .color-description {
  color: rgba(255, 255, 255, 0.4509803922);
}

.color-palettes-dark .color-palette {
  margin: 45px 3.5% 45px 0;
}

.color-palettes-dark .color-palette:nth-of-type(3n) {
  margin-right: 0;
}

.color-palettes-dark .color-palette .main-color-item {
  margin-right: 0;
}

.color-palettes-dark .color-palette .main-color-item:hover {
  margin-right: -8px;
}

.color-palette {
  display: inline-block;
  width: 31%;
  margin: 45px 1%;
}

.color-palette-pick {
  margin: 0 0 20px;
  font-size: 20px;
  text-align: center;
}

.color-palette-picker {
  margin: 24px 0;
}

.color-palette-picker-value {
  position: relative;
  top: -3px;
  margin-left: 16px;
  font-size: 14px;
  font-family: Consolas, sans-serif;
}

.color-palette-picker-validation {
  position: relative;
  top: -3px;
  margin-left: 16px;
  color: var(--tbs-error-color);
  font-size: 13px;
}

.color-palette-picker-validation-dark {
  margin-left: 0;
}

.main-color {
  text-align: left;
}

.main-color .palette-blue-1 {
  background: #e6f7ff;
}

.main-color .palette-blue-2 {
  background: #bae7ff;
}

.main-color .palette-blue-3 {
  background: #91d5ff;
}

.main-color .palette-blue-4 {
  background: #69c0ff;
}

.main-color .palette-blue-5 {
  background: #40a9ff;
}

.main-color .palette-blue-6 {
  background: #1890ff;
}

.main-color .palette-blue-7 {
  background: #096dd9;
}

.main-color .palette-blue-8 {
  background: #0050b3;
}

.main-color .palette-blue-9 {
  background: #003a8c;
}

.main-color .palette-blue-10 {
  background: #002766;
}

.main-color .palette-purple-1 {
  background: #f9f0ff;
}

.main-color .palette-purple-2 {
  background: #efdbff;
}

.main-color .palette-purple-3 {
  background: #d3adf7;
}

.main-color .palette-purple-4 {
  background: #b37feb;
}

.main-color .palette-purple-5 {
  background: #9254de;
}

.main-color .palette-purple-6 {
  background: #722ed1;
}

.main-color .palette-purple-7 {
  background: #531dab;
}

.main-color .palette-purple-8 {
  background: #391085;
}

.main-color .palette-purple-9 {
  background: #22075e;
}

.main-color .palette-purple-10 {
  background: #120338;
}

.main-color .palette-cyan-1 {
  background: #e6fffb;
}

.main-color .palette-cyan-2 {
  background: #b5f5ec;
}

.main-color .palette-cyan-3 {
  background: #87e8de;
}

.main-color .palette-cyan-4 {
  background: #5cdbd3;
}

.main-color .palette-cyan-5 {
  background: #36cfc9;
}

.main-color .palette-cyan-6 {
  background: #13c2c2;
}

.main-color .palette-cyan-7 {
  background: #08979c;
}

.main-color .palette-cyan-8 {
  background: #006d75;
}

.main-color .palette-cyan-9 {
  background: #00474f;
}

.main-color .palette-cyan-10 {
  background: #002329;
}

.main-color .palette-green-1 {
  background: #f6ffed;
}

.main-color .palette-green-2 {
  background: #d9f7be;
}

.main-color .palette-green-3 {
  background: #b7eb8f;
}

.main-color .palette-green-4 {
  background: #95de64;
}

.main-color .palette-green-5 {
  background: #73d13d;
}

.main-color .palette-green-6 {
  background: #52c41a;
}

.main-color .palette-green-7 {
  background: #389e0d;
}

.main-color .palette-green-8 {
  background: #237804;
}

.main-color .palette-green-9 {
  background: #135200;
}

.main-color .palette-green-10 {
  background: #092b00;
}

.main-color .palette-magenta-1 {
  background: #fff0f6;
}

.main-color .palette-magenta-2 {
  background: #ffd6e7;
}

.main-color .palette-magenta-3 {
  background: #ffadd2;
}

.main-color .palette-magenta-4 {
  background: #ff85c0;
}

.main-color .palette-magenta-5 {
  background: #f759ab;
}

.main-color .palette-magenta-6 {
  background: #eb2f96;
}

.main-color .palette-magenta-7 {
  background: #c41d7f;
}

.main-color .palette-magenta-8 {
  background: #9e1068;
}

.main-color .palette-magenta-9 {
  background: #780650;
}

.main-color .palette-magenta-10 {
  background: #520339;
}

.main-color .palette-red-1 {
  background: #fff1f0;
}

.main-color .palette-red-2 {
  background: #ffccc7;
}

.main-color .palette-red-3 {
  background: #ffa39e;
}

.main-color .palette-red-4 {
  background: #ff7875;
}

.main-color .palette-red-5 {
  background: #ff4d4f;
}

.main-color .palette-red-6 {
  background: #f5222d;
}

.main-color .palette-red-7 {
  background: #cf1322;
}

.main-color .palette-red-8 {
  background: #a8071a;
}

.main-color .palette-red-9 {
  background: #820014;
}

.main-color .palette-red-10 {
  background: #5c0011;
}

.main-color .palette-volcano-1 {
  background: #fff2e8;
}

.main-color .palette-volcano-2 {
  background: #ffd8bf;
}

.main-color .palette-volcano-3 {
  background: #ffbb96;
}

.main-color .palette-volcano-4 {
  background: #ff9c6e;
}

.main-color .palette-volcano-5 {
  background: #ff7a45;
}

.main-color .palette-volcano-6 {
  background: #fa541c;
}

.main-color .palette-volcano-7 {
  background: #d4380d;
}

.main-color .palette-volcano-8 {
  background: #ad2102;
}

.main-color .palette-volcano-9 {
  background: #871400;
}

.main-color .palette-volcano-10 {
  background: #610b00;
}

.main-color .palette-orange-1 {
  background: #fff7e6;
}

.main-color .palette-orange-2 {
  background: #ffe7ba;
}

.main-color .palette-orange-3 {
  background: #ffd591;
}

.main-color .palette-orange-4 {
  background: #ffc069;
}

.main-color .palette-orange-5 {
  background: #ffa940;
}

.main-color .palette-orange-6 {
  background: #fa8c16;
}

.main-color .palette-orange-7 {
  background: #d46b08;
}

.main-color .palette-orange-8 {
  background: #ad4e00;
}

.main-color .palette-orange-9 {
  background: #873800;
}

.main-color .palette-orange-10 {
  background: #612500;
}

.main-color .palette-gold-1 {
  background: #fffbe6;
}

.main-color .palette-gold-2 {
  background: #fff1b8;
}

.main-color .palette-gold-3 {
  background: #ffe58f;
}

.main-color .palette-gold-4 {
  background: #ffd666;
}

.main-color .palette-gold-5 {
  background: #ffc53d;
}

.main-color .palette-gold-6 {
  background: #faad14;
}

.main-color .palette-gold-7 {
  background: #d48806;
}

.main-color .palette-gold-8 {
  background: #ad6800;
}

.main-color .palette-gold-9 {
  background: #874d00;
}

.main-color .palette-gold-10 {
  background: #613400;
}

.main-color .palette-yellow-1 {
  background: #feffe6;
}

.main-color .palette-yellow-2 {
  background: #ffffb8;
}

.main-color .palette-yellow-3 {
  background: #fffb8f;
}

.main-color .palette-yellow-4 {
  background: #fff566;
}

.main-color .palette-yellow-5 {
  background: #ffec3d;
}

.main-color .palette-yellow-6 {
  background: #fadb14;
}

.main-color .palette-yellow-7 {
  background: #d4b106;
}

.main-color .palette-yellow-8 {
  background: #ad8b00;
}

.main-color .palette-yellow-9 {
  background: #876800;
}

.main-color .palette-yellow-10 {
  background: #614700;
}

.main-color .palette-lime-1 {
  background: #fcffe6;
}

.main-color .palette-lime-2 {
  background: #f4ffb8;
}

.main-color .palette-lime-3 {
  background: #eaff8f;
}

.main-color .palette-lime-4 {
  background: #d3f261;
}

.main-color .palette-lime-5 {
  background: #bae637;
}

.main-color .palette-lime-6 {
  background: #a0d911;
}

.main-color .palette-lime-7 {
  background: #7cb305;
}

.main-color .palette-lime-8 {
  background: #5b8c00;
}

.main-color .palette-lime-9 {
  background: #3f6600;
}

.main-color .palette-lime-10 {
  background: #254000;
}

.main-color .palette-geekblue-1 {
  background: #f0f5ff;
}

.main-color .palette-geekblue-2 {
  background: #d6e4ff;
}

.main-color .palette-geekblue-3 {
  background: #adc6ff;
}

.main-color .palette-geekblue-4 {
  background: #85a5ff;
}

.main-color .palette-geekblue-5 {
  background: #597ef7;
}

.main-color .palette-geekblue-6 {
  background: #2f54eb;
}

.main-color .palette-geekblue-7 {
  background: #1d39c4;
}

.main-color .palette-geekblue-8 {
  background: #10239e;
}

.main-color .palette-geekblue-9 {
  background: #061178;
}

.main-color .palette-geekblue-10 {
  background: #030852;
}

.main-color .palette-gray-1 {
  background: #fff;
}

.main-color .palette-gray-2 {
  background: #fafafa;
}

.main-color .palette-gray-3 {
  background: var(--tbs-neutral-400);
}

.main-color .palette-gray-4 {
  background: #f0f0f0;
}

.main-color .palette-gray-5 {
  background: var(--tbs-neutral-600);
}

.main-color .palette-gray-6 {
  background: #bfbfbf;
}

.main-color .palette-gray-7 {
  background: #8c8c8c;
}

.main-color .palette-gray-8 {
  background: #595959;
}

.main-color .palette-gray-9 {
  background: #434343;
}

.main-color .palette-gray-10 {
  background: #262626;
}

.main-color .palette-gray-11 {
  background: #1f1f1f;
}

.main-color .palette-gray-12 {
  background: #141414;
}

.main-color .palette-gray-13 {
  background: #000;
}

.main-color-item {
  position: relative;
  height: 44px;
  margin-right: 4px;
  padding: 0 12px;
  font-size: 14px;
  font-family: Consolas, sans-serif;
  line-height: 44px;
  cursor: pointer;
  transition: all 0.2s;
}

.main-color-item:first-child {
  border-radius: 4px 4px 0 0;
}

.main-color-item:last-child {
  border-radius: 0 0 4px 4px;
}

.main-color-item:hover {
  margin-right: -8px;
  border-radius: 0 4px 4px 0;
}

.main-color-item .main-color-text {
  float: left;
  transition: all 0.3s;
}

.main-color-item .main-color-value {
  position: relative;
  left: 3px;
  float: right;
  transform: scale(0.85);
  transform-origin: 100% 50%;
  opacity: 0;
  transition: all 0.3s;
}

.color-title {
  margin: 0 0 24px;
  color: #5c6b77;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  text-transform: capitalize;
}

.color-description {
  display: block;
  color: #777;
  font-weight: lighter;
  font-size: 14px;
}

.main-color:hover .main-color-value {
  left: 0;
  opacity: 0.7;
}

.color-palette-horizontal {
  width: 100%;
}

.color-palette-horizontal-dark {
  height: 303px;
  padding: 32px 28px;
  background-color: #141414;
}

.color-palette-horizontal-dark .color-palette-picker {
  margin-bottom: 0;
}

.color-palette-horizontal-dark .color-palette-pick {
  color: rgba(255, 255, 255, 0.6509803922);
  text-align: left;
}

.color-palette-horizontal-dark .color-palette-pick-hex {
  color: rgba(255, 255, 255, 0.6509803922);
}

.color-palette-horizontal .main-color {
  display: flex;
}

.color-palette-horizontal .main-color-item {
  position: relative;
  flex: 1;
  height: 86px;
  margin-right: 0;
  padding: 37px 0 0;
  line-height: normal;
  text-align: center;
  border-radius: 0;
}

.color-palette-horizontal .main-color-item .main-color-text {
  float: none;
}

.color-palette-horizontal .main-color-item:hover {
  height: 96px;
  margin-top: -10px;
  border-radius: 4px 4px 0 0;
}

.color-palette-horizontal .main-color-value {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transform-origin: unset;
}

.color-palette-horizontal .main-color:hover .main-color-item {
  padding-top: 8px;
}

.color-palette-horizontal .main-color:hover .main-color-value {
  bottom: 8px;
  opacity: 0.7;
}

ul.anticons-list {
  margin: 10px 0;
  overflow: hidden;
  list-style: none;
}

ul.anticons-list li {
  position: relative;
  float: left;
  width: 16.66%;
  height: 100px;
  margin: 3px 0;
  padding: 10px 0 0;
  overflow: hidden;
  color: #555;
  text-align: center;
  list-style: none;
  background-color: inherit;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

ul.anticons-list li .anticon {
  margin: 12px 0 8px;
  font-size: 36px;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

ul.anticons-list li .anticon-class {
  display: block;
  font-family: Lucida Console, Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  white-space: nowrap;
  text-align: center;
  transform: scale(0.83);
}

ul.anticons-list li .anticon-class .tbs-badge {
  transition: color 0.3s ease-in-out;
}

ul.anticons-list li:hover {
  color: #fff;
  background-color: var(--tbs-primary-color);
}

ul.anticons-list li:hover .anticon {
  transform: scale(1.4);
}

ul.anticons-list li:hover .tbs-badge {
  color: #fff;
}

ul.anticons-list li.TwoTone:hover {
  background-color: #8ecafe;
}

ul.anticons-list li.copied:hover {
  color: rgba(255, 255, 255, 0.2);
}

ul.anticons-list li:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  line-height: 110px;
  text-align: center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  content: "Copied!";
}

ul.anticons-list li.copied:after {
  top: -10px;
  opacity: 1;
}

.copied-code {
  padding: 2px 4px;
  font-size: 12px;
  background: var(--tbs-neutral-400);
  border-radius: 2px;
}

.icon-pic-searcher {
  display: inline-block;
  margin: 0 8px;
}

.icon-pic-searcher .icon-pic-btn {
  color: rgba(0, 0, 0, 0.4509803922);
  cursor: pointer;
  transition: all 0.3s;
}

.icon-pic-searcher .icon-pic-btn:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

.icon-pic-preview {
  width: 66px;
  height: 66px;
  margin-top: 10px;
  padding: 8px;
  text-align: center;
  border: 1px solid var(--tbs-neutral-600);
  border-radius: 4px;
}

.icon-pic-preview > img {
  max-width: 50px;
  max-height: 50px;
}

.icon-pic-search-result {
  min-height: 50px;
  padding: 0 10px;
}

.icon-pic-search-result > .result-tip {
  padding: 10px 0;
  color: rgba(0, 0, 0, 0.4509803922);
}

.icon-pic-search-result > table {
  width: 100%;
}

.icon-pic-search-result > table .col-icon {
  width: 80px;
  padding: 10px 0;
}

.icon-pic-search-result > table .col-icon > i {
  font-size: 30px;
}

.icon-pic-search-result > table .col-icon > i :hover {
  color: var(--tbs-primary-color-hover);
}

.browser-mockup {
  position: relative;
  border-top: 2em solid rgba(230, 230, 230, 0.7);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0.1em 0.5em rgba(0, 0, 0, 0.2784313725);
}

.browser-mockup:before {
  position: absolute;
  top: -1.25em;
  left: 1em;
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: #f44;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #f44, 1.5em 0 0 2px #9b3, 3em 0 0 2px #fb5;
  content: "";
}

.browser-mockup.with-tab:after {
  position: absolute;
  top: -2em;
  left: 5.5em;
  display: block;
  width: 20%;
  height: 0;
  border-right: 0.8em solid transparent;
  border-bottom: 2em solid white;
  border-left: 0.8em solid transparent;
  content: "";
}

.browser-mockup.with-url:after {
  position: absolute;
  top: -1.6em;
  left: 5.5em;
  display: block;
  width: calc(100% - 6em);
  height: 1.2em;
  background-color: #fff;
  border-radius: 2px;
  content: "";
}

.browser-mockup > * {
  display: block;
}

.new-version-info-modal img {
  position: absolute;
  top: 36px;
  left: 34px;
  width: 100px;
}

.new-version-info-modal p {
  margin-top: 1em;
}

.new-version-info-modal .anticon {
  display: none;
}

.new-version-info-modal .tbs-confirm-body {
  margin-left: 120px;
}

.new-version-info-modal .tbs-confirm-body .tbs-confirm-title {
  font-size: 18px;
}

.new-version-info-modal .tbs-confirm-body .tbs-confirm-content {
  margin-left: 0;
}

.motion-container {
  height: 190px;
  margin: 40px 0 20px;
  line-height: 190px;
  text-align: center;
}

.motion-example {
  display: inline-block !important;
  width: 180px;
  height: 180px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 180px;
  text-align: center;
  background: url(https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg) center/180px;
  border-radius: 8px;
  animation-duration: 0.5s !important;
}

.motion-select-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.motion-select {
  width: 180px;
  text-align: left;
}

.video-player {
  position: relative;
  max-width: 800px;
}

.video-player-right {
  float: right;
  width: 616px;
}

.nav-phone-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 1;
  display: none;
  width: 16px;
  height: 22px;
  cursor: pointer;
}

@media only screen and (max-width: 992px) {
  .main-container,
  .tbs-row-rtl .main-container {
    padding-right: 48px;
    padding-left: 48px;
  }
  .main-container .toc-affix,
  .tbs-row-rtl .main-container .toc-affix {
    display: none;
  }
  .code-boxes-col-2-1,
  .code-boxes-col-1-1 {
    float: none;
    width: 100%;
  }
}
@media only screen and (max-width: 767.99px) {
  .preview-image-boxes {
    float: none;
    width: 100%;
    margin: 0 !important;
  }
  .preview-image-box {
    width: 100%;
    margin: 10px 0;
    padding: 0;
  }
  .image-wrapper {
    display: none;
  }
  div.version {
    display: block;
    margin: 29px auto 16px;
  }
  .toc {
    display: none;
  }
  .nav-phone-icon {
    display: block;
  }
  .main {
    height: calc(100% - 86px);
  }
  .aside-container {
    float: none;
    width: auto;
    padding-bottom: 30px;
    border-right: 0;
  }
  .main-container,
  .tbs-row-rtl .main-container {
    margin-right: 0;
    margin-left: 0;
    padding-right: 16px;
    padding-left: 16px;
  }
  .main-container > .markdown > *,
  .tbs-row-rtl .main-container > .markdown > * {
    width: 100% !important;
  }
  .main-wrapper {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .prev-next-nav {
    width: calc(100% - 32px);
    margin-left: 16px;
  }
  .drawer .tbs-menu-inline .tbs-menu-item:after,
  .drawer .tbs-menu-vertical .tbs-menu-item:after {
    right: auto;
    left: 0;
  }
  #_hj_feedback_container {
    display: none;
  }
  .home-page-wrapper .page h2 {
    margin: 80px auto 64px;
  }
  .home-page-wrapper .parallax-bg {
    display: none;
  }
  .banner {
    display: block;
    height: 632px;
  }
  .banner-bg-wrapper {
    display: none;
  }
  .banner .img-wrapper,
  .banner .text-wrapper {
    display: inline-block;
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin: auto;
    text-align: center;
  }
  .banner .img-wrapper {
    position: initial;
    margin-top: 20px;
    text-align: center;
  }
  .banner .img-wrapper svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
  }
  .banner .text-wrapper {
    min-height: 200px;
    margin-top: 32px;
    padding: 0;
  }
  .banner .text-wrapper h1 {
    display: none;
  }
  .banner .text-wrapper p {
    color: #314659;
    font-size: 14px;
    line-height: 28px;
  }
  .banner .text-wrapper .banner-btns {
    display: block;
    min-width: 100%;
    white-space: nowrap;
    text-align: center;
  }
  .banner .text-wrapper .banner-btns .banner-btn {
    padding: 0 20px;
    font-size: 14px;
  }
  .banner .text-wrapper .banner-promote {
    min-width: 100%;
    margin-top: 32px;
  }
  .banner .text-wrapper .banner-promote .tbs-divider {
    display: none;
  }
  .banner .text-wrapper .banner-promote a {
    font-size: 14px;
    white-space: nowrap;
  }
  .banner .text-wrapper .banner-promote a img {
    width: 20px;
  }
  .page1 {
    min-height: 1300px;
  }
  .page1 .tbs-row {
    margin: 24px auto 64px;
  }
  .page1 .tbs-row > div {
    margin-bottom: 48px;
  }
  .page2 {
    min-height: 840px;
    background: #fff;
  }
  .page2-content {
    box-shadow: none;
  }
  .page2-components {
    display: none;
  }
  .page2-product {
    min-height: auto;
    padding: 0 16px;
  }
  .page2-product .product-block {
    margin-bottom: 34px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .page2-product .product-block:last-child {
    margin-bottom: 32px;
    border-bottom: none;
  }
  .page2-product .product-block:last-child .block-text-wrapper {
    height: auto;
  }
  .page2-product .product-block .block-image-wrapper {
    height: 88px;
  }
  .page2-product .product-block .block-image-wrapper img {
    height: 100%;
  }
  .page2-product .product-block .block-text-wrapper {
    padding-bottom: 0;
    border-bottom: none;
  }
  .page2-product .product-block .block-text-wrapper h4 {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 24px;
  }
  .page2-product .product-block .block-text-wrapper p {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 20px;
  }
  .page2-product .product-block .block-text-wrapper a {
    line-height: 20px;
  }
  .page2-product .product-block .block-text-wrapper .components-button-wrapper {
    margin-top: 16px;
    font-size: 12px;
  }
  .page2-product .product-block .block-text-wrapper .components-button-wrapper a {
    display: block;
  }
  .page2-product .product-block .block-text-wrapper a.more-mobile-react,
  .page2-product .product-block .block-text-wrapper a.more-mobile-angular {
    margin-top: 0;
    color: var(--tbs-primary-color);
  }
  .page2-product .product-block .block-text-wrapper a.more-mobile-react:hover,
  .page2-product .product-block .block-text-wrapper a.more-mobile-angular:hover {
    color: #40a9ff;
  }
  .page3 {
    min-height: 688px;
    background: url(https://gw.alipayobjects.com/zos/rmsportal/qICoJIqqQRMeRGhPHBBS.svg) no-repeat;
    background-size: cover;
  }
  .page3 .tbs-row {
    margin: 0 8px;
  }
  .page3 .page3-block {
    margin-bottom: 32px;
    padding: 24px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(174, 185, 193, 0.3019607843);
  }
  .page3 .page3-block:nth-child(2) .page3-img-wrapper img {
    display: block;
    width: 70%;
    margin: auto;
  }
  .page3 .page3-block p {
    font-size: 12px;
  }
  .page3 .page3-block .page3-img-wrapper {
    width: 20%;
  }
  .page3 .page3-block .page3-img-wrapper img {
    width: 100%;
  }
  .page3 .page3-block .page3-text-wrapper {
    width: 80%;
    max-width: initial;
    margin: 0;
    padding-left: 16px;
  }
}
.algolia-autocomplete .ds-dropdown-menu {
  border: none;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.algolia-autocomplete .ds-dropdown-menu [class^=ds-dataset-] {
  background: #fff;
  border: none;
}

.algolia-autocomplete .ds-dropdown-menu [class^=ds-dataset-] .algolia-docsearch-suggestion {
  background: #fff;
}

.algolia-autocomplete .ds-dropdown-menu:before {
  display: none;
}

.algolia-autocomplete .algolia-docsearch-suggestion--title {
  color: rgba(0, 0, 0, 0.8509803922);
}

.algolia-autocomplete .algolia-docsearch-suggestion--highlight {
  color: var(--tbs-primary-color);
}

.page-wrapper-rtl .algolia-autocomplete {
  direction: rtl !important;
}

#nprogress .bar {
  background: var(--tbs-primary-color);
}

#nprogress .peg {
  box-shadow: 0 0 10px var(--tbs-primary-color), 0 0 5px var(--tbs-primary-color);
}

#nprogress .spinner-icon {
  border-top-color: var(--tbs-primary-color);
  border-left-color: var(--tbs-primary-color);
}

[data-theme=dark] input:-webkit-autofill,
[data-theme=dark] input:-webkit-autofill:hover,
[data-theme=dark] input:-webkit-autofill:focus,
[data-theme=dark] textarea:-webkit-autofill,
[data-theme=dark] textarea:-webkit-autofill:hover,
[data-theme=dark] textarea:-webkit-autofill:focus,
[data-theme=dark] select:-webkit-autofill,
[data-theme=dark] select:-webkit-autofill:hover,
[data-theme=dark] select:-webkit-autofill:focus {
  border: 1px solid var(--tbs-neutral-600);
  -webkit-text-fill-color: rgba(0, 0, 0, 0.85);
  box-shadow: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

[data-theme=dark] #header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6509803922);
}

[data-theme=dark] #search-box input::placeholder {
  color: rgba(255, 255, 255, 0.3019607843);
}

[data-theme=dark] .toc-affix .tbs-affix {
  background: #fff;
}

[data-theme=dark] :not(pre) > code[class*=language-],
[data-theme=dark] pre[class*=language-] {
  color: rgba(255, 255, 255, 0.6509803922);
  background: #262626;
}

[data-theme=dark] .code-box {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme=dark] .code-box .markdown pre {
  margin: 0.5em 0;
  padding: 6px 12px;
}

[data-theme=dark] .code-box .markdown pre code {
  margin: 0;
  background: #262626;
}

[data-theme=dark] .code-box-debug {
  border-color: #d3adf7;
}

[data-theme=dark] .code-box-expand-trigger {
  position: relative;
  margin-left: 12px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.3s;
}

[data-theme=dark] .code-box-expand-trigger:hover {
  opacity: 0.65;
}

[data-theme=dark] .code-box-demo {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme=dark] .code-box-actions > [data-theme=dark] .code-box-code-action {
  color: rgba(0, 0, 0, 0.4509803922);
}

[data-theme=dark] .code-box-actions > [data-theme=dark] .code-box-code-action:hover {
  color: rgba(0, 0, 0, 0.8509803922);
}

[data-theme=dark] ul.anticons-list li {
  color: #acacac;
}

[data-theme=dark] ul.anticons-list li.TwoTone:hover {
  background-color: #15395b;
}

[data-theme=dark] ul.anticons-list li:hover .anticon {
  color: #fff;
}

[data-theme=dark] h1,
[data-theme=dark] h2,
[data-theme=dark] h3,
[data-theme=dark] h4,
[data-theme=dark] h5,
[data-theme=dark] h6 {
  color: rgba(0, 0, 0, 0.8509803922);
}

[data-theme=dark] .markdown code,
[data-theme=dark] .markdown pre,
[data-theme=dark] .markdown pre code,
[data-theme=dark] .markdown.api-container table tbody tr:hover {
  background: #262626;
}

[data-theme=dark] .markdown code {
  background: rgba(255, 255, 255, 0.0784313725);
}

[data-theme=dark] .prev-next-nav > a.prev-page .footer-nav-icon-before {
  color: rgba(255, 255, 255, 0.4509803922);
}

[data-theme=dark] .prev-next-nav > a.prev-page:hover .footer-nav-icon-before {
  color: var(--tbs-primary-color);
}

[data-theme=dark] .prev-next-nav > .next-page .footer-nav-icon-after {
  color: rgba(255, 255, 255, 0.4509803922);
}

[data-theme=dark] .prev-next-nav > .next-page:hover .footer-nav-icon-after {
  color: var(--tbs-primary-color);
}

[data-theme=dark] .grid-demo .demo-row,
[data-theme=dark] [id^=components-grid-demo-] .demo-row,
[data-theme=dark] .grid-demo .code-box-demo .demo-row,
[data-theme=dark] [id^=components-grid-demo-] .code-box-demo .demo-row {
  background-image: linear-gradient(90deg, #1d1d1d 4.16666667%, transparent 4.16666667%, transparent 8.33333333%, #1d1d1d 8.33333333%, #1d1d1d 12.5%, transparent 12.5%, transparent 16.66666667%, #1d1d1d 16.66666667%, #1d1d1d 20.83333333%, transparent 20.83333333%, transparent 25%, #1d1d1d 25%, #1d1d1d 29.16666667%, transparent 29.16666667%, transparent 33.33333333%, #1d1d1d 33.33333333%, #1d1d1d 37.5%, transparent 37.5%, transparent 41.66666667%, #1d1d1d 41.66666667%, #1d1d1d 45.83333333%, transparent 45.83333333%, transparent 50%, #1d1d1d 50%, #1d1d1d 54.16666667%, transparent 54.16666667%, transparent 58.33333333%, #1d1d1d 58.33333333%, #1d1d1d 62.5%, transparent 62.5%, transparent 66.66666667%, #1d1d1d 66.66666667%, #1d1d1d 70.83333333%, transparent 70.83333333%, transparent 75%, #1d1d1d 75%, #1d1d1d 79.16666667%, transparent 79.16666667%, transparent 83.33333333%, #1d1d1d 83.33333333%, #1d1d1d 87.5%, transparent 87.5%, transparent 91.66666667%, #1d1d1d 91.66666667%, #1d1d1d 95.83333333%, transparent 95.83333333%);
}

[data-theme=dark] .grid-demo .code-box-demo .tbs-row > div:not(.gutter-row),
[data-theme=dark] [id^=components-grid-demo-] .code-box-demo .tbs-row > div:not(.gutter-row) {
  padding: 16px 0;
  background: #028ac8;
}

[data-theme=dark] .grid-demo .code-box-demo .tbs-row > div:not(.gutter-row):nth-child(odd),
[data-theme=dark] [id^=components-grid-demo-] .code-box-demo .tbs-row > div:not(.gutter-row):nth-child(odd) {
  background: rgba(0, 136, 198, 0.7019607843);
}

[data-theme=dark] .grid-demo .tbs-row .demo-col,
[data-theme=dark] [id^=components-grid-demo-] .tbs-row .demo-col,
[data-theme=dark] .grid-demo .code-box-demo .tbs-row .demo-col,
[data-theme=dark] [id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col {
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 0;
  color: #000;
  font-size: 18px;
  text-align: center;
  border: none;
}

[data-theme=dark] .grid-demo .tbs-row .demo-col-1,
[data-theme=dark] [id^=components-grid-demo-] .tbs-row .demo-col-1 {
  background: rgba(0, 136, 198, 0.7019607843);
}

[data-theme=dark] .grid-demo .tbs-row .demo-col-3,
[data-theme=dark] [id^=components-grid-demo-] .tbs-row .demo-col-3,
[data-theme=dark] .grid-demo .code-box-demo .tbs-row .demo-col-3,
[data-theme=dark] [id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col-3,
[data-theme=dark] .grid-demo .tbs-row .demo-col-5,
[data-theme=dark] [id^=components-grid-demo-] .tbs-row .demo-col-5,
[data-theme=dark] .grid-demo .code-box-demo .tbs-row .demo-col-5,
[data-theme=dark] [id^=components-grid-demo-] .code-box-demo .tbs-row .demo-col-5 {
  color: rgba(0, 0, 0, 0.4509803922);
  background: unset;
}

[data-theme=dark] .markdown > table th {
  color: rgba(255, 255, 255, 0.6509803922);
  background: #1d1d1d;
}

[data-theme=dark] .copied-code {
  background: rgba(255, 255, 255, 0.0784313725);
}

[data-theme=dark] .browser-mockup.with-url:after {
  background-color: #fff;
}

[data-theme=dark] .browser-mockup {
  border-top: 2em solid #262626;
}

[data-theme=dark] .browser-mockup:before {
  background-color: #fb4742;
  box-shadow: 0 0 0 2px #fb4742, 1.5em 0 0 2px #99bc2e, 3em 0 0 2px #ffba5a;
}

[data-theme=dark] .browser-mockup.with-tab:after {
  border-bottom: 2em solid #fff;
}

[data-theme=dark] .algolia-autocomplete .ds-dropdown-menu [class^=ds-dataset-],
[data-theme=dark] .algolia-autocomplete .ds-dropdown-menu [class^=ds-dataset-] .algolia-docsearch-suggestion {
  background: #fff;
}

[data-theme=dark] .algolia-autocomplete .ds-dropdown-menu .ds-suggestion.ds-cursor .algolia-docsearch-suggestion:not(.suggestion-layout-simple) .algolia-docsearch-suggestion--content {
  background-color: rgba(255, 255, 255, 0.0784313725);
}

[data-theme=dark] .algolia-autocomplete .algolia-docsearch-suggestion--category-header {
  color: rgba(255, 255, 255, 0.6509803922);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme=dark] .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column:before {
  background: rgba(0, 0, 0, 0.0588235294);
}

[data-theme=dark] .algolia-autocomplete .algolia-docsearch-suggestion--content:before {
  background: rgba(0, 0, 0, 0.0588235294);
}

[data-theme=dark] .token.comment,
[data-theme=dark] .token.quote {
  color: #b6b18b;
}

[data-theme=dark] .token.property,
[data-theme=dark] .token.variable,
[data-theme=dark] .token.template-variable,
[data-theme=dark] .token.tag,
[data-theme=dark] .token.number,
[data-theme=dark] .token.name,
[data-theme=dark] .token.selector-id,
[data-theme=dark] .token.selector-class,
[data-theme=dark] .token.regexp,
[data-theme=dark] .token.deletion {
  color: #eb3c54;
}

[data-theme=dark] .token.built_in,
[data-theme=dark] .token.builtin-name,
[data-theme=dark] .token.literal,
[data-theme=dark] .token.type,
[data-theme=dark] .token.params,
[data-theme=dark] .token.meta,
[data-theme=dark] .token.link {
  color: #e7ce56;
}

[data-theme=dark] .token.attribute {
  color: #ee7c2b;
}

[data-theme=dark] .token.string,
[data-theme=dark] .token.symbol,
[data-theme=dark] .token.bullet,
[data-theme=dark] .token.addition {
  color: var(--tbs-primary-color);
}

[data-theme=dark] .token.title,
[data-theme=dark] .token.section {
  color: #78bb65;
}

[data-theme=dark] .token.function,
[data-theme=dark] .token.keyword,
[data-theme=dark] .token.selector-tag {
  color: #b45ea4;
}

[data-theme=dark] .hljs {
  display: block;
  padding: 0.5em;
  overflow-x: auto;
  color: #c0c5ce;
  background: #1c1d21;
}

[data-theme=dark] .token.emphasis {
  font-style: italic;
}

[data-theme=dark] .token.strong {
  font-weight: 700;
}

[data-theme=dark] .components-overview-img {
  background-color: rgba(255, 255, 255, 0.1019607843);
}

[data-theme=dark] .components-overview-search input {
  color: rgba(255, 255, 255, 0.6509803922);
}

[data-direction=rtl] #_hj_feedback_container > div {
  left: 32px;
}

[data-direction=rtl] .fixed-widgets {
  right: auto;
  left: 32px;
}

@media screen and (max-width: 767px) {
  .pic-plus img {
    width: 120px;
    height: auto;
  }
}
.pic-plus > * {
  display: inline-block !important;
  vertical-align: middle;
}

.pic-plus span {
  margin: 0 20px;
  color: #aaa;
  font-size: 30px;
}

.top-menu-additional {
  position: relative;
  right: 80px;
  width: 190px;
}

.theme-color-content .tbs-popover-inner-content {
  width: 200px;
  padding: 0;
}

#ng-content {
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.toc-affix .tbs-anchor {
  font-size: 12px;
}

.toc-affix .tbs-anchor .tbs-anchor-ink:before {
  width: 1px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
}

.toc-affix .tbs-anchor .tbs-anchor-link-active {
  position: relative;
  z-index: 2;
  margin-left: -2px;
  border-left: 2px solid var(--tbs-primary-color);
}

.toc-affix .tbs-anchor .tbs-anchor-ink-ball-visible {
  display: none;
}

.toc-affix .tbs-anchor .tbs-anchor-link {
  padding: 0 0 4px 16px;
  line-height: 1.5;
}

.toc-affix .tbs-anchor .tbs-anchor-link.tbs-anchor-link-active .tbs-anchor-link-title {
  color: var(--tbs-primary-color);
}

.toc-affix .tbs-anchor .tbs-anchor-link .tbs-anchor-link-title {
  width: 110px;
  color: rgba(0, 0, 0, 0.8509803922);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-page-header {
  border: 1px solid #ebedf0;
}

.site-page-header-ghost-wrapper {
  padding: 24px;
  background-color: var(--tbs-neutral-400);
}

body[data-theme=dark],
[data-theme=dark] * {
  scrollbar-color: #434343 #262626;
}

body[data-theme=dark]::-webkit-scrollbar,
[data-theme=dark] *::-webkit-scrollbar {
  width: 14px;
}

body[data-theme=dark]::-webkit-scrollbar-track,
[data-theme=dark] *::-webkit-scrollbar-track {
  background: #262626;
}

body[data-theme=dark]::-webkit-scrollbar-thumb,
[data-theme=dark] *::-webkit-scrollbar-thumb {
  background-color: #434343;
  border: 2px solid #262626;
  border-radius: 6px;
}

body[data-theme=dark]::-webkit-scrollbar-thumb :hover,
[data-theme=dark] *::-webkit-scrollbar-thumb :hover {
  background-color: #262626;
}

label.api-type-label {
  display: inline;
  margin-left: 8px;
  padding: 1px 10px;
  color: rgba(255, 255, 255, 0.8509803922);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 2px;
}

label.api-type-label.standalone {
  color: #faad14;
  border: 2px solid #faad14;
}

label.api-type-label.directive {
  color: #eb2f96;
  border: 2px solid #eb2f96;
}

label.api-type-label.component {
  color: #1890ff;
  border: 2px solid #1890ff;
}

label.api-type-label.service {
  color: #52c41a;
  border: 2px solid #52c41a;
}

[data-theme=dark] .site-badge-count-4 .tbs-badge-count {
  background-color: #fff !important;
  box-shadow: 0 0 0 1px #434343 inset !important;
}

[data-theme=dark] .head-example {
  background: rgba(255, 255, 255, 0.1215686275) !important;
}

[data-theme=dark] .popover-menu .tbs-popover-inner-content #nav a {
  color: rgba(0, 0, 0, 0.8509803922);
}

[data-theme=dark] .gh-ico {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFtbsVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0tbsoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MzlFQkFERkU4NkJCMTFFM0FBNTJFRTMzNTJEMUJDNDYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MzlFQkFERkQ4NkJCMTFFM0FBNTJFRTMzNTJEMUJDNDYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkU1MTc4QTJFOTlBMDExRTI5QTE1QkMxMDQ2QTg5MDREIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU1MTc4QTJGOTlBMDExRTI5QTE1QkMxMDQ2QTg5MDREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Kk5lQwAABYxJREFUeNrkm29oVXUYx3+7bM3V1FnbqlltrtXWtYRa1nqxooY5E7EhKWGuaTDBagol9SIMDCKICASj+cISw/DPi16ZBakrUBnoC7nNoTMWy6I1c+LmVq6t78N9jpyu555znt855+536IHPi939/jzP95zznN+/kzc1NaUitirwJJgPasF94DZQDG7hMqNgBFwEZ5kU+AH0R+lcXgQCJMBT4EXwLKgM2N7P4FvwJegCk6YKUA5eB23grogu2C/gc7AN/GGKABTsZtAOZqjc2DjYAT5kUfSNBNCkAGwGo1PTZ6PsQ4FuHLp3QD3YDR5QZtgZsAac1ElYokcGbATHDApesS/kUwf7GEkOKAK7wAvKbNsPXgZjYQowG3wNnlDxsONgCbgchgAU/GHwiIqXUT5o8hLBKwfcDA7FMHgrUR/iGLQEoGTyBWhQ8bUGjiFPR4A3QIuKv7VwLKIcQMnue5Dv0fjT/IwtAM3g+RyMBmkU+BXf3qc5Rx3xqDPBE7LjfkaCheCcj1HYKYe6JeBt8GcEo75L3HaJQ7+nfNQ/x7H9p67TFX4L1Pi4EocdfhsGH4BPwVbwqu0xGwI/8vT2N/77Gv+vAJSCO3n6PJ//Vjz72w62cPtORnfAwx7+1nBsW93ugGow7vOKtPkYa9eDl0Clxji9kuvW+yjb5tPncY7xet3MhjoFt2RzgIlU2DQL/O6017W/Be4BawXJqMCgTH+ToOxajvWG1+AmYVBlBglQKrxwmzIFoB9XCzt91CABpL6sti62JcBiXtKS2GMGCSD1pZxjvi7AKmED9PraYJAAG2yvVL+2yi7AImHl90C3QQJ03/B+97ZF1lCYVlN6BBV/BffykNQkoyF4H5grqJOkO6BR2NF2A4O35gifCOs0JjTW9vYaPPPbJ11LJAFqBRVoDf68wQLQI3BBUL424XPiY1lvDOb/ZwRla0iAOYIKv8dAgEFB2VtJgJmCChMxEEAyHigmAQoFFWbFQIDZgrKF0p2hmTEQQOQjCTAmKD8vBgJUCcqOkQBXBBXosEORwcEXKdmBjCskwICgQr5h0+BMW6i8V7LtNkAC9As7WWqwAM8Jy/cnhBMhspVKvq2eC0uwbxLrSWhMa+dpdJQLW6mRpLtpOlyuMcL7CTwErhoSPG2ApjQEuD3BQ0fp0ZJqlT6pZYpt0wieYh60nuWDGp2+At4xIPgt7IvU0jHzBkFdgD27HWDGNGyGFHHfulaXuTN0IkBjZ8EykJeDwKmPFtAXwN8TTltjrVkKfwcawXJW3G3v8DTYCKoiCLwGvAl6QthpbnU6J5jP2f1uh1Wgxbbxwv0qvT/vtZRGA6wuzs50+Pkb8JdgQtPMq1VJld7bnxtSzhjgJD5hzwEW611OZK6xlSvzeYbAsl3Cx4PK7ozodOl6t93hfJByqbzOVnYh+MdHhxfBLI1bnuoMhRx8imPMKgDR5LG/nrSVfddHpx8HeO4/ClmApsw+snXsdk7gYMat+r5Hp0sDCLAkxOA7nfrI1nGxx2tmQUb5x8FuzgvD4Dw4wNm2MIAA1SEF38cx+RaAeBCMZGlwb44GOyUhBD/CsTj24TatpddXq3L+RIVmXnE4QzjJMaSylvBxFdqzKHsVrDD8Dmj36sOvIx0unewHDRENg4MI0BH2FyP0RcZOlzW3Ib7VLvPqDK0z1PEq7bDmLVwCLgnr0AhvnUp/0eJp0k9m6HO4fUp2nGZODgUY5PzUJVlHkxg1TEfnjxqY8I6yb12SSjqLm7T9/Ax4TaW/+JxuIx862KcL4toBk1QFT1omXZLRHQHaL3Npl/r8jH3QjiGsbJ3kGd/fDo6WBWi31KG9a9xXMgzfw35tVfCR9l52dk8Ibe7htnq57YowfY7i4+lYWUL9z+1fAQYACqstE4NCc18AAAAASUVORK5CYII=);
}

[data-theme=dark] .site-page-header {
  border: 1px solid #303030;
}

[data-theme=dark] .site-page-header-ghost-wrapper {
  background-color: rgba(255, 255, 255, 0.0784313725);
}

[data-theme=dark] .drawer-content-wrapper {
  background-color: #fff;
}

.resource-cards .resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  list-style: none;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.resource-cards .resource-card:hover {
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.1215686275), 0 6px 16px rgba(0, 0, 0, 0.0784313725), 0 9px 28px 8px rgba(0, 0, 0, 0.0509803922);
}

.resource-cards .resource-card .resource-card-image {
  width: calc(100% + 2px);
  max-width: none;
  height: 184px;
  margin: -1px -1px 0;
  object-fit: cover;
}

.resource-cards .resource-card .resource-card-title {
  margin: 16px 20px 8px;
  color: #0d1a26;
  font-size: 20px;
  line-height: 28px;
}

.resource-cards .resource-card .resource-card-description {
  margin: 0 20px 20px;
  color: #697b8c;
  font-size: 14px;
  line-height: 22px;
}

.searchbox {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 200px;
  height: 32px !important;
  white-space: nowrap;
  visibility: visible !important;
}

.searchbox .algolia-autocomplete {
  display: block;
  width: 100%;
  height: 100%;
}

.searchbox__wrapper {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 100%;
}

.searchbox__input {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 26px 0 32px;
  font-size: 12px;
  white-space: normal;
  vertical-align: middle;
  background: #fff !important;
  border: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px #ccc;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  appearance: none;
}

.searchbox__input::-webkit-search-cancel-button,
.searchbox__input::-webkit-search-decoration,
.searchbox__input::-webkit-search-results-button,
.searchbox__input::-webkit-search-results-decoration {
  display: none;
}

.searchbox__input:hover {
  box-shadow: inset 0 0 0 1px #b3b3b3;
}

.searchbox__input:active,
.searchbox__input:focus {
  background: #fff;
  outline: 0;
  box-shadow: inset 0 0 0 1px #aaa;
}

.searchbox__input:input-placeholder {
  color: #aaa;
}

.searchbox__input::input-placeholder {
  color: #aaa;
}

.searchbox__input::placeholder {
  color: #aaa;
}

.searchbox__submit {
  position: absolute;
  top: 0;
  right: inherit;
  left: 0;
  width: 32px;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(69, 142, 225, 0);
  border: 0;
  border-radius: 16px 0 0 16px;
  -webkit-user-select: none;
  user-select: none;
}

.searchbox__submit:before {
  display: inline-block;
  height: 100%;
  margin-right: -4px;
  vertical-align: middle;
  content: "";
}

.searchbox__submit:active,
.searchbox__submit:hover {
  cursor: pointer;
}

.searchbox__submit:focus {
  outline: 0;
}

.searchbox__submit svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  fill: #6d7e96;
}

.searchbox__reset {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  margin: 0;
  padding: 0;
  font-size: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  fill: rgba(0, 0, 0, 0.5019607843);
}

.searchbox__reset.hide {
  display: none;
}

.searchbox__reset:focus {
  outline: 0;
}

.searchbox__reset svg {
  display: block;
  width: 8px;
  height: 8px;
  margin: 4px;
}

.searchbox__input:valid ~ .searchbox__reset {
  display: block;
  animation-name: sbx-reset-in;
  animation-duration: 0.15s;
}

@keyframes sbx-reset-in {
  0% {
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
body {
  font-family: "Arimo", sans-serif;
}

.sketch-fields-container {
  display: none !important;
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./node_modules/@ngx-terabase/ui/colors.scss?ngGlobalStyle ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/

/*!******************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[2]!./node_modules/ol/ol.css?ngGlobalStyle ***!
  \******************************************************************************************************************************************************************************************************************************/
.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 1.5px solid rgb(179,197,219);
  background-color: rgba(255,255,255,0.4);
}

.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute;
}

.ol-scale-line {
  background: rgba(0,60,136,0.3);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute;
}
.ol-scale-line-inner {
  border: 1px solid #eee;
  border-top: none;
  color: #eee;
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width;
  transition: all 0.25s;
}
.ol-scale-singlebar-even{
  background-color: #000000;
}
.ol-scale-singlebar-odd{
  background-color: #ffffff;
}
.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.ol-scale-step-marker {
  width: 1px;
  height: 15px;
  background-color: #000000;
  float: right;
  z-index: 10;
}
.ol-scale-step-text {
  position: absolute;
  bottom: -5px;
  font-size: 12px;
  z-index: 11;
  color: #000000;
  text-shadow: -2px 0 #FFFFFF, 0 2px #FFFFFF, 2px 0 #FFFFFF, 0 -2px #FFFFFF;
}
.ol-scale-text {
  position: absolute;
  font-size: 14px;
  text-align: center;
  bottom: 25px;
  color: #000000;
  text-shadow: -2px 0 #FFFFFF, 0 2px #FFFFFF, 2px 0 #FFFFFF, 0 -2px #FFFFFF;
}
.ol-scale-singlebar {
  position: relative;
  height: 10px;
  z-index: 9;
  box-sizing: border-box;
  border: 1px solid black;
}

.ol-unsupported {
  display: none;
}
.ol-viewport, .ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.ol-viewport canvas {
  all: unset;
}
.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}
.ol-grabbing {
  cursor: grabbing;
}
.ol-grab {
  cursor: move;
  cursor: grab;
}
.ol-control {
  position: absolute;
  background-color: rgba(255,255,255,0.4);
  border-radius: 4px;
  padding: 2px;
}
.ol-control:hover {
  background-color: rgba(255,255,255,0.6);
}
.ol-zoom {
  top: .5em;
  left: .5em;
}
.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear;
}
.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}
.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}
.ol-full-screen {
  right: .5em;
  top: .5em;
}

.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: rgba(0,60,136,0.5);
  border: none;
  border-radius: 2px;
}
.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}
.ol-zoom-extent button {
  line-height: 1.4em;
}
.ol-compass {
  display: block;
  font-weight: normal;
  font-size: 1.2em;
  will-change: transform;
}
.ol-touch .ol-control button {
  font-size: 1.5em;
}
.ol-touch .ol-zoom-extent {
  top: 5.5em;
}
.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  background-color: rgba(0,60,136,0.7);
}
.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}
.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}


.ol-attribution {
  text-align: right;
  bottom: .5em;
  right: .5em;
  max-width: calc(100% - 1.3em);
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
}
.ol-attribution a {
  color: rgba(0,60,136,0.7);
  text-decoration: none;
}
.ol-attribution ul {
  margin: 0;
  padding: 1px .5em;
  color: #000;
  text-shadow: 0 0 2px #fff;
  font-size: 12px;
}
.ol-attribution li {
  display: inline;
  list-style: none;
}
.ol-attribution li:not(:last-child):after {
  content: " ";
}
.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}
.ol-attribution button {
  flex-shrink: 0;
}
.ol-attribution.ol-collapsed ul {
  display: none;
}
.ol-attribution:not(.ol-collapsed) {
  background: rgba(255,255,255,0.8);
}
.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
}
.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em;
}
.ol-attribution.ol-uncollapsible button {
  display: none;
}

.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px;
}
.ol-zoomslider button {
  position: relative;
  height: 10px;
}

.ol-touch .ol-zoomslider {
  top: 5.5em;
}

.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em;
}
.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0;
}
.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: block;
}
.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid #7b98bc;
  height: 150px;
  margin: 2px;
  width: 150px;
}
.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 2px;
  left: 2px;
  position: absolute;
}
.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none;
}
.ol-overviewmap:not(.ol-collapsed) {
  background: rgba(255,255,255,0.8);
}
.ol-overviewmap-box {
  border: 2px dotted rgba(0,60,136,0.7);
}

.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}

