/* Infobar styling */

#sched .active {
  color: #ff0000;
}

@media (min-width: 768px) {
  body.modal-open .infobar, body.modal-open .navbar {
    width: calc(100% + var(--bs-scrollbar-width, 17px));
    margin-right: calc(-1 * var(--bs-scrollbar-width, 17px));
    padding-right: var(--bs-scrollbar-width, 17px);
    box-sizing: border-box;
  }
}

.infobar {
  position: relative;
  width: 100%;
  font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  background: #000;
  border-bottom: solid 1px #930000;
  z-index: 9999;
}

@media (min-width: 768px) {
  .infobar {
    font-size: calc(10px + 1vw);
    padding: 5px 0px 4px 0px;
  }
}

@media (min-width: 1400px) {
  .infobar {
    font-size: 24px;
  }
}

.divider {
  background: #930000;
  width: 1px;
}

.infobar a {
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .infobar a {
    transition: color .3s ease-in-out;
  }
}

.infobar a:hover {
  color: #ff0000;
  transition: all .3s;
}

/* remove hover on phone and directions links */

@media (hover: none) and (pointer: coarse) {
  .infobar a:hover, .infobar a:focus {
    color: #fff;
  }
}

#getStarted .btn {
  box-shadow: none;
  border-width: 0px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
  font-size: 24px;
  border-radius: 0px;
  width: 100%;
  padding: 2px 10px;
}

@media (min-width: 768px) {
  #getStarted .btn {
    border-width: 0px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
    font-size: calc(13px + .7vw);
    padding: 4px 15px 2px 15px;
    border-radius: 4px;
  }
}

@media (min-width: 1200px) {
  #getStarted .btn {
    font-size: 24px;
  }
}

@media (min-width: 1400px) {
  #getStarted .btn {
    font-size: 26px;
  }
}

#getStarted .get-started-icon {
  height: 20px;
  width: auto;
  margin-bottom: 5px;
}

@media (min-width: 1200px) {
  #getStarted .get-started-icon {
    height: 25px;
    width: auto;
    margin-bottom: 7px;
  }
}

/* Navigation Styling */

#nav-cont {
  width: 100%;
  z-index: 99;
  transition: all 0.5s ease-in-out, padding-right 0s;
}

.navbar {
  --bs-navbar-color: #fff;
  --bs-navbar-hover-color: #ff0000;
  --bs-navbar-active-color: #ff0000;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.navigation-clean {
  font-family: 'Roboto Condensed', arial, sans-serif !important;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: solid 10px #930000;
  box-shadow: 0 0px 15px rgba(0,0,0,0.7);
}

.navigation-clean .nav-link {
  transition: color .3s ease-in-out;
}

.navbar-toggler {
  padding: 4px;
  font-size: 40px;
  line-height: 0;
  background-color: #000 !important;
  border: 2px solid;
  border-radius: .25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navigation-clean .navbar-toggler {
  border-color: #c80000;
  color: #c80000;
}

@media (max-width: 767.9px) {
  .navigation-clean .navbar-brand {
    max-width: calc(100% - 70px);
    height: auto;
  }
}

@media (max-width: 767.9px) {
  .navigation-clean .navbar-brand img {
    max-width: 100%;
    height: auto;
  }
}

.navigation-clean .navbar-brand {
  padding-top: 3px;
  padding-bottom: 2px;
  margin-right: 0;
}

@media (min-width: 992px) {
  .navigation-clean .navbar-nav .nav-link {
    font-size: calc(10px + 1vw);
  }
}

.navigation-clean .navbar-nav .nav-link {
  font-size: 20px;
  padding-left: 18px;
  padding-right: 18px;
}

@media (min-width: 1500px) {
  .navigation-clean .navbar-nav .nav-link {
    font-size: 22px;
    padding-left: 23px;
    padding-right: 23px;
  }
}

.navigation-clean .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  background-color: #fff;
  border-radius: 4px;
  border: none;
}

@media (min-width: 992px) {
  .navigation-clean .navbar-nav > li > .dropdown-menu {
    padding: 7px 0;
    margin-top: 5px;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.5);
  }
}

.navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item {
  color: #303030;
  transition: all .3s;
  white-space: normal;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  padding: 10px 5px;
}

@media (min-width: 992px) {
  .navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item {
    white-space: nowrap;
    padding: 10px 15px;
  }
}

.navigation-clean .dropdown-menu .dropdown-item:focus, .navigation-clean .dropdown-menu .dropdown-item:hover {
  background: #d9d9d9;
  color: #ff0000;
  transition: all .3s;
}

.dropdown-item.active, .dropdown-item:active {
  color: #ff0000 !important;
  text-decoration: none;
  background-color: #d9d9d9;
}

/* CSS to apply to links via JS script to remove lingering hover state color */

.no-hover .navbar a:hover, .no-hover .dropdown-item:hover, .no-hover .nav-link:hover {
  color: inherit !important;
  background-color: transparent !important;
  text-decoration: none !important;
}

/* Fixes infobar links when using back button on mobile */

.dark-background {
  color: #fff;
}

/* Dropdown animation */

@keyframes slideIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
    animation-duration: 0.5s;
    animation-fill-mode: both;
  }
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-gray)!important;
  pointer-events: none;
  background-color: transparent;
}

