.sidebar {
    min-width: 230px;
    max-width: 230px;
    min-height: calc(100vh - 73px);
}
/* .sidebar.toggled {
    margin-left: -230px;
} */

@media (max-width: 768px) {
    .sidebar {
        margin-left: -230px;
    }
}

.bg-bb {
    background-color: #FCDA05 !important;
}

.btn-primary {
    background-color: #FCDA05 !important;
    border: #FCDA05;
    color: #000000;

}

.spinner-loading {
  height: 0;
  width: 0;
  padding: 30px;
  border: 12px solid #f9f9f9;
  border-right-color: #fcda05;
  border-left-color: #fcda05;
  border-radius: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  -webkit-animation: rotate 1s infinite linear;
}

@-webkit-keyframes rotate {
  /* 100% keyframe for  clockwise.
     use 0% instead for anticlockwise */
  100% {
    -webkit-transform: rotate(360deg);
  }
}

