@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");.Snackbar_container {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 0px;
  height: 0px;
  overflow: hidden;
  animation-fill-mode: forwards;
  z-index: 10001;
}
.Snackbar_container.on {
  animation-name: example;
  animation-duration: 2s;
}
@keyframes example {
  0% {
    bottom: 50px;
    right: 50px;
    width: 0px;
    height: 0px;
    border-radius: 50px;
  }
  25%, 75% {
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50px;
  }
  100% {
    bottom: 0px;
    right: 0px;
    width: 100vw;
    height: 100px;
    border-radius: 0px;
  }
}

.Snackbar_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 10px;
}
.Snackbar_inner.on {
  animation-name: example5;
  animation-duration: 2s;
}
@keyframes example5 {
  0%, 25%, 75% {
    height: 80px;
  }
  100% {
    height: 100px;
  }
}

.Snackbar_msgIcon {
  width: 100px;
  display: flex;
  justify-content: center;
}
.Snackbar_msgIcon.on > svg {
  animation-timing-function: cubic-bezier(0.45, -0.55, 0.59, 1.53);
  animation-name: example2;
  animation-duration: 2s;
}
@keyframes example2 {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.2);
  }
  25% {
    transform: scale(2.5);
  }
  100% {
    transform: scale(1);
  }
}

.Snackbar_msg {
  flex: 1;
  opacity: 0;
  animation-fill-mode: forwards;
  overflow: hidden;
}
.Snackbar_msg.on {
  animation-name: example3;
  animation-duration: 2s;
}
@keyframes example3 {
  85% {
    opacity: 0;
    width: 0px;
  }
  100% {
    opacity: 1;
    width: max-content;
  }
}

.Snackbar_closeIcon {
  animation-fill-mode: forwards;
  overflow: hidden;
  opacity: 0;
  width: 0px;
}
.Snackbar_closeIcon.on {
  animation-name: example4;
  animation-duration: 2s;
}
@keyframes example4 {
  85% {
    opacity: 0;
    width: 0px;
  }
  100% {
    opacity: 1;
    width: 75px;
  }
}

body,
button,
html {
  font-family: "Poppins", "Arial", "Helvetica", "Verdana", sans-serif !important;
  background: #484848;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body.light-theme {
  background: #ced2d8; /* ⬜️ light */
  color: #212529;
}
body.dark-theme {
  background: #181924; /* 🌑 dark */
  color: #f8f9fa;
}
.c-app.c-default-layout:not(.c-dark-theme) {
  background: #ced2d8;
  color: #212529;
}
.c-app.c-default-layout.c-dark-theme {
  background: #181924;
  color: #f8f9fa;
}
.c-app,
#root {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: inherit;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
[class*=col-],
.col {
  position: relative;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
a {
  color: #7267d3;
}
.text-center {
  text-align: center !important;
}
.d-none {
  display: none !important;
}
.d-flex {
  display: flex !important;
}
.w-100 {
  width: 100% !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.dateRangeInput {
  width: 150px;
  float: left;
  margin: 15px;
}
.navBarObjects {
  margin-left: 10px;
}
.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #336bdc;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.outlineOk {
  box-shadow: 0 0 20px #29be2f;
}
.outlineFail {
  box-shadow: 0 0 20px #be0626;
}