/* Passport Specific Defaults */
:root {
  --nav-padding-desktop: 1.25rem;
  --nav-padding-mobile: 0.625rem;
  --icon-color: var(--dark-grey);
}

p {
  line-height: 1.5;
}

.nav_global_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_global_content img {
  max-width: 140px;
}

.logged_in .nav_global_content {
  background: var(--white);
}

.logged_in .nav_global_link {
  color: var(--navy);
}

.nav_global_link {
  font-weight: 500;
  font-size: 0.875rem;
}

.nav_global_link:hover {
  cursor: pointer;
}

.nav_global_link + .nav_global_link {
  margin-left: 1rem;
}

.nav-actions {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.nav-toolbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 32px);
  gap: 4px;
}

.nav-toolbar li {
  height: 32px;
}

.has-tooltip {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 16px;
}

.has-tooltip:hover {
  background-color: #f0f6fc;
}

.has-tooltip .tooltip {
  position: absolute;
  top: 34px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  padding: 4px 8px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 2px 12px rgba(17, 25, 65, 0.15);
  color: hsl(216, 17%, 43%);
  font-weight: 500;
  white-space: nowrap;
  transition: visibility 0s, opacity 250ms linear;
  z-index: 100;
  font-size: 0.8125rem;
}

.has-tooltip:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

#top_menu {
  padding: 4px 28px 4px 8px;
  border-radius: 4px;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 17px) calc(1rem - 4px),
    calc(100% - 12px) calc(1rem - 4px);
  background-size: 3px 3px, 5px 5px;
  background-repeat: no-repeat;
}

#top_menu:hover {
  background-color: var(--lightest-grey);
}

#top_menu.menu_open {
  background-color: var(--lightest-grey);
}

.site_wrapper {
  margin: 0 auto;
}

.logged_out .site_wrapper {
  max-width: 400px;
}

.logged_in .site_wrapper {
  max-width: 1024px;
}

.logged_out .content_wrapper {
  background-color: var(--white);
}

.register_wrapper {
  margin-top: 1rem;
}

form + .back-to-login {
  margin-top: 1rem;
}

.site_logo img {
  width: 100%;
  max-width: 330px;
}

.dark-page {
  max-width: 400px;
  background-color: var(--white);
  border-radius: 4px;
  padding: 30px;
  margin: 0 auto;
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.login_title {
  text-align: center;
  margin: 0.75rem 0 1.25rem 0;
  color: var(--navy);
}

.forgot_password {
  font-size: 0.875rem;
  text-decoration: none;
}

.fogot_password:hover {
  text-decoration: underline;
}

.login_social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.25rem 0;
}

.login_social_label {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.button_social {
  width: 4.125rem;
  font-size: 1.125rem;
}

.button_register .fab {
  margin-right: 0.625rem;
}

.register_social {
  display: flex;
  justify-content: space-between;
}

.register_social .button + .button {
  margin-left: 0.625rem;
}

.register_wrapper .terms {
  text-align: center;
  margin-top: 1rem;
  color: var(--dark-grey);
  font-size: 0.875rem;
}

.no_passport {
  font-size: 0.875rem;
  color: var(--dark-grey);
  text-align: center;
  margin: 10px 0;
}

.passport_title {
  font-weight: 600;
}

.site_footer {
  font-size: 0.75rem;
  color: var(--white);
  text-align: center;
}

footer.site_footer {
  max-width: 304px;
  margin-inline: auto;
  padding: 1rem;
  border-radius: 10px;
}

.dark-page + footer.site_footer {
  background-color: transparent;
  color: var(--white);
  border: none;
}

.websites_admin + footer.site_footer {
  color: var(--dark-grey);
}


.websites_admin + footer.site_footer a {
  color: var(--primary-color);
}

.site_footer a + a {
  margin-left: 0.625rem;
}

.site_footer p {
  font-size: 0.75rem;
  margin: 0.625rem 0;
}

.site_footer_links a {
  color: var(--white);
}

.heading-bar {
  margin-bottom: 10px;
}

.heading-bar h2.page-title,
.heading-bar h3.page-title {
  text-align: center;
}

.heading-bar h2.page-title {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2rem;
}

.forgot_password_wrapper .button {
  margin-top: 1rem;
}

.logout-wrap {
  text-align: center;
}

.logout-wrap h3 + p {
  margin-top: 10px;
}

.logout-wrap p,
.send_reminder p,
.reset_password p,
.register_newsletters p {
  font-size: 0.875rem;
  color: var(--dark-grey);
  text-align: center;
}

div + .button--block {
  margin-top: 15px;
}

.register_newsletters {
  max-width: 400px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--default-radius);
  padding: 20px;
}

