/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

.vertical-nav {
  min-width: 17rem;
  width: 17rem;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.page-content {
  width: calc(100% - 17rem);
  margin-left: 17rem;
  transition: all 0.4s;
}


/* for toggle behavior */

#sidebar.active {
  margin-left: -17rem;
}

#content.active {
  width: 100%;
  margin-left: 0rem;
}

@media (max-width: 768px) {
  #sidebar {
    margin-left: -17rem;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #content {
    width: 100%;
    margin: 0;
  }
  #content.active {
    margin-left: 17rem;
    width: calc(100% - 17rem);
  }
}

body {
  background: #599fd9;
  background: -webkit-linear-gradient(225deg, #FEEFFF, #E0EFCA);
  background: linear-gradient(225deg, #FEEFFF, #E0EFCA);
  min-height: 100vh;
  overflow-x: hidden;
}

.my-login-button {
  background: linear-gradient(90deg, #92B4FF, #7800EE);
  transition: 0.2s all;
}

.my-login-button:hover {
  background: linear-gradient(90deg, #7800EE, #7800EE);
}

.btn-white {
    border: 1px solid #ced4da;
}

.modal-xxl {
  max-width: 1100px;
}


.my-separator {
  margin-top: -30px;
}

.my-separator span {
  background: white;
  padding-right: 10px;
}

.my-checkbox-form + .invalid-feedback {
  display: block !important;
}

table.table td.active {
  background: lightblue;
}

.table {
  background: white;
}

body {
  overflow-x: scroll;
}

.table-sticky th {
  position: sticky;
  top: -1px;
  background: lightblue;
}

.vertical-nav {
	overflow-y: scroll;
}

.bg-light-green {
  background: lightgreen !important;
}