.content-wrapper {
  background-color: var(--content-bg);
}

a {
  color: var(--brand-text);
  text-decoration: none;
}

.section-title {
  color: var(--section-title);
  font-size: 25px;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .section-title {
    font-size: 40px;
  }
}

.sub-section-title {
  color: var(--section-title);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--primary);
}

h5.separator {
  border-bottom: 1px solid var(--primary);
}

.primary-bg {
  background-color: var(--primary);
  color: #fff;
}

body {
  font-family: "DM Sans", sans-serif;
}

:root {
  --primary: #DC3545;
  --secondary: #FFFFFF;
  --border-secondary: #D8D8D8;
  --secodary-text: #212529;
  --border-input: #D7D7D7;
  --sidebar-bg: #FFFFFF;
  --brand-text: #212529;
  --nav-link: #000000;
  --content-bg: #F5F5F5;
  --footer-bg: #000000;
  --footer-text: #869099;
  --h2-color: #000000;
  --btn-environment-bg: #AAC1DD;
  --btn-environment-border: #A6B1C0;
  --btn-strategy-bg: #C54450;
  --btn-strategy-border: #A6B1C0;
  --btn-execution-bg: #AFAFAF;
  --btn-execution-border: #A6B1C0;
  --btn-evaluation-bg: #8ABB6F;
  --btn-evaluation-border: #A6B1C0;
  --btn-expansion-bg: #D68632;
  --btn-expansion-border: #A6B1C0;
  --module-text: #373737;
  --nav-link-active-bg: #FFFFFF;
  --nav-link-active: #DC3545;
  --table-border-color: #D7D7D7;
  --section-title: #212529;
  --label-color: #212529;
  --primary-text: #FFFFFF;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-radius: 42px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  border: none;
  color: var(--primary-text);
  min-width: 100px;
}
.btn-primary:hover {
  background-color: var(--primary);
  color: var(--primary-text);
}
.btn-primary:focus {
  background-color: var(--primary);
  color: var(--primary-text);
}
@media screen and (min-width: 992px) {
  .btn-primary {
    font-size: 16px;
    line-height: 24px;
  }
}
.btn-secondary {
  background-color: var(--secondary) !important;
  border-radius: 42px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--secondary-text);
  border: 1px solid var(--border-secondary);
  min-width: 100px;
}
.btn-secondary:hover {
  background-color: var(--secondary);
  border: 1px solid var(--border-secondary);
  color: var(--secondary-text);
}
.btn-secondary:focus {
  background-color: var(--secondary);
  border: 1px solid var(--border-secondary);
  color: var(--secondary-text);
}
@media screen and (min-width: 992px) {
  .btn-secondary {
    font-size: 16px;
    line-height: 24px;
  }
}
.btn-login::before {
  content: "";
  background-image: url(/images/icons/box-arrow-in-down.svg);
  height: 16px;
  width: 16px;
  display: inline-block;
  transform: rotate(-90deg);
  vertical-align: middle;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.btn-inline {
  border: 1px solid var(--border-input);
  border-radius: 4px;
  font-size: 15px;
  height: 44px;
}
.btn-new::before {
  content: "";
  background-image: url(/images/icons/person-add.svg);
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.btn-link-recover::before {
  content: "";
  background-image: url(/images/icons/link-recover.svg);
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.btn-action {
  width: 30px;
  height: 32px;
  border-radius: 4px;
  display: inline-block;
  background-color: var(--bg-btn-action);
  border: 1px solid var(--border-btn-action);
}
.btn-action-restore::after {
  content: "";
  background-image: url(/images/icons/arrow-counterclockwise.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: flex;
}
.btn-action-edit {
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-action-edit::after {
  content: "";
  background-image: url(/images/icons/icons.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  position: relative;
  top: 2px;
}
.btn-action-delete::after {
  content: "";
  background-image: url(/images/icons/delete.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: flex;
}
.btn-action-view {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}
.btn-action-view::after {
  content: "";
  background-image: url(/images/icons/eye.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: flex;
}
.btn-action-download {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2px;
}
.btn-action-download::after {
  content: "";
  background-image: url(/images/icons/box-arrow-in-down-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  display: flex;
}
.btn.buttons-excel {
  margin-right: 10px;
  border-radius: 5px !important;
  background-color: var(--download-csv-bg);
  border: none;
}
.btn.buttons-html5 {
  margin-right: 10px;
  border-radius: 5px !important;
  border: none;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 25px;
}
.btn.buttons-html5::before {
  content: "";
  height: 16px;
  width: 16px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
  background-size: cover;
}
.btn.buttons-html5.buttons-pdf {
  background-color: #757575;
  color: #fff;
}
.btn.buttons-html5.buttons-pdf::before {
  background-image: url(/images/icons/box-arrow-in-down.svg);
}
.btn.buttons-html5.buttons-excel {
  background-color: #c7c7c7;
  color: #000;
}
.btn.buttons-html5.buttons-excel::before {
  background-image: url(/images/icons/box-arrow-in-down-black.svg);
}

.action-btns.show {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.btn-action.dropdown-toggle {
  padding: 0;
}
.btn-action.dropdown-toggle::after {
  margin: 0;
}

.custom-file-label::after {
  content: "Examinar";
}

.public-body {
  overflow-x: hidden;
}
.public-body .main {
  min-height: calc(100vh - 112px);
  position: relative;
}
.public-body .main #loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.public-body .main #filterErrors {
  display: none;
}
.public-body #removeFilters {
  display: none;
}

.login-page,
.register-page {
  background-color: #f5f5f5;
}
.login-page .login-box,
.login-page .register-box,
.register-page .login-box,
.register-page .register-box {
  width: 100%;
  max-width: 400px;
}
.login-page .card,
.register-page .card {
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.login-page .card-body,
.register-page .card-body {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.login-page .card-body .form-control,
.register-page .card-body .form-control {
  background-color: #fff;
  border: 1px solid var(--border-input);
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 16px;
}
.login-page .card-header,
.register-page .card-header {
  border: 0;
}
.login-page .login-logo a,
.register-page .login-logo a {
  font-size: 0;
}
.login-page .login-logo a img,
.register-page .login-logo a img {
  height: 190px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.login-page .forgot-link,
.register-page .forgot-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.bootstrap-select.form-control {
  border: 1px solid #ced4da !important;
}
.bootstrap-select.form-control .dropdown-toggle {
  background-color: #fff;
}
.bootstrap-select.form-control .dropdown-item.active, .bootstrap-select.form-control .dropdown-item:active, .bootstrap-select.form-control .dropdown-item.active:active {
  background-color: var(--primary);
  color: #fff;
}
.bootstrap-select.form-control .dropdown-item:hover {
  background-color: var(--primary);
  color: #fff;
}

.circuit-action-row .drag-action-row {
  cursor: grab;
}
.circuit-action-row .drag-action-row:active, .circuit-action-row.is-dragging .drag-action-row {
  cursor: grabbing;
}

.disabled-user-task[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-group-flex .form-group {
  display: flex;
  align-items: center;
}
.form-group-flex .form-group label {
  margin-bottom: 0;
  margin-right: 5px;
}
.form-group-flex .form-group .input-group {
  width: auto;
}

form .form-group label {
  font-size: 16px;
  font-weight: 500 !important;
  color: var(--label-color);
}
form .form-group .input-group {
  border: 1px solid #d8d8d8;
}
form .form-group .input-group .form-control {
  border: none;
}
form .form-group .input-group .bs-searchbox .form-control {
  border: 1px solid #d8d8d8;
}
form .form-group.btn-switch .input-group {
  border: none;
}

input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  border: 2px solid var(--border-input);
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  position: relative;
  vertical-align: middle;
  margin: 0;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5 L4 6.5 L9 1' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
  opacity: 0;
  transition: opacity 0.1s ease;
}
input[type=checkbox]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
input[type=checkbox]:checked::after {
  opacity: 1;
}
input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}
input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-check {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-check .form-check-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--label-color);
  cursor: pointer;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
