/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
/* Add the decaration on top */
@font-face {
  font-family: 'MLU';
  src: url('fonts/Marcellus-Regular.woff') format('woff');
}

.table-bordered>thead>tr>th {
  border: 1px solid #dadada;
}

.table-bordered>thead>tr>td {
  border: 1px solid #dadada;

}

:root {
  --bs-primary: #b1e053;
  --mlulight: #b1e053;
  --mludark: #004131;
  --std-value: 2rem;
  --bs-root-font-size: 16px;
}

:host {
  --bs-primary: #b1e053;
  --mlulight: #b1e053;
  --mludark: #004131;
  --std-value: 2rem;
  font-family: MLU;
}

.btn-primary {
  background-color: var(--mlulight) !important;
  border-color: var(--mlulight) !important;
  color: black;
}

.btn-check:checked {
  background-color: var(--mludark);
  border-color: var(--mludark);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: black;
  border-color: var(--mludark);
  background-color: var(--mlulight);
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.224) !important;
  filter: brightness(80%);
}

.text-info {
  --bs-text-opacity: 1;
  color: black !important;
}

.progress-bar {
  background-color: var(--mlulight);
  color: black;
}

.text-primary {
  --bs-text-opacity: 1;
  color: black !important;
}

.bg-mlu-light {
  background-color: var(--mlulight);
}

.padding-top {
  padding-top: var(--std-value/2);
}


.mlu-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 3px solid var(--mlulight);
  position: relative;
}

.mlu-separator-nosquare {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 3px solid var(--mlulight);
  position: relative;

}

.mlu-separator::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 4rem;
  height: 4rem;
  background-color: var(--mludark);
}

.align-left {
  text-align: left !important;
}

.padding-btm {
  padding-bottom: var(--std-value);
}

.padding-all {
  padding: var(--std-value) / 3;
}

.mlu-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  padding: calc(var(--std-value) /6);
  text-decoration: none;
}

.mlu-nav-link>svg {
  margin: calc(var(--std-value) /5);
}

.mlu-nav-link:hover {
  color: black;
  text-decoration: underline;
}

/* a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  padding: calc(var(--std-value) /3);
  text-decoration: none;
} */

a>svg {
  margin: calc(var(--std-value) /5) !important;
}

a:hover {
  color: black !important;
  text-decoration: underline !important;
}

.mlu-nav-link-sm {
  /* font-size: 1rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  padding: calc(var(--std-value) /3);
  text-decoration: none;
}

.mlu-nav-link-sm>svg {
  margin: calc(var(--std-value) /5);
}

.mlu-nav-link-sm:hover {
  color: black;
  text-decoration: underline;
}

.mlu-ul {
  line-height: 1.5em;
  list-style-type: none;
  /* Remove bullets */
}

/* unvisited link */
.mlu-link>a:link {
  color: var(--mlulight);
}

/* visited link */
.mlu-link>a:visited {
  color: var(--mlulight);
}

/* mouse over link */
.mlu-link>a:hover {
  color: var(--mludark);
}

/* selected link */
.mlu-link>a:active {
  color: var(--mludark);
}