/* General */
html,
body {
  background-color: #fff;
}
::selection {
  color: #ffffff;
  background-color: #332b00;
}
a {
  color: #332b00 !important;
  text-decoration: none;
  font-size: 14px;
  background-color: transparent;
}
a:hover {
  text-decoration: underline;
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #d9e0e7;
  z-index: 9999;
  display: none;
}
.loading-spinner {
  height: 36px;
  width: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -18px 0 0 -18px;
  border: 2px solid rgba(45, 53, 60, 0.85);
  border-top: 2px solid #fff;
  -webkit-border-radius: 36px;
  border-radius: 36px;
  -webkit-animation: rotation 0.6s infinite linear;
  -moz-animation: rotation 0.6s infinite linear;
  -ms-animation: rotation 0.6s infinite linear;
  -o-animation: rotation 0.6s infinite linear;
  animation: rotation 0.6s infinite linear;
}
.form-group {
  position: relative;
}
.form-group input[type="password"] {
  padding-right: 40px; /* Ajustar el espacio para el icono */
}
.form-group i.togglePassword {
  position: absolute;
  top: 50%;
  right: 10px; /* Ajustar el espacio desde el borde derecho */
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  font-size: 15px;
  transition: color 0.2s ease;
}
.checkbox.checkbox-css input:checked + label::before {
  background: #332b00;
  border-color: #332b00;
}
.checkbox.checkbox-css label:before {
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #7f7f7f;
  cursor: pointer;
}
.checkbox.checkbox-css input:checked + label:after {
  background-size: 75%;
  color: #fff;
  height: 16px;
  width: 16px;
  text-align: center;
  cursor: pointer;
}
.checkbox.checkbox-css label {
  cursor: pointer;
}
.form-control:focus {
  border: 1px solid #332b00;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Color negro con opacidad (0.5) */
}
/* End General */
/* Jconfirm */
.jconfirm .jconfirm-box.jconfirm-type-success {
  border-top: solid 7px #332b00 !important;
  -webkit-animation-name: type-green;
  animation-name: type-green;
}
.jconfirm
  .jconfirm-box.jconfirm-type-success
  .jconfirm-title-c
  .jconfirm-icon-c {
  color: #332b00 !important;
}
.jconfirm .jconfirm-box.jconfirm-type-info {
  border-top: solid 7px #dc3545 !important;
  -webkit-animation-name: type-blue;
  animation-name: type-blue;
}
.jconfirm .jconfirm-box.jconfirm-type-info .jconfirm-title-c .jconfirm-icon-c {
  color: #dc3545 !important;
}
/* End Jconfirm */
/* Alertas */
body #gritter-notice-wrapper .gritter-item-wrapper .gritter-item p {
  color: #ffffff !important;
  font-size: 12px !important;
}
.gritter-close:before,
.gritter-light .gritter-close:before {
  font-family: "Font Awesome 5 Free" !important;
  content: "\f00d" !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}
.alert-success .gritter-bottom,
.alert-success .gritter-item,
.alert-success .gritter-top {
  background: #332b00 !important;
}
.alert-warning .gritter-bottom,
.alert-warning .gritter-item,
.alert-warning .gritter-top {
  background: #dc3545 !important;
}
.alert-info .gritter-bottom,
.alert-info .gritter-item,
.alert-info .gritter-top {
  background: #dc3545 !important;
}
.alert-error .gritter-bottom,
.alert-error .gritter-item,
.alert-error .gritter-top {
  background: #dc3545 !important;
}
.gritter-image i {
  color: #ffffff;
}
.gritter-close {
  color: #ffffff !important;
}
.gritter-title {
  font-size: 13px !important;
  font-weight: bold !important;
}
/* End Alertas */
