.black {
  background: rgb(24, 26, 27);
}

.rich-black {
  background: black;
}

.muted-black {
  background: rgba(24, 26, 27, 0.98);
}

.blue {
  background: blue;
}

.green {
  background: rgb(19, 148, 141);
}

.gray {
  background: rgb(227, 227, 227);
}

.red {
  background: red;
}

.white {
  background: rgb(247, 247, 247);
}

.grey {
  background: rgba(239, 239, 239, 0.98);
}

.text-black {
  color: rgb(24, 26, 27);
}

.text-rich-black {
  color: black;
}

.text-blue {
  color: blue;
}

.text-green {
  color: green;
}

.text-gray {
  color: rgb(227, 227, 227);
}

.text-red {
  color: red;
}

.text-white {
  color: rgb(247, 247, 247);
}

.text-orange {
  color: #ff8004 !important;
}

.text-yellow {
  color: #ffc107 !important;
}

* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
}

body {
  background: white;
  color: rgb(24, 26, 27);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  margin: 0 auto;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: #47566b;
}
a:visited {
  color: #47566b;
}
a:active {
  color: #47566b;
}
a:hover {
  color: black;
}

.container.flex {
  display: flex;
  flex-flow: row wrap;
}
.container.flex.vertical {
  flex-flow: column wrap;
}
.container.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 20px;
  margin: 20px;
}
.container.grid.quadrant {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.container.grid.compact {
  grid-template-rows: auto 1fr;
}
.container.grid.no-gap {
  grid-gap: 0;
}
.container.grid.no-margin {
  margin: 0;
}

.content {
  position: relative;
  transition: display 0.5s;
}

@media all and (min-width: 939px) {
  .span-2 {
    grid-column: auto/span 2;
  }
  .span-3 {
    grid-column: auto/span 3;
  }
}
@media all and (max-width: 939px) and (min-width: 630px) {
  .container.grid div:first-child:nth-last-child(3) {
    grid-column: auto/span 2;
  }
}
@media all and (max-width: 938px) {
  .container.grid.quadrant {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.dispatch {
  height: 100% !important;
  min-height: 100% !important;
  scrollbar-width: none;
}
.dispatch .container.flex {
  display: block !important;
  flex-flow: unset !important;
}
.dispatch .container.flex.vertical {
  flex-flow: unset !important;
}
.dispatch .container.grid {
  display: block !important;
}
.dispatch .container.grid.quadrant {
  grid-template-columns: unset !important;
}
.dispatch .container.grid.compact {
  grid-template-rows: unset !important;
}
.dispatch .container.grid.no-gap {
  grid-gap: unset !important;
}
.dispatch .container.grid.no-margin {
  margin: unset !important;
}
.dispatch .content__final {
  height: 100% !important;
}
.dispatch .view__internal {
  min-height: 800px !important;
}
.dispatch .congeal {
  padding-right: unset !important;
}
.dispatch .navbar {
  display: block !important;
  z-index: unset !important;
}
.dispatch .navbar .navbar__content {
  display: block !important;
}
.dispatch .navbar .navbar__links {
  display: block !important;
}
.dispatch .navbar .navbar__links .navbar__link {
  display: block !important;
}
.dispatch .navbar__overflow {
  display: block !important;
}
.dispatch .navbar__overflow .navbar__links {
  display: block !important;
}
.dispatch .navbar__overflow .navbar__overflow__link {
  display: block !important;
}
.dispatch .footer .footer__logo-and-indicator {
  display: block !important;
}
.dispatch .footer .footer__information {
  display: block !important;
}
.dispatch .buffer__display-flex {
  flex-direction: column !important;
}
.dispatch .congeal {
  height: 60px;
  overflow-x: scroll;
  width: 100%;
  flex-flow: unset;
  padding-right: 20px;
  scrollbar-width: none;
  grid-column: auto/span 4;
}
.dispatch .congeal.container {
  justify-content: center;
  height: 60px !important;
  scrollbar-width: none;
  overflow-y: scroll;
  flex-flow: inherit;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dispatch {
  scrollbar-width: none;
}
.dispatch #sidebar {
  padding-left: unset !important;
}
.dispatch .footer__notice {
  text-align: right;
}

.dispatch__content a {
  text-decoration: underline !important;
  color: #0075ab !important;
}
.dispatch__content p {
  color: rgb(24, 26, 27);
  margin: 14px 0px;
}

.dispatch__content p:last-of-type {
  color: darkgrey;
}

.gradient-border {
  --borderWidth: 1px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  z-index: -1;
  animation: animated-gradient-border 3s ease alternate infinite;
  background-size: 300% 300%;
  border-radius: 0.25rem;
}
.gradient-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - var(--borderWidth) * 2);
  width: calc(100% - var(--borderWidth) * 2);
  z-index: -1;
  background: rgb(247, 247, 247);
  margin: 1px;
  border-radius: 0.25rem;
}

@keyframes animated-gradient-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
    z-index: 9;
  }
  20% {
    opacity: 1;
    z-index: 9;
  }
  30% {
    opacity: 1;
    z-index: 9;
  }
  40% {
    opacity: 1;
    z-index: 9;
  }
  50% {
    opacity: 1;
    z-index: 9;
  }
  60% {
    opacity: 1;
    z-index: 9;
  }
  70% {
    opacity: 0;
    z-index: 9;
  }
  80% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 1;
    z-index: 9;
  }
  20% {
    opacity: 1;
    z-index: 9;
  }
  30% {
    opacity: 1;
    z-index: 9;
  }
  40% {
    opacity: 1;
    z-index: 9;
  }
  50% {
    opacity: 1;
    z-index: 9;
  }
  60% {
    opacity: 1;
    z-index: 9;
  }
  70% {
    opacity: 0;
    z-index: 9;
  }
  80% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
    z-index: 9;
  }
  20% {
    opacity: 1;
    z-index: 9;
  }
  30% {
    opacity: 1;
    z-index: 9;
  }
  40% {
    opacity: 1;
    z-index: 9;
  }
  50% {
    opacity: 1;
    z-index: 9;
  }
  60% {
    opacity: 1;
    z-index: 9;
  }
  70% {
    opacity: 0;
    z-index: 9;
  }
  80% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.fade {
  animation: fade 10s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.badge {
  width: auto;
  color: #000000;
}
.badge--success {
  border-radius: 0.25rem;
  color: #8fee8f;
  margin-bottom: 10px;
  font-weight: 500;
}
.badge--dark {
  border-radius: 0.25rem;
  color: #2e2e32;
  margin-bottom: 10px;
  font-weight: 500;
}
.badge--danger {
  border-radius: 0.25rem;
  color: #ef5858;
  margin-bottom: 10px;
  font-weight: 500;
}
.badge--primary {
  border-radius: 0.25rem;
  color: #197bae;
  margin-bottom: 10px;
  font-weight: 500;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.outline-link--black {
  align-items: center;
  display: flex;
  justify-content: center;
  border: 1px solid rgb(24, 26, 27);
  color: rgb(24, 26, 27) !important;
  padding: 2px 5px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.25rem;
}
.outline-link--black.reduce {
  border: 1px solid rgb(24, 26, 27);
  font-weight: 400;
  border-radius: 0.25rem;
}
.outline-link--black.inverted {
  background: rgb(24, 26, 27) !important;
  color: rgb(247, 247, 247) !important;
}
.outline-link--black.plain {
  border: unset;
}

.outline-link--white {
  align-items: center;
  display: flex;
  justify-content: center;
  border: 1px solid rgb(247, 247, 247);
  color: rgb(247, 247, 247) !important;
  padding: 2px 5px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.25rem;
}

.default-link {
  padding: 10px;
  border: 1px solid #b2bdcc;
  border-radius: 0.25rem;
  margin-bottom: 20px;
  background-color: #ffffff !important;
  color: rgb(24, 26, 27) !important;
  font: 400 14px sans-serif;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: 0.25rem;
  width: 100%;
}
.default-link.disabled {
  background-color: rgba(204, 204, 204, 0.2) !important;
  color: rgb(87, 87, 87) !important;
}

@media all and (min-width: 1440px) {
  .content__initial .navbar__appendage {
    display: none;
  }
  .content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content .content__forked {
    width: 100vw;
  }
  .content .content__forked .content__final {
    overflow-y: scroll;
    scrollbar-width: none;
    position: relative;
  }
  .content .content__forked .content__final::-webkit-scrollbar {
    display: none;
  }
  .content__extended {
    min-height: 762px !important;
    height: 70vh !important;
    position: absolute !important;
  }
  .content__extended .content__extended--close {
    position: absolute !important;
  }
}
.content__extended {
  align-items: center;
  background: rgba(239, 239, 239, 0.98);
  display: flex;
  font-size: 14px;
  height: 100vh;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  -webkit-text-size-adjust: 100%;
}
.content__extended .content__extended--close {
  position: fixed;
  left: 0;
  top: 0;
  background-color: transparent;
  margin: 14px;
}

.content__final {
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  position: relative;
}
.content__final::-webkit-scrollbar {
  display: none;
}

.flash {
  flex-direction: row;
  align-items: center;
  color: rgb(24, 26, 27);
  font-weight: 500;
  display: flex;
  background: white;
  margin: 10px 20px 10px 20px;
}

.notification, .notification--secondary, .notification--primary, .notification--danger, .notification--warning, .notification--success {
  flex-direction: row;
  align-items: center;
  color: rgb(24, 26, 27);
  font-weight: 500;
  display: flex;
}
.notification::after, .notification--secondary::after, .notification--primary::after, .notification--danger::after, .notification--warning::after, .notification--success::after {
  background: white;
}
.notification--success {
  padding: 10px;
  display: flex;
  border: 1px solid #8fee8f;
  border-radius: 0.25rem;
  background: rgba(143, 238, 143, 0.2196078431);
  width: calc(100% - 20px);
  justify-content: space-between;
}
.notification--warning {
  padding: 10px;
  display: flex;
  border: 1px solid #ebed74;
  border-radius: 0.25rem;
  background: rgba(235, 237, 116, 0.2196078431);
  width: calc(100% - 20px);
  justify-content: space-between;
}
.notification--danger {
  padding: 10px;
  display: flex;
  border: 1px solid #ee8f8f;
  border-radius: 0.25rem;
  background: rgba(238, 143, 143, 0.2196078431);
  width: calc(100% - 20px);
  justify-content: space-between;
}
.notification--primary {
  padding: 10px;
  display: flex;
  border: 1px solid #197bae;
  border-radius: 0.25rem;
  background: rgba(25, 123, 174, 0.2196078431);
  width: calc(100% - 20px);
  justify-content: space-between;
}
.notification--secondary {
  padding: 10px;
  display: flex;
  border: 1px solid #b2bdcc;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.73);
  width: calc(100% - 20px);
  justify-content: space-between;
}

.form-group {
  display: flex;
  position: relative;
  margin-bottom: 10px;
  font: 400 14px sans-serif !important;
}
.form-group.wizard {
  flex-direction: column;
}
.form-group.horizontal {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
}
.form-group label {
  position: absolute;
  top: 0;
  left: -1px;
  pointer-events: none;
  padding: 0.3rem;
  border: 2px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.form-group label.wizard {
  font-size: 1.34rem;
  top: unset;
  left: unset;
  padding: inherit;
  background: transparent;
  transform: unset;
  position: unset;
  margin-bottom: 20px;
}
.form-group label[disabled] {
  color: #a4a6a4;
}
.form-group input {
  cursor: pointer;
  outline: none;
  padding: 0.4rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  width: 100%;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgb(111, 111, 111);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label {
  top: 0.3rem;
  left: 0.3rem;
  padding: unset;
  background: white;
  transform: scale(0.6) translateY(-1.1rem) translateX(0.15rem);
}
.form-group input:focus:-webkit-autofill ~ label, .form-group input:not(:placeholder-shown):-webkit-autofill ~ label {
  top: 0.3rem;
  left: 0.3rem;
  padding: unset;
  background: white;
  transform: scale(0.6) translateY(-1.1rem) translateX(0.15rem);
}
.form-group input:-webkit-autofill {
  padding-bottom: 0.4rem;
}
.form-group input::placeholder {
  color: transparent;
}
.form-group input::-moz-placeholder {
  color: transparent;
}
.form-group input[disabled] {
  outline: none;
  background-color: rgba(204, 204, 204, 0.2);
}
.form-group input[disabled]:focus + label, .form-group input[disabled]:not(:placeholder-shown) + label {
  background-color: #f5f5f5;
  color: rgb(170, 170, 170);
}
.form-group input[disabled]:focus ~ label, .form-group input[disabled]:not(:placeholder-shown) ~ label {
  left: 0.2rem;
  display: flex;
  align-items: center;
}
.form-group input[disabled]:focus:-webkit-autofill ~ label, .form-group input[disabled]:not(:placeholder-shown):-webkit-autofill ~ label {
  left: 0.2rem;
  display: flex;
  align-items: center;
}
.form-group input[type=checkbox] {
  outline: none;
  width: 20px;
  height: 20px;
}
.form-group input[type=checkbox]:checked:after {
  content: url("../images/icons/tick.png");
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 14px;
  color: black;
  line-height: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transform: scale(0.75);
}
.form-group input[type=checkbox]:focus ~ label, .form-group input[type=checkbox]:not(:placeholder-shown) ~ label {
  font-size: 18px;
  top: 15px;
  left: 25px;
  display: flex;
  align-items: center;
}
.form-group input[type=checkbox]:focus:-webkit-autofill ~ label, .form-group input[type=checkbox]:not(:placeholder-shown):-webkit-autofill ~ label {
  font-size: 18px;
  top: 8px;
  left: 15px;
  display: flex;
  align-items: center;
}
.form-group input[type=checkbox].wizard {
  background: white;
  padding: 20px;
  border: 1px solid #b2bdcc;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}
.form-group input[type=checkbox].wizard:checked {
  background: rgba(0, 117, 171, 0.2196078431);
}
.form-group input[type=checkbox].wizard:checked:after {
  content: "";
  position: relative;
  top: unset;
  left: unset;
  font-size: 14px;
  color: black;
  line-height: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transform: scale(0.75);
}
.form-group input[type=date] {
  height: 15px;
  outline: none;
}
.form-group input[type=date].wizard {
  width: calc(100% - 20px);
  padding: 10px;
  height: 20px;
}
.form-group input[type=email] {
  outline: none;
}
.form-group input[type=file] {
  outline: none;
  overflow: hidden;
}
.form-group input[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-group input[type=submit] {
  outline: none;
  font: 400 14px sans-serif !important;
  padding: 0.3rem;
  color: black;
}
.form-group input[type=text].wizard {
  width: calc(100% - 20px);
  padding: 10px;
}
.form-group input[type=text].null::placeholder {
  color: black;
}
.form-group input[type=text].null::-moz-placeholder {
  color: black;
}
.form-group select {
  cursor: pointer;
  outline: none;
  background-clip: padding-box;
  background-color: #ffffff !important;
  background: url("../images/icons/select_box_arrow.png") right center no-repeat;
  border: 1px solid rgb(111, 111, 111);
  border-radius: 0.25rem;
  font: 400 14px sans-serif;
  width: 100%;
  padding: 0.4rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-group select::placeholder {
  color: transparent;
}
.form-group select::-moz-placeholder {
  color: transparent;
}
.form-group select[multiple] {
  background: unset;
  resize: vertical;
  height: fit-content;
}
.form-group select[disabled] {
  background-color: rgba(204, 204, 204, 0.2) !important;
}
.form-group select:focus ~ label, .form-group select:not(:placeholder-shown) ~ label {
  top: 0.3rem;
  left: 0.3rem;
  padding: unset;
  background: white;
  transform: scale(0.6) translateY(-1.1rem) translateX(0.15rem);
}
.form-group select:focus ~ label.wizard, .form-group select:not(:placeholder-shown) ~ label.wizard {
  font-size: 1.34rem;
  top: unset;
  left: unset;
  padding: inherit;
  background: transparent;
  transform: unset;
  position: unset;
}
.form-group select:focus:-webkit-autofill ~ label, .form-group select:not(:placeholder-shown):-webkit-autofill ~ label {
  top: 0.3rem;
  left: 0.3rem;
  padding: unset;
  background: white;
  transform: scale(0.6) translateY(-1.1rem) translateX(0.15rem);
}
.form-group select:-webkit-autofill {
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
}
.form-group select.wizard {
  border: unset;
  height: fit-content;
  resize: none !important;
  background: transparent !important;
  padding: 10px;
  scrollbar-width: none;
}
.form-group select.wizard::-webkit-scrollbar {
  display: none;
}
.form-group select.wizard option {
  background: white;
  padding: 10px;
  border: 1px solid #b2bdcc;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.form-group select.wizard option:checked {
  background: rgba(0, 117, 171, 0.2196078431);
}
.form-group select.null {
  background: white !important;
  border: 1px solid rgb(111, 111, 111);
  padding: 10px;
}
.form-group textarea {
  cursor: pointer;
  outline: none;
  background-clip: padding-box;
  background-color: #ffffff;
  border: 1px solid rgb(111, 111, 111);
  font: 400 14px sans-serif !important;
  border-radius: 0.25rem;
  height: 150px;
  width: 100%;
  outline: none;
  padding: 0.4rem;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-group textarea::placeholder {
  color: transparent;
}
.form-group textarea::-moz-placeholder {
  color: transparent;
}
.form-group textarea[disabled] {
  background-color: rgba(204, 204, 204, 0.2) !important;
}
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.3rem;
  left: 0.3rem;
  padding: unset;
  background: white;
  transform: scale(0.6) translateY(-1.1rem) translateX(0.15rem);
}
.form-group textarea:focus:-webkit-autofill ~ label, .form-group textarea:not(:placeholder-shown):-webkit-autofill ~ label {
  top: 0.3rem;
  left: 0.3rem;
  padding: unset;
  background: white;
  transform: scale(0.6) translateY(-1.1rem) translateX(0.15rem);
}
.form-group textarea:-webkit-autofill {
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
}
.form-group textarea.wizard {
  width: calc(100% - 20px);
  padding: 10px;
}
.form-group textarea.wizard::placeholder {
  color: black;
}

.form-errors {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 20px;
}

.form-group__field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

.form-group__format .form-group {
  width: 100%;
}

.trix-button.trix-button--icon.trix-button--icon-attach {
  display: none !important;
  visibility: hidden !important;
}

.footer {
  background: white;
  color: #47576b;
  border-top: 1px solid #eff2f5;
}
.footer .footer__information {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  text-decoration: none;
}
.footer .footer__logo {
  background-color: transparent;
  float: left;
  height: 20px;
  width: 20px;
}
.footer .footer__links {
  display: flex;
  padding: 20px;
  text-decoration: none;
}
.footer .footer__link {
  margin-right: 5px;
  text-decoration: underline;
  color: #0075ab;
}
.footer .footer__link:last-of-type {
  margin: 0;
}
.footer a:link, .footer a:visited {
  text-align: center;
  text-decoration: none;
}

@media all and (min-width: 620px) {
  .footer__information .footer__notice {
    text-align: right;
  }
}
.navbar {
  align-items: center;
  background: rgba(24, 26, 27, 0.98);
  display: flex;
  height: 60px;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  background: transparent;
  font-size: 1.2rem;
  color: rgb(77, 77, 77) !important;
  border-bottom: 1px solid #eff2f5;
  transition: opacity 0.5s ease, height 0.5s ease;
}
.navbar .navbar__content {
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
}
.navbar .navbar__content::-webkit-scrollbar {
  display: none;
}
.navbar .navbar__links {
  display: flex;
  padding: 10px;
}
.navbar .navbar__links .navbar__link {
  margin-right: 10px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.navbar .navbar__links__extended {
  width: calc(100% - 20px);
  margin: 0 10px;
  display: none;
}
.navbar .navbar__icon {
  background-color: transparent;
  height: 25px;
  width: 25px;
}
.navbar .navbar__indicator {
  background-color: transparent;
  height: 20px;
  width: 20px;
}
.navbar .navbar__logo {
  background-color: transparent;
  float: left;
  height: 20px;
  margin: 0px 0px 0px 10px;
  width: 20px;
}

.navbar__overflow {
  display: grid;
  grid-auto-rows: auto;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: space-between;
  margin: 10px;
  transition: display 0.5s;
  align-items: center;
  background: rgba(24, 26, 27, 0.98);
  font-size: 14px;
  height: calc(100vh - 46px - 61px - 46px);
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  z-index: 13;
  -webkit-text-size-adjust: 100%;
}
.navbar__overflow .navbar__links {
  padding: 10px;
  display: flex;
}
.navbar__overflow .navbar__links .navbar__link {
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.navbar__overflow .navbar__links a:link, .navbar__overflow .navbar__links a:visited {
  background-color: transparent;
  display: block;
}
.navbar__overflow .navbar__overflow__link {
  background: rgb(227, 227, 227);
  color: rgb(24, 26, 27);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 13;
}

.scroll {
  overflow-y: scroll;
}
.scroll::-webkit-scrollbar {
  display: none;
}

table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #b2bdcc;
  white-space: nowrap;
  color: #47566b;
}
table caption {
  border-collapse: collapse;
  border: 1px solid #b2bdcc;
  border-bottom: unset;
  white-space: nowrap;
  color: #47566b;
  text-align: start;
  padding: 0.5rem;
  font-weight: 400;
}
table thead.filter {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 0 0 1px #b2bdcc;
  z-index: 7;
}
table thead.filter tr th:first-of-type {
  left: 0;
  position: sticky;
  background: white;
}
table th, table td, table tr {
  border: 1px solid #b2bdcc;
  padding: 0.5rem;
}
table th:hover, table td:hover, table tr:hover {
  background: rgb(227, 227, 227) !important;
}

.sortable {
  --stripe-color: unset;
}

.sortable td, .sortable th {
  padding: 0.5rem !important;
}

.sortable th {
  background: white !important;
  color: #47566b !important;
  font-weight: 700;
  text-align: left;
  text-transform: unset !important;
  vertical-align: unset !important;
  white-space: unset !important;
}

.sortable td {
  color: #47566b !important;
  background: transparent;
}

.sortable th, .sortable td, .sortable tr {
  border: 1px solid #b2bdcc;
  padding: 0.5rem;
}
.sortable th:hover, .sortable td:hover, .sortable tr:hover {
  background: rgb(227, 227, 227) !important;
}

.bold {
  font-weight: bold;
}

.box-shadow {
  box-shadow: 1px -1px 8px 0px rgba(186, 186, 186, 0.34);
  -webkit-box-shadow: 1px -1px 8px 0px rgba(186, 186, 186, 0.34);
  -moz-box-shadow: 1px -1px 8px 0px rgba(186, 186, 186, 0.34);
  transition: all 10ms ease-out;
}

.buffer {
  padding: 0 5%;
}
.buffer--left {
  padding-left: 5vw;
}
.buffer--right {
  padding-right: 5vw;
}
.buffer.buffer__display-flex {
  display: flex;
}

.center {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.center-text {
  text-align: center;
}

.clear {
  opacity: 0;
}

.deep__z-index div {
  z-index: 2;
}
.deep__text-white div {
  color: white;
}

.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.expand form {
  width: 100%;
}

.extra-padding {
  padding: 14px;
}
.extra-padding.extended-padding {
  padding: 14px 20px;
}

.flip-horizontal {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.flip-vertical {
  -moz-transform: scale(1, -1);
  -webkit-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.grayscale {
  filter: grayscale(100%);
}

.hidden {
  display: none !important;
}

.hover__boarder:hover {
  border: 2px solid #0075ab !important;
  transition: all 10ms ease-out;
}
.hover__transform:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 10ms ease-out;
}
.hover__flip:hover {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  transition: all 10ms ease-out;
}
.hover__scale:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  transition: all 10ms ease-out;
}
.hover__shadow:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 1px -1px 8px 0px rgba(186, 186, 186, 0.75);
  -webkit-box-shadow: 1px -1px 8px 0px rgba(186, 186, 186, 0.75);
  -moz-box-shadow: 1px -1px 8px 0px rgba(186, 186, 186, 0.75);
  transition: all 10ms ease-out;
}

.indent {
  text-indent: 20px;
}

.inline-block {
  display: inline-block;
}

.invert {
  filter: invert(100%);
}

.invisible {
  visibility: hidden !important;
  position: absolute;
}

.italic {
  font-style: italic;
}

.justify-text {
  text-align: justify;
}

.margin {
  margin: 10px;
}

.margin-y {
  margin: 10px 0;
}

.margin-x {
  margin: 0 10px;
}

.normal {
  font-style: normal;
}

.no-margin {
  margin: 0 !important;
}

.no-scroll {
  overflow: hidden;
}

.no-scrollbar {
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-text-decoration {
  text-decoration: none;
}

.offset {
  z-index: -1;
  position: fixed;
  visibility: hidden;
}

.opaque {
  opacity: 1;
}

.overflow-scroll--x {
  overflow-x: scroll;
  max-width: 100%;
}

.overflow-scroll--y {
  overflow-y: scroll;
  max-height: 100%;
}

.pointer {
  cursor: pointer;
}

.position {
  position: relative;
}
.position.active {
  background: #8fee8f !important;
  color: #8fee8f !important;
}
.position.inactive {
  background: #eff2f5 !important;
  color: #eff2f5 !important;
}
.position span {
  color: black;
}
.position:before {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  height: 0;
  width: 0;
  border-top: 13.5px solid transparent;
  border-bottom: 13.5px solid transparent;
  border-left: 5px solid;
  border-radius: 10px;
}
.position:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  border-top: 13.5px solid transparent;
  border-bottom: 13.5px solid transparent;
  border-left: 5px solid rgba(143, 238, 143, 0.0941176471);
  border-radius: 10px;
}
.position:first-child:after {
  display: none;
}
.position:last-child {
  margin-right: 0;
}
.position:last-child:before {
  display: none;
}

.position-fixed {
  position: fixed;
}
.position-fixed.top {
  left: 0;
  right: 0;
  top: 0;
}

.padding {
  padding: 2px 5px;
}

.prop {
  background: rgba(204, 204, 204, 0.5);
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
  color: #777;
  min-height: 100px;
}

.scroll-snap--x {
  scroll-snap-type: x mandatory;
}
.scroll-snap--x--relaxed {
  scroll-snap-type: x proximity;
}

.scroll-snap--y {
  scroll-snap-type: y mandatory;
}
.scroll-snap--y--relaxed {
  scroll-snap-type: y proximity;
}

.scroll_table {
  overflow-x: auto;
  overflow-y: auto;
}
.scroll_table .set-height {
  height: calc(100vh - 60px);
}

.sticky {
  position: sticky;
}

.strike {
  text-decoration: line-through;
}

.text-center {
  text-align: center;
}

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

.text-right {
  text-align: left;
}

.text-muted {
  color: darkgrey !important;
}

.text-focus {
  color: rgb(247, 146, 149) !important;
}

.text-black {
  color: rgb(24, 26, 27) !important;
}

.text-white {
  color: rgb(247, 247, 247) !important;
}

.word-break {
  word-break: break-all;
}

#sidebar.hide {
  width: 0;
  background: white !important;
  visibility: hidden;
}
#sidebar.hide .container.flex {
  padding: unset !important;
}

/* Marquee styles */
.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll 20s linear infinite;
}
.marquee__content:hover {
  animation-play-state: paused;
}
.marquee__content ul {
  display: flex;
  padding: unset;
}
.marquee__content ul li::marker {
  content: "";
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media all and (min-width: 1440px) {
  .buffer {
    padding: 0 2%;
  }
  .buffer--left {
    padding-left: 2vw;
  }
  .buffer--right {
    padding-right: 2vw;
  }
  .buffer.buffer__display-flex {
    display: flex;
  }
}
@media all and (min-width: 940px) {
  .extra-padding {
    padding: 40px;
  }
  h1 {
    font-size: 5rem !important;
  }
  h2 {
    font-size: 2.2rem !important;
  }
  article h1 {
    font-size: 1.5rem !important;
  }
  article p {
    font-size: 1.2rem !important;
  }
}
@media all and (max-width: 939px) {
  .reduce {
    font-size: 2.2rem !important;
  }
}
@media all and (max-width: 499px) {
  .flash.buffer {
    background: transparent;
    position: absolute;
    width: 100%;
  }
}
@media all and (max-width: 939px) {
  .container.grid.quadrant {
    grid-template-columns: 100vw;
  }
  .conditional {
    display: none;
  }
  .congeal .container {
    overflow-y: scroll;
    flex-flow: inherit;
    scrollbar-width: none;
  }
  .congeal .container::-webkit-scrollbar {
    display: none;
  }
  .congeal {
    height: 60px;
    overflow-x: scroll;
    width: 100%;
    flex-flow: unset;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .congeal::-webkit-scrollbar {
    display: none;
  }
  .congeal .container {
    justify-content: center;
    height: 60px !important;
    scrollbar-width: none;
  }
  .congeal .container::-webkit-scrollbar {
    display: none;
  }
  .congeal .container a {
    margin: 0px 20px 0px 0px !important;
    width: auto !important;
    white-space: nowrap;
  }
  .congeal .container a:hover {
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    transition: none;
  }
  .congeal .container div {
    display: flex;
    align-items: center;
    min-height: 39.5px;
    margin: 0px 20px 0px 0px !important;
    width: auto !important;
    white-space: nowrap;
  }
  .navbar__links__extended {
    display: unset !important;
  }
  .buffer {
    padding: unset;
  }
  .buffer.buffer__display-flex {
    display: unset;
  }
  .buffer--left {
    padding: unset;
  }
  .buffer--right {
    padding: unset;
  }
}
@media all and (min-width: 628px) and (max-width: 999px) {
  .align {
    grid-column: auto/span 2;
  }
}
@media all and (max-width: 1000px) {
  .dependant {
    display: none;
  }
  .codependent {
    display: unset;
  }
}
@media all and (min-width: 1000px) {
  .codependent {
    display: none;
  }
}
.view {
  min-height: calc(100vh - 90px);
  width: 100%;
  background: white;
  z-index: 2;
  height: 100%;
}
.view .view__internal {
  min-height: calc(100vh - 60px - 45px);
}

.view__internal {
  min-height: calc(100vh - 60px);
}
