.loading_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    display: block;
    position: absolute;
  }

  .loader_logo {
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(50% - 50px);
    top: 38%;
  }

  .loader_logo img {
    height: 100%;
    width: 100%;
  }

  .loading {
    border: 3px solid rgba(102, 51, 153, 0.45);
    position: absolute;
    left: calc(50% - 40px);
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border-top-color: #8b5cf6;
    animation: loader 1s ease-in-out infinite;
    -webkit-animation: loader 1s ease-in-out infinite;
  }

  @keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

/* Global form label sizing */
.col-form-label,
label.col-form-label,
legend,
legend.col-form-label {
  font-size: 16px;
  font-weight: 600;
}

/* Primary color overrides */
:root {
  --primary: #2067F4;
  --blue: #2067F4;
}

.btn-primary {
  background-color: #2067F4;
  border-color: #2067F4;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #1b57d2;
  border-color: #1b57d2;
}

.btn-outline-primary {
  color: #2067F4;
  border-color: #2067F4;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #2067F4;
  border-color: #2067F4;
  color: #fff;
}

.bg-primary {
  background-color: #2067F4 !important;
}
.border-primary {
  border-color: #2067F4 !important;
}
.text-primary {
  color: #2067F4 !important;
}

.vertical-sidebar-wrapper {
  height: 100%;
  background-color: #08204E;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
