/*Mixins*/
.nullPaddingMargin {
  padding: 0;
  margin: 0;
}
.flex-h {
  display: flex;
  flex-direction: row;
}
.flex-h-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.flex-h-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.flex-h-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.flex-v {
  display: flex;
  flex-direction: column;
}
.flex-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flex-v-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.flex-v-end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.flex-align-center {
  align-items: center;
}
@keyframes progressbar-infinite {
  from {
    left: 0;
  }
  25% {
    left: 100%;
  }
  50% {
    left: 0;
    right: 0;
  }
  75% {
    right: 100%;
  }
  to {
    right: 0;
  }
}
/* Writing */
*.loading {
  position: relative;
}
*.loading:after {
  content: 'Chargement...';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
}
.ov-progress-bar {
  border: solid 1px #4a4a4a;
  padding: 2px;
}
.ov-progress-bar div {
  background: #0c5460;
  height: 100%;
}
.ov-progress-bar.infinite {
  position: relative;
}
.ov-progress-bar.infinite div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: unset !important;
  animation: 5s progressbar-infinite infinite;
}
body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
header {
  color: #3d444b;
  text-align: center;
  padding: 5px;
  border-bottom: solid 1px #d1d4d7;
}
header #logo {
  height: 50px;
}
#bs-dashboard-pane {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-flow: nowrap;
  height: 100%;
}
#bs-left-pane,
#bs-central-pane {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: auto;
}
#bs-left-pane {
  display: flex;
  flex-direction: column;
  color: #adaeaf;
  background: #545556;
  width: 250px;
  padding: 15px 8px;
}
#bs-left-pane .bs-item:not(:last-child) {
  margin-bottom: 10px;
}
#bs-left-pane .bs-card {
  color: #545556;
  background: #adaeaf;
  border-radius: 5px;
  padding: 8px;
}
#bs-left-pane #bs-import-pane {
  display: flex;
  flex-direction: column;
}
#bs-left-pane .bs-btn {
  background: #545556;
  color: #adaeaf;
  padding: 5px 10px;
  border-radius: 4px;
}
#bs-left-pane .bs-item:not(.bs-card) {
  white-space: nowrap;
  min-height: 30px;
  padding: 7px 0;
}
#bs-central-pane {
  left: 250px;
  right: 0;
}
#bs-central-pane > .bs-item {
  position: relative;
  width: 100%;
  height: 100%;
}
#bs-central-pane > .bs-item:not(#bs-home) {
  display: none;
}
#bs-home {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#bs-generation-pane {
  padding: 20px;
}
#bs-generation-pane .bs-importation-state {
  color: #4e555b;
  padding: 20px 30px;
}
#bs-download-pane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 5;
  background: rgba(0, 0, 0, 0.7);
}
#bs-download-pane .bs-content-container {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 25px 30px;
}
#bs-download-pane .bs-closer {
  margin-top: 20px;
}
#bs-generation-error-pane {
  font-size: 13px;
}
input:not(.btn):not([type="checkbox"]),
select {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}
.bs-link,
.bs-btn {
  cursor: pointer;
  user-select: none;
}
.bs-btn:not(#left-pane .bs-btn) {
  color: white;
  background: #725ef2;
  padding: 5px 15px;
  border: solid 1px rgba(0, 0, 0, 0.4);
}
.fa {
  margin-right: 4px;
}
a:not([href]) {
  cursor: pointer;
}
.tabulator {
  border: none;
}
