/* Style sheet used for CSS that is used across multiple pages */
/* Used for navbar */
.header {
  background-color: #4C4C4C;
  box-shadow: 0 12px 10px rgba(0, 0, 0, 0.5019607843);
  margin-bottom: 30px;
}

.navbar-brand {
  font-size: 30px;
}

.nav-logo {
  width: 70px;
  margin-left: 10px;
  margin-right: 20px;
}

/* Applied to all links in the navbar */
.nav-link, .navbar-brand, a, p, h1, h2, h3, h4, h5 {
  color: #FFFFFF;
  font-family: "Readex Pro", serif;
  font-weight: 500;
}

/* Applied to all links in the navbar */
.nav-link:hover, .navbar-brand:hover {
  color: #FE2D02;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5019607843);
  text-decoration: underline;
  text-underline-offset: 10px;
}

/* Custom navbar toggler */
.navbar-toggler {
  color: #FFFFFF;
  border: none;
}
.navbar-toggler:hover {
  color: #FE2D02;
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
  color: #FE2D02;
}

/* Applied to the link for current page within the navbar */
#current-page {
  text-decoration: underline;
  text-decoration-color: #FE2D02;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 10px;
}

/* Adds a progress bar based on scroll location on the page */
#progress-bar {
  width: 0;
  height: 3px;
  background-color: #FE2D02;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: width 0.3s ease;
}

/* Applied to the button which scrolls to the top of the page */
#scroll-to-top {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 60px;
  height: 60px;
  color: #FFFFFF;
  background-color: #4C4C4C;
  border-radius: 50%;
  border: 2px solid #414141;
  visibility: hidden;
  transition: transform 0.3s ease, color 0.3s ease;
  animation: fadeIn 1s ease;
}
#scroll-to-top:hover {
  color: #FE2D02;
  transform: scale(1.2);
}

/* Applied to scroll to top button for fade in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Applied to the breadcrumb navigation */
.breadcrumb {
  margin-left: 2px;
}

/* Applied to navigatable breadcrumb entries */
.breadcrumb a {
  text-decoration: none;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5019607843);
}

/* Applied to navigatable breadcrumb entries on hover */
.breadcrumb a:hover {
  color: #FE2D02;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Applied to current breadcrumb entry */
.breadcrumb-item.active {
  color: #D3D3D3;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5019607843);
  font-family: "Readex Pro", serif;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #FE2D02;
}

/* Applied to the dropdown button */
.dropdown-toggle {
  margin-left: 2px;
  margin-bottom: 25px;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.3019607843);
  color: #FFFFFF;
  background-color: #6F6F6F;
  /* Applied to the dropdown button */
}
.dropdown-toggle:hover {
  color: #FE2D02;
  box-shadow: 0 0 4px 4px #FE2D02;
}
.dropdown-toggle:focus {
  color: #FE2D02;
  box-shadow: 0 0 4px 4px #FE2D02;
}

/* Applied to dropdown menu */
.dropdown-menu {
  background-color: #6F6F6F;
  border-radius: 0px;
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.3019607843);
}
.dropdown-menu a {
  color: #FFFFFF;
}
.dropdown-menu a:hover {
  color: #FE2D02 !important;
  background-color: #666666;
  cursor: pointer;
}

/* Override */
.dropdown-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.4666666667);
}

/* Applied to the currently chosen sorting dropdown option */
.current-sort {
  color: #FE2D02 !important;
}

/* Applied to the currently chosen collection dropdown option */
.current-collection {
  color: #FE2D02 !important;
}

/* Bootstrap override - Sets font for buttons */
.btn {
  font-family: "Readex Pro", serif;
  font-weight: 500;
  border-radius: 0px;
}

.button-outline {
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  cursor: pointer;
}
.button-outline:hover {
  color: #FFFFFF;
  border: 2px solid #FE2D02;
}

/* Custom line used underneath headings */
.underline {
  height: 3px;
  width: auto;
  border: 50%;
  background-color: #FE2D02;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5019607843);
}

/* Applied to sub-headings */
.subheading-underline {
  margin-top: 10px !important;
  margin-bottom: 15px !important;
  text-decoration: underline !important;
  text-underline-offset: 10px !important;
  text-decoration-thickness: 2px !important;
}
.subheading-underline.red {
  text-decoration-color: #FE2D02 !important;
}

.modal-content {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.3019607843);
}
.modal-content .modal-header {
  box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.3019607843);
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  background-color: #4C4C4C;
}
.modal-content .modal-body {
  background-color: #666666;
}
.modal-content .modal-close {
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.5rem;
}
.modal-content .modal-close:hover {
  color: #FE2D02;
}
.modal-content .caption {
  opacity: 0.7;
}

.link {
  text-decoration: underline;
}
.link:hover {
  color: #FE2D02;
  text-decoration: underline;
}

.shadow-red {
  box-shadow: 0 0 3px 3px #FE2D02;
}

.fa-stack {
  vertical-align: top;
}

/* Applied as background for footer logos */
.fa-circle {
  color: #FFFFFF;
}

/* Applied to footer logos */
.footer-icon {
  margin-left: 5px;
  margin-right: 5px;
}

/* Keeps footer at the true bottom of the page + styles the background */
body {
  background-color: #666666;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding-bottom: 80px;
  box-sizing: border-box;
}

/* Applied to the footer */
footer {
  background-color: #4C4C4C;
  border-top: 2px solid #414141;
  height: 50px;
  padding-top: 20px;
  padding-bottom: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/*# sourceMappingURL=base.css.map */
