/*# sourceMappingURL=http://localhost/eethuisima2025/flexgrid/html/src/Tabs/Css/tabs.less.map*/.cw1 {
  --cw:1;
}
.cw2 {
  --cw:2;
}
.cw3 {
  --cw:3;
}
.cw4 {
  --cw:4;
}
.cw5 {
  --cw:5;
}
.cw6 {
  --cw:6;
}
.cw7 {
  --cw:7;
}
.cw8 {
  --cw:8;
}
.cw9 {
  --cw:9;
}
.cw10 {
  --cw:10;
}
.cw11 {
  --cw:11;
}
.cw12 {
  --cw:12;
}
:root {
  --tab-height: 50px;
  --tab-padding-x: 25px;
  --tab-border-color: blue;
  --tab-background-color:#fff;
  --tab-active-background-color:transparent;
  --tab-active-color: #05043e;
}
.tab-panes {
  min-height: 40px;
}
.tab-panes .tab-pane {
  border: 1px solid var(--tab-active-background-color);
  margin-top: -1px;
  display: none;
}
.tab-panes .tab-pane.is-active {
  display: block;
}
.tabs {
  display: flex;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #dfe3e8;
  border-radius: 6px 6px 0 0;
  margin: 0;
}
@media (max-width: 992px) {
  .tabs {
    flex-wrap: wrap;
    --font-size:12px;
  }
  .tabs .tab {
    flex-grow: 1;
  }
}
.tabs .tab {
  background-color: var(--tab-background-color);
  display: flex;
  gap: 5px;
  padding: 0 var(--tab-padding-x);
  border: 1px solid var(--tab-active-background-color);
  height: var(--tab-height);
  align-items: center;
  cursor: pointer;
}
.tabs .tab.is-active {
  background-color: var(--tab-active-background-color);
  color: var(--tab-active-color, #fff);
  border-bottom: 1px solid transparent;
}
.tabs .tab.control-tab {
  margin-left: auto;
  margin-right: 0px;
}
.tabs .tab.control-tab + .control-tab {
  margin-left: 0;
}
.tabs .tab a:not(.button) {
  flex-grow: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.tabs li:nth-child(1) {
  border-radius: 6px 0 0 0;
}
.tabs li:last-child {
  border-radius: 0 6px 0 0;
}
.tabs.tabs--vertical {
  flex-direction: column;
}
.tabs.tabs--vertical li:nth-child(1) {
  border-radius: 6px 6px 0 0;
}
.tabs.tabs--vertical li:last-child {
  border-radius: 0 0 6px 6px;
}
