#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.noscroll {
  overflow: hidden;
  margin-right: var(--scrollbar-width);
}

body.noscroll .header {
  width: calc(100% - var(--scrollbar-width));
  transition: all 0s;
}

body .header {
  transition: all .3s, width 0s;
}

.ma-wrapper {
  display: inline-flex;
  vertical-align: top;
}

.ma-wrapper.pad-right {
  margin-right: 0.4rem;
}

.ma-wrapper.pad-left {
  margin-left: 0.4rem;
}

.radio-tile {
  display: flex;
  flex-flow: row wrap;
}

.radio-tile .form-ext-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.radio-tile .level-item {
  text-align: center;
}

.radio-tile label {
  display: flex;
  flex-direction: column;
  border: 0.125rem solid var(--color-text-primary);;
  border-radius: 0.3125rem;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;

  color: var(--color-text-primary);;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  justify-content: center;

  padding: 0.2rem;
}
.radio-tile div.icon {
  font-size: 1.25rem;
  width: 100%;
}

.radio-tile input[type="radio"]:checked:disabled + label {
  background-color: #f1f3f5;
  border: 0.125rem solid #f1f3f5;
  color: white;
}
.radio-tile input[type="radio"]:disabled + label {
  border: 0.125rem solid #f1f3f5;
  color: #f1f3f5;
}

.radio-tile input[type="radio"]:checked + label {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-primary);
  /* -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1); */
}
/* Necessary as of side effects with Cirrus CSS */
.radio-tile label:last-child:not(:first-child):not(.form-group-label) {
  margin: 0.25rem;
}
.radio-tile label:not(:first-child):not(:last-child):not(.form-group-label) {
  margin: 0.25rem;
}

:root {
  --toolbelt-loadingbar-color : var(--color-primary) !important;
}

#loading_bar {
  margin-bottom: -2px;
}


/* FOOTER */

/* Footer Colors TODO: CORRECT AND PUT IN RIGHT POSITION */

footer {
      /* LIGHTMODE */
      --grayscale00: hsla(0,0%,100%,1);
      --grayscale01: hsla(0, 0%, 94%, 1);
      --grayscale02:  hsla(0, 0%, 88%, 1);
      --grayscale03:  hsla(0, 0%, 75%, 1);
      --grayscale04:  hsla(0, 0%, 43%, 1);
  
  
      /* DARKMODE */
      --grayscale05: hsla(218, 9%, 23%, 1);
      --grayscale06: hsla(220, 9%, 19%, 1);
      --grayscale07: hsla(240, 9%, 11%, 1);
      --grayscale08: hsla(0, 0%, 0%, 1);

      --footer-bgcolor: var(--grayscale01);
}

[data-theme="dark"] footer
{
      --footer-bgcolor: var(--grayscale06);
}

footer {
  width: 100%;
  padding: 3rem 0 1rem 0;
  background-color: var(--footer-bgcolor) !important;
  text-align: center;
  /* margin-top: 5rem; */
}

footer a {
  font-weight: bolder;
  color: var(--color-text-primary);
}

footer p {
  color: #848484;
}

footer ul {
  margin: 0.5rem 0; /* Remove the left margin seen in global style */
}

footer h6 {
  text-align: center;
  letter-spacing: 6px;
  position: relative;
  padding-bottom: 10px;
}

footer .footer-list-title {
  font-size: 75%;
  text-transform: uppercase;
  font-weight: bolder;
  color: #ddd;
}

footer .footer-list-title::after {
  content: "";
  display: block;
  width: 10%;
  margin: auto;
  border-bottom: 2px solid;
  border-color: #343b49;
}

footer ul a .list-item, footer .list-item {
    margin: 0.1rem;
  color: #888;
  transition: all .3s;
  font-size: 75%;
  text-transform: uppercase;
}

footer.footer-fixed {
  bottom: 0;
  position: fixed;
}

.iziToast {
  background: hsla(var(--color-fg-h), var(--color-fg-s), var(--color-fg-l),.9);
  border-color: hsla(var(--color-fg-h), var(--color-fg-s), var(--color-fg-l),.9);
}

.iziToast > .iziToast-body .iziToast-title, .iziToast > .iziToast-body .iziToast-message, .iziToast > .iziToast-body .iziToast-icon {
  color: hsla(var(--color-text-primary-h), var(--color-text-primary-s), var(--color-text-primary-l),.6);
}

.iziToast > .iziToast-progressbar {
  background: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), .2);
}

.iziToast > .iziToast-progressbar > div {
  background: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), .3);;
}