
html, body{
  text-align: start !important;
}

/**********************************   Loader Style     ***********************************/

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1c1c80;
  color: white;
  font-size: 50px;
  z-index: 999999999;
}

/****************************************************************************/
/** notifications
/****************************************************************************/

.notification {
  position: fixed;
  left: 30px;
  bottom: -90px;
  font-size: 14px;
  padding: 10px 2px;
  border-radius: 5px;
  box-shadow: 0 0 50px #000000;
  width: 300px;
  text-align: center;
  z-index: 999999999;
  transition: all 1s ease-in-out;
  border-right: solid 3px;
  color: black;
  background: #96b0d6;
  border-color: #005680;
}

.notification.default {
  background: #96b0d6;
  border-color: #005680;
}

.notification.success {
  background: #96d696;
  border-color: green;
}

.notification.warning {
  background: #e6d287;
  border-color: #8c7213;
}

.notification.error {
  background: #ffbcbc;
  border-color: #b70000;
}

.notification.show_up {
  bottom: 40px;
}

.danger {
  background-color: red !important;
}

.success {
  background-color: #a5d6a7 !important;
}

/****************************************************************************/
/** switch checkbox
/****************************************************************************/

.switch-checkbox {
  position: relative;
  display: inline-block;
  width: 53px;
  height: 25px;
  top: 2px;
}

.switch-checkbox input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch-slider.always-blue-switch {
  background-color: #fff;
  outline: solid 2px #3963ad;
}


.switch-slider.always-blue-switch:before {
  background-color: #3963ad;
}

input:checked + .switch-slider.always-blue-switch {
  background-color: #fff;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .switch-slider {
  background-color: #3963ad;
}

input:focus + .switch-slider {
  box-shadow: 0 0 1px #3963ad;
}

input:checked + .switch-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.switch-slider.round {
  border-radius: 34px;
}

.switch-slider.round:before {
  border-radius: 50%;
}




/****************************************************************************/
/** student pages
/****************************************************************************/

span.item-number {
  display: inline-block;
  width: 20px;
  float: right;
  text-align: center;
}