/* Internal Pages */
.logged_in .alert {
  max-width: 640px;
  margin: 0 auto;
}

.member_nav {
  position: relative;
}

.member_nav a {
  text-decoration: none;
}

.member_nav_dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  padding: 0.875rem 0.625rem;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  /* white-space: nowrap; */
  border: var(--light-border);
  border-radius: var(--border-radius);
}

.member_nav_dropdown:after {
  content: '';
  border-bottom: var(--light-border);
  border-right: var(--light-border);
  background-color: var(--white);
  position: absolute;
  width: 16px;
  height: 16px;
  transform: rotate(225deg);
  top: -9px;
  right: 30px;
}

.member_nav_dropdown ul {
  width: 240px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.member_nav_dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.member_nav_dropdown ul li a svg {
  max-width: 24px;
}

.member_nav_name {
  display: flex;
  align-items: center;
  height: 30px;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0 0.625rem;
  margin-bottom: 0.625rem;
}

.member_nav_link {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 0.625rem;
  color: var(--dark-grey);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}

.member_nav_link:hover {
  background-color: var(--lightest-grey);
  border-radius: 20px;
}

.account_modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-gap: 2rem;
  justify-items: center;
  margin-bottom: 6rem;
}

.mod-option-link {
  display: flex;
  width: 100%;
  background-color: var(--white);
  border: 2px solid var(--white);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  justify-content: center;
}

.mod-option-link:hover {
  background-color: var(--off-white);
  border-color: var(--primary-color);
}

