:root {
    --sidebarwidth: 310px;
    --sidebarcollapsedwidth: 105px;
    --colorGray00: #FFFFFF;
    --colorGray10: #F6F8FA;
    --colorGray20: #E3EBF1;
    --colorGray30: #B9C8E3;
    --colorGray40: #9EAFBC;
    --colorGray50: #7D8D9A;
    --colorGray60: #586A77;
    --colorGray80: #3E4E59;
    --colorGray100: #1F2325;
    --colorRed10: #FFF1F5;
    --colorRed50: #E4003A;
    --colorRed70: #b2002D;
    --colorGreen: #37CE85;
    --colorOrange: #FF6D04;
}

/* manrope-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/manrope-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Spezielle Regel nur Firefox */
@supports (-moz-appearance: none) {
    /* Schriftart im Dropdown wegen Firefox-Problemen */
    select option {
        font-family: 'Manrope', sans-serif;
        font-display: swap;
        font-size: 1rem;
        font-weight: 400;
    }
}

html, body {
    /* manrope-regular - latin */
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.capital {
    /* manrope-regular - latin */
    font-display: swap;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    color: var(--colorRed50);
}

header {
    top: 0;
    position: fixed;
    width: 100%;
    background-color: var(--colorGray00);
    z-index: 1;
}

.container {
    margin-top: 100px;
}

.foot {
    bottom: 0;
    text-align: center;
    position: fixed;
    width: 100%;
    background-color: var(--colorGray00);
    border-top: .5px solid var(--colorGray30);
    padding-top: 10px;
    padding-bottom: 10px;
}

hr {
    background-color: var(--colorRed50);
    border-color: var(--colorRed50);
}

table tr {
    background-color: var(--colorRed10);
    color: var(--colorGray100)
}
