/*============================================================================================*/

/* Your custom styles below */

/*============================================================================================*/

#loading {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  display: grid;
  place-items: center;
  z-index: 99;
  text-align: center;
}

.loader {
  /* position: fixed; */
  /* top: 50%; */
  /* left: 50%; */
  z-index: 1;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #1a1e4f;
  border-right: 8px solid #1a1e4f;
  border-bottom: 8px solid #1a1e4f;
  border-left: 8px solid #1a1e4f;
  width: 70px;
  height: 70px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

thead tr th {
  font-weight: bold;
}

@media print {
  .no-print,
  .no-print * {
    display: none !important;
  }
}

@media screen {
  .no-screen,
  .no-screen * {
    display: none !important;
  }
}

/* New Panel and modal design */

.panel {
  border-left: 0.15rem solid #433b59;
  border-right: 0.15rem solid #433b59;
  border-bottom: 0.15rem solid #433b59;
}

.modal-dialog {
  border: 1px solid #433b59;
}

.panel-heading,
.modal-header {
  background-image: linear-gradient(-90deg, #433b59, #d36035);
}

.btn-skuuni {
  color: white;
  background-color: #433b59;
}

.btn-skuuni-light {
  color: white;
  background-color: #d36035;
}

.btn-skuuni-light:hover {
  color: #433b59;
}

.btn-skuuni:hover {
  color: #d36035;
}

.navbar-default,
.sidebar {
  background-color: #433b59;
}

.sidebar-nav {
  background-color: #2a2047;
}

.modal-close {
  color: white !important;
}

.btn-primary,
.btn-info {
  background-color: #433b59;
}

.btn-primary:hover,
.btn-info:hover {
  background-color: #d36035;
}

.btn-success {
  color: white;
  background-color: #d36035;
}

.btn-success:hover {
  background-color: #433b59;
}

.text-success {
  color: #433b59;
}

.text-info {
  color: #d36035;
}
