/* GLOBAL */
:root {
  --rotary-blue: #003399;
  --rotary-gold: #ffcc00;
  --polio-purple: #74399e;
  --prostate-blue: #01aef0;
  --primary-colour: #74399e;
}

.primary-colour-background {
  background-color: var(--prostate-blue) !important;
}

.primary-colour-text {
  color: var(--prostate-blue) !important;
}

.primary-colour-border {
  border-color: var(--prostate-blue) !important;
}

.hover-text-primary:hover {
  color: var(--prostate-blue) !important;
}

.full-height {
  min-height: 100vh;
}

.download-form-button:hover {
  background-color: var(--prostate-blue);
  color: white !important;
}

.donate-button {
  font-size: 2em;
  width: 70%;
}

.donate-button:hover {
  background-color: var(--prostate-blue);
  color: white !important;
}

#navIcon {
  animation-fill-mode: forwards;
  position: relative;
}

#facebookLogo {
  opacity: 0.7;
}

#facebookLogo:hover {
  opacity: 1;
  color: white;
}

@keyframes moveright {
  from {
    transform: translate(0px);
  }
  to {
    transform: translate(6px);
  }
}
@keyframes moveleft {
  from {
    transform: translate(6px);
  }
  to {
    transform: translate(0px);
  }
}

/* Large Screen Styling */
@media screen and (min-width: 768px) {
  #logo-img {
    height: 50px;
  }

  #logo-text {
    font-size: larger !important;
    margin-left: 10px !important;
  }
}

.footer-logo {
  padding: 10px;
}

html.sr .load-hidden {
  visibility: hidden;
}

main {
  overflow: hidden;
}

/* HOME */

.jumbo {
  height: 60vh;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    url(../img/rotary-ride-image-large2.webp);
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  margin-bottom: 0px !important;
  border-radius: 0px !important;
}

@media screen and (max-width: 768px) {
  .jumbo {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.3)
      ),
      url(../img/rotary-ride-image-small2.webp);
  }
}

.jumbo-content {
  z-index: 2;
  letter-spacing: 2px;
}

.jumbo-text {
  font-weight: bold;
}

.larger-font {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .larger-font {
    font-size: 1rem;
  }
}

/* ENTER PAGE */

.enter-main {
  min-height: 70vh;
}

/* Register */

.disabled-button {
  pointer-events: none;
  cursor: default;
}
