html, body {
    font-size: 16px;
    line-height: 1.5;
}

h1 {
    color: var(--beep-orange);
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    h1 {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
}

.striped-background {
    background: repeating-linear-gradient(
      45deg,
      #ffffff,
      #ffffff 10px,
      #eeeeee 10px,
      #eeeeee 20px
    );
}

.agent-menu-wrapper {
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .agent-menu-wrapper {
        display: block;
    }
}
.agent-menu-wrapper.buttons-background {
    background-color: rgba(52, 58, 64, 0.9);
    display: block;
    padding-top: 0.5rem;
}

.nav-icon {
    cursor: pointer;
}

.help-icon input {
    appearance: none;
    display: none;
}

.help-info {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    display: inline-block;
    font-family: initial;
    margin-bottom: 0;
    padding: 0.25rem 0.5rem;
    vertical-align: middle;
}

.text-pre {
    white-space: pre-wrap;
}

.scale-x-2x {
    transform: scale(2.0, 1.0);
}

.highlighted:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

.fa-fw {
    text-align: center;
    width: 1.15em;
}

.phone-icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border-radius: 1.5em;
    padding: 0.25em;
    width: 2.0em;
}

a.default-color {
    color: inherit!important;
}

table.width-auto {
    width: auto;
}

.car-event-action {
  --color: var(--beep-blue);  /* inline style overwrites this */

  background: rgba(255, 255, 255, 0.62);
  border: 0 solid transparent;
  border-radius: 0.4em;
  color: var(--color);
  font-weight: bold;
  font-size: 140%;
  line-height: 1;
  margin: 0;
  padding: 0.2em;
  position: absolute;
  top: 2.22em;
  right: 0;
}
