

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-family: 'Open Sans', serif;
    font-weight: 400;
}

#app {
    position: relative;
    min-height: 100vh;
}

.bgImg {
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.insInfo {
    margin-top: 35rem;
}

.searchIcon {
    color: #ff8787;
    font-size: 1.35rem;
}

a {
    color: #ff8787;
}
a:not(.btn):not(.nav-link):not(.navbar-brand):not(.dropdown-item):hover {
    color: #ff8787 !important;
}

.accordion-button:not(.collapsed) {
    color: #ff8787 !important;
}

h1,
h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

h3,
h4 {
    font-weight: 400;
    font-family: 'Lora', serif;
}

h1 {
    color: #f8f9fa;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.75);
}

.stoplistView {
    font-family: 'Lora', serif;
}

.mapParent {
    line-height: 0;
}

.bgG2 {
    background-color: #f1f3f5;
}

.bgG9 {
    background-color: #212529;
}

.bg-dimmer {
    background-color: hsl(0, 0%, 80%) !important;
}

.cG8 {
    color: #343a40;
}

.cR4 {
    color: #ff8787;
}

.decorativeUnderline {
    text-decoration: underline;
    text-decoration-color: #ff8787;
    text-decoration-thickness: 0.3rem !important;
    text-underline-offset: 0.1em;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

hr {
    height: 2px;
}

a:hover {
    color: #ff8787;
}

.stopName:hover, .divisionName:hover {
    cursor: pointer;
}

.stoplistDropdown {
    z-index: 99;
    background-color: #f1f3f5 !important;
    border-bottom-width: 1px !important;
}

.stoplistDropdown:hover {
    cursor: pointer !important;
}

.dropdown-menu {
    min-width: 15rem;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
}

.nav-link:hover, .navbar-brand:hover {
    color: #f1f3f5 !important;
}

.editText {
    line-height: 2rem;
}

@media print {
    .stoplistRow {
      break-inside: avoid;
      page-break-before: auto;
    }
  }

.stopItem > td {
    background: transparent !important;
}

.pano-container {
    width: 100%;
    position: relative;
  }
  
.pano-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;  /* 9/16 = 0.5625 or 56.25% */
  }
  
.pano-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 17px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: hsl(196, 0%, 35%);
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: hsl(190, 0%, 30%);
    cursor: pointer;
  }