/*!*******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./scss/custom.scss ***!
  \*******************************************************************************************************************************************************************/
.colorpicker-wrapper {
  position: relative;
  display: inline-block;
  min-width: 50px;
}

.colorpicker-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.custom-multiselect {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-checkbox {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: all 0.2s ease;
}
.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox input:hover ~ .checkmark {
  border-color: #007bff;
}
.custom-checkbox.disabled {
  opacity: 0.5;
  color: #6c757d;
  cursor: not-allowed;
}
.custom-checkbox.disabled input[type=checkbox] {
  cursor: not-allowed;
}
.custom-checkbox.disabled .checkmark {
  background-color: #e9ecef;
  border-color: #ced4da;
}
.custom-checkbox.disabled:hover .checkmark {
  background-color: #e9ecef;
  border-color: #ced4da;
}

div.toast {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 999999999;
}
div.toast div.toast-body {
  min-width: 20em;
}

.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -20px;
  padding: 20px;
}
.error-page .error-container {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}
.error-page .error-container .error-icon {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}
.error-page .error-container .error-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 1rem;
}
.error-page .error-container .error-code {
  font-size: 6rem;
  font-weight: bold;
  color: #e74c3c;
  margin: 0;
  line-height: 1;
}
.error-page .error-container .error-message {
  color: #666;
  font-size: 1.1rem;
  margin: 2rem 0;
  line-height: 1.6;
}
.error-page .error-container .error-actions {
  margin-top: 3rem;
}
.error-page .error-container .error-actions .btn-home {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.error-page .error-container .error-actions .btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}
.error-page .error-container .error-actions .btn-back {
  background: transparent;
  border: 2px solid #667eea;
  padding: 10px 28px;
  border-radius: 50px;
  color: #667eea;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.error-page .error-container .error-actions .btn-back:hover {
  background: #667eea;
  color: white;
  text-decoration: none;
}
.error-page .error-container .error-details {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.error-page .error-container .error-details .error-details-toggle {
  color: #999;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
}
.error-page .error-container .error-details .error-details-content {
  display: none;
  margin-top: 1rem;
  text-align: left;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.8rem;
  color: #666;
  max-height: 200px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .error-page .error-container {
    padding: 40px 20px;
  }
  .error-page .error-container .error-code {
    font-size: 4rem;
  }
  .error-page .error-container .error-title {
    font-size: 1.8rem;
  }
  .error-page .error-container .error-actions .btn-home,
  .error-page .error-container .error-actions .btn-back {
    display: block;
    margin: 10px 0;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./scss/login.scss ***!
  \******************************************************************************************************************************************************************/
body.login-page {
  background: #f4f6f9;
}

.login-box {
  display: inline-block;
  width: 380px;
  position: absolute;
  top: 100px;
  left: 50%;
  margin-left: -190px;
}
.login-box .login-logo {
  text-align: center;
  padding: 0px;
  background-color: #0088CC;
  margin: 10px 115px 50px;
  border-radius: 10px;
}
.login-box .form-group .input-group input#loginform-username {
  border-radius: 4px;
}
.login-box .form-group .input-group input#loginform-password {
  border-radius: 4px;
}
.login-box input#loginform-rememberme {
  margin-right: 7px;
}
.login-box input#loginform-rememberme.form-check-input.is-valid:checked {
  background-color: #0088CC;
}
.login-box .btn-primary {
  border-radius: 4px;
  background-color: #0088CC;
}
