body {
  margin: 0;
  padding: 0;
}
#splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f6f5f5;
}

#splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  animation: rotate 2s linear infinite;
  margin-left: calc(100vw - 100%);
  width: 50px;
  height: 50px;
}

.spinner .path {
  stroke: #21294D;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.css-1o4cuih-container {
  margin: 16px 8px;
  width: 100%;
  margin-bottom: 0px !important;
}
.form-group {
  margin-bottom: 0px !important;
}
.react-tag-input {
  margin-right: 0px !important;
}
.col-md-6 {
  align-self: flex-end;
}

.MuiFormControlLabel-root {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.MuiTextField-root {
  margin: 0px !important;
}
.col-md-6,
.col-md-12 {
  align-self: flex-start !important;
  margin-bottom: 10px !important;
}
.MuiFormControl-marginNormal {
  margin-top: 16px !important;
  margin-bottom: 8px !important;
}

@media (min-width: 1025px) {
  .kt-container {
    padding-left: 5px !important;
  }
}
