* {
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-sizing: border-box;
    vertical-align: top;
    text-align: left;
}

a:link {
  color: green;
  background-color: transparent; 
  text-decoration: underline;
}

a:visited {
  color: green;
  background-color: transparent;
  text-decoration: underline;
}

a:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}

body {
  margin: 12px;
  font-family: Arial, sans-serif;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
  background: #d9ead3;
  color: black;
  font-size: 16px;
}

p{
      max-width: 900px;
      margin-bottom: 4px;
}

details {
    margin-bottom: 4px;
}

summary {
  cursor: pointer;
      margin-bottom: 4px;
}

iframe {
  width: 100%;
  height: 75vh;
  border: 0px;
  margin-bottom: 4px;
}

#institution-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: green;
  color: white;
  z-index: 9999;
}

.footer-control {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 2.5rem;
    padding: 0 8px;
}

.footer-bars {
  display: flex;
  flex-direction: column;
}

.info-bar {
  height: 1.8rem;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.info-bar span {
  display: inline-block;
}

.info-bar.overflow span {
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.martyr-bar {
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.martyr-label {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 0px solid rgba(255,255,255,0.25);
  margin-right: 8px;
}

.martyr-scroll {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.martyr-scroll span {
  display: inline-block;
}

.martyr-scroll.overflow span {
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.white-bar {
  background: red;
  color: white;
}

.green-bar {
  background: black;
  color: white;
}

.red-bar {
  background: white;
  color: black;
}

/* Toggle switch */

.switch {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
  margin: 0 4px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #666;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  left: 0.2rem;
  top: 0.2rem;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: white;
}

.switch input:checked + .slider::before {
  transform: translateX(1.5rem);
  background: black;
}