.mod-option-int {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mod-item-logo img {
  display: block;
  width: 150px;
}

.mod-item-title {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.mod-item-info {
  color: var(--dark-grey);
  font-size: 0.875rem;
  font-weight: 400;
}

.internal_passport h1.page-title {
  font-size: 1.5rem;
  color: var(--navy);
}

.internal_passport h2.sub-title {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.avail-list-entry {
  display: flex;
  color: var(--dark-grey);
}

.avail-list-entry + .avail-list-entry {
  margin-top: 10px;
}

.avail-list-entry label:hover {
  cursor: pointer;
}

.nl-list-opt-title {
  margin-bottom: 2px;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.875rem;
}

.avail-list-entry p {
  font-size: 0.8125rem;
}

.sub-check-wrap {
  width: 30px;
  padding: 2px 0 0 0;
  flex-shrink: 0;
  flex-grow: 0;
}

p.item-info,
p.more-info {
  font-size: 0.8125rem;
  color: var(--dark-grey);
}

.nl-submit {
  display: block;
  margin-bottom: 20px;
}

.internal_passport .heading-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.internal_passport .back-link {
  font-size: 0.75rem;
  font-weight: 500;
}

.edit_profile,
.newsletter_list {
  max-width: 500px;
  margin: 0 auto;
}

.dob_fields,
#signup-phonemobile-div {
  display: flex;
}

#signup-phonemobile-div input:first-child {
  max-width: 100px;
  margin-right: 10px;
}

.dob_fields > * {
  max-width: 100px;
}

.dob_fields .fields + .fields {
  margin-left: 10px;
}

.sport-options-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.edit_profile .privacy {
  display: flex;
}

.edit_profile .privacy .priv_check {
  width: 30px;
  flex-grow: 0;
  flex-shrink: 0;
}

.edit_profile .privacy-text {
  font-weight: 400;
}

.edit_profile .privacy-text:hover {
  cursor: pointer;
}

.edit_profile .soc-intro {
  display: block;
  margin: 30px 0;
  text-decoration: none;
  border: var(--light-border);
  border-radius: var(--border-radius);
  padding: 20px;
}

.edit_profile .soc-intro:hover {
  border-color: var(--primary-color);
  background-color: var(--off-white);
}

.edit_profile .soc-intro .mod-option-int {
  align-items: flex-start;
}

.edit_profile .soc-intro .mod-option-int h3 {
  font-size: 1rem;
  color: var(--navy);
}

.edit_profile .soc-intro .mod-item-info {
  margin-bottom: 0;
}

.websites_admin .link-col {
  font-size: 0.875rem;
  display: block;
}

.websites_admin .link-col + .link-col {
  margin-top: 4px;
}

.websites_admin .link-col a {
  font-weight: 400;
}

.logged_in .alert-info {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 6px;
  margin-bottom: 20px;
  background-color: var(--lightest-grey);
  border: 1px solid var(--grey);
  color: var(--secondary-color);
  padding: 10px;
}

.logged_in .alert-warning {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  margin-bottom: 20px;
  background-color: hsl(var(--light-yellow-hs) 96%);
  border: 1px solid var(--yellow);
  color: hsl(var(--light-yellow-hs) 20%);
  padding: 10px;
}

.logged_in .alert-warning svg {
  align-self: flex-start;
}

.logged_in .alert-warning a {
  color: hsl(var(--light-yellow-hs) 40%);
}

.logged_in .alert-warning p {
  font-size: 0.875rem;
}

.logged_in .alert-warning ul {
  font-size: 0.875rem;
  padding-left: 18px;
}

.logged_in .alert-info p {
  font-size: 0.875rem;
}

.center {
  text-align: center;
}

@media only screen and (max-width: 400px) {
  .internal_passport .heading-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .alert {
    border-radius: 0;
    border-left-width: 0;
    border-right-width: 0;
  }
  .nav_global_logo {
    overflow: hidden;
    width: 30px;
    margin-left: 10px;
  }
}

@media only screen and (max-width: 639px) {
  .nav_global {
    background-color: var(--white);
    padding: var(--nav-padding-mobile);
  }

  .nav_global_link {
    color: var(--navy);
  }

  .content_wrapper {
    padding: 1rem;
  }
}

@media only screen and (max-width: 500px) {
  .mod-option-int {
    flex-direction: row;
  }

  .mod-option-link {
    text-align: left;
  }

  .mod-item-logo img {
    width: 80px;
  }

  footer.site_footer {
    max-width: none;
    margin-inline: 20px;
  }

  .dark-page {
    width: 100%;
    max-width: none;
    padding: 30px 15px;
  }
}

@media only screen and (min-width: 400px) {
  .promo_left {
    padding-bottom: 2.5rem;
  }

  .alert {
    margin-top: 1.25rem;
  }

  .alert + .content_wrapper {
    margin-top: 1.25rem;
  }
  .content_wrapper {
    padding: 1.5rem;
    border-radius: var(--border-radius);
  }

  .logged_in .nav_global {
    margin-bottom: 2.25rem;
  }

  .register_newsletters {
    padding: 30px;
  }
}

@media only screen and (min-width: 640px) {
  .nav_global_content {
    padding: var(--nav-padding-desktop);
  }

  .nav_global_link {
    color: var(--white);
  }
}

.gd_background_wrap {
  background-color: #222222;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  position: fixed;
}

.gd_background_color {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, var(--secondary-color), var(--primary-color));
  background-size: 120% 120%;
  -webkit-animation: dNrtto 3s ease infinite;
  animation: dNrtto 3s ease infinite;
  z-index: 0;
}

.gd_hex_1,
.gd_hex_2 {
  -webkit-animation: shimmy 20s alternate infinite ease-in;
  animation: shimmy 20s alternate infinite ease-in;
  height: 1000px;
  position: absolute;
  width: 1000px;
  z-index: 1;
}

.gd_hex_1 {
  top: -606.0606060606061px;
  left: -500px;
}

.gd_hex_2 {
  bottom: -606.0606060606061px;
  right: -500px;
}

.gd_hex_a,
.gd_hex_b  {
  background-image: url(../images//gamedayBg.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  opacity: 0.3;
  width: 100%;
  height: 100%;
}

.gd_hex_b {
  background-size: 70%;
  opacity: 0.5;
}

@keyframes shimmy {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}