/* #region everything */
body {
  margin: 0;
  background-color: lightblue;
  color: black;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  overflow-x: hidden;
}

html {
  scrollbar-gutter: stable;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    font-size: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    color: inherit;
    background: none;
}

main {
    min-height: 100vh;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 50px;
    width: 90%;
    line-height: 30px;
    font-size: large;
}
/* #endregion */

/* #region header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 2.5%;
  padding-right: 2.5%;
  background-color: navy;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

header button:hover, header a:hover {
  color: orange;
}

.hamburger button {
  font-size: x-large;
  border: none;
}

.header-logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-logo a span {
  font-size: x-large;
  font-weight: bold;
}

.header-logo a img {
  border-radius: 50%;
}

.header-login-or-user-icon #header-login-btn {
  border-radius: 10%;
  border: 2px solid white;
  font-size: larger;
  padding-left: 5px;
  padding-right: 5px;
}

.header-login-or-user-icon #header-user-icon-btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  font-size: x-large;
  font-weight: bold;
  display: none;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.header-login-or-user-icon #header-login-btn:hover {
  border: 2px solid orange;
}

.header-login-or-user-icon #header-user-icon-btn:hover {
  border: 2px solid orange;
}
/* #endregion */

/* #region hamburger-menu */
.hamburger-menu {
  position: fixed;
  left: -100%;
  width: 75%;
  height: 100%;
  background-color: #dde9fc;
  z-index: 90;
  font-size: larger;
  overflow-y: auto;
  overflow-x: hidden;
  transition: left 0.3s ease;
  padding-top: 10px;
  border-right: 5px solid gray;
  pointer-events: auto;
}

#menu-overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 88; 
  pointer-events: all;
  touch-action: none;
}

.hamburger-menu.active {
  left: 0;
}

.hamburger-menu a {
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 30px;
  align-items: center;
  font-weight: bold;
}

.hamburger-menu a:hover {
  color: rgb(2, 131, 141);
}

.hamburger-menu a .menu-list-icons {
  font-size: 30px;
}

.hamburger-menu hr {
  border: none;
  height: 1px;
  background-color: gray;
}




.hamburger-menu .follow-us-on-hamburger {
  margin-bottom: 50px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.5%;
  align-items: center;
  font-size: x-large;
  font-weight: bold;
}

.hamburger-menu .follow-us-on-hamburger .twitter:hover,
.hamburger-menu .follow-us-on-hamburger .pinterest:hover {
  transform: scale(1.15);
}
/* #endregion */

/* #region footer */
footer {
  background-color: navy;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 5%;
}

footer a:hover {
  color: orange;
}

.footer-legal-pages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  text-align: center;
  margin-top: 10px;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  row-gap: 5px;
  text-align: center;
}
/* #endregion */

/* #region cookie-banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  flex-direction: column;
  gap: 5px;
  left: 0;
  right: 0;
  background: #dde9fc;
  color: black;
  z-index: 95;
  display: none;
  font-size: large;
  border-top: 5px solid black;
  padding-top: 1px;
  padding-bottom: 25px;
  padding-left: 5%;
  padding-right: 5%;
}

.cookie-banner-privacy-and-cookie-policy-link {
  color: navy;
  text-decoration: underline;
  font-weight: bold;
}

.cookie-banner-privacy-and-cookie-policy-link:hover {
  text-shadow: 0 0 10px navy;
  text-decoration: none;
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10%;
  align-items: center;
}

.cookie-banner-buttons button {
  background: navy;
  font-size: large;
  font-weight: bold;
  color: white;
  border: 3px solid black;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}

.cookie-banner-buttons button:hover {
  background: black;
  border: 3px solid navy;
}
/* #endregion */

/* #region zyradoc */
.entire-game-box {
    max-width: 100%;
    padding: 20px;
    background-color: white;
    border-radius: 1%;
}

.entire-game-box h1 {
    font-size: x-large;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 30px;
}

.case-info p {
  border: 1px solid black;
  border-radius: 5%;
  background-color: lightblue;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  font-size: larger;
}

.you-are-incorrect {
  opacity: 0;
}

.you-are-incorrect p {
    border: 2px solid red;
  border-radius: 10%;
  background-color: lightpink;
  padding-top: 5px;
  color: red;
  padding-bottom: 5px;
  text-align: center;
}

.you-are-correct {
  display: none;
}

.you-are-correct p {
    border: 2px solid green;
  border-radius: 10%;
  background-color: lightgreen;
  padding-top: 5px;
  color: green;
  padding-bottom: 5px;
  text-align: center;
}

.youve-already-played-today {
  display: none;
}

.youve-already-played-today p {
    border: 2px solid black;
    border-radius: 5%;
    padding: 20px;
    text-align: center;
    color: black;
    font-weight: bold;
    font-size: larger;
}

.youve-already-played-today-archives-link {
    text-decoration: underline;
    color: navy;
}

.youve-already-played-today-archives-link:hover {
    text-shadow: 0 0 10px navy;
    text-decoration: none;
}

.select-or-skip {
  display: none;
}

.select-or-skip p {
    border: 2px solid red;
  border-radius: 5%;
  background-color: lightpink;
  padding-top: 10px;
  color: red;
  padding-bottom: 10px;
  text-align: center;
}

.skip-button {
  margin-bottom: 5px;
}

#skip-btn {
  border: 1px solid black;
  background-color: gray;
  color: white;
  border-radius: 5%;
  font-size: large;
  height: 40px;
  width: 100px;
  float: right;
}

#skip-btn:hover {
  background-color: black;
}

.guess-and-submit {
  display: none;
  flex-direction: column;
}

.input-and-submit-button {
  display: flex;
  flex-direction: row;
  gap: 5%;
}

.input-and-submit-button input {
    flex: 1;
    border-radius: 5%;
    border: 1px solid gray;
    height: 40px;
    padding-left: 10px;
    padding-right: 5px;
    font-size: large;
}

#submit-btn {
  border: 2px solid black;
  border-radius: 5%;
  background-color: navy;
  color: white;
  font-size: large;
  height: 44px;
  font-weight: bold;
  width: 100px;
}

#submit-btn:hover {
  background-color: black;
  border: 2px solid navy;
}

.open-case-review {
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

#open-case-review-button {
    font-size: larger;
    padding: 10px;
    width: 90%;
    background-color: navy;
    color: white;
    border-radius: 10%;
    border: 3px solid black;
    font-weight: bold;
    animation: pulse 1.5s infinite ease-in-out;
}

#open-case-review-button:hover {
    background-color: black;
    border: 3px solid navy;
    animation: none;
}

#close-case-review-button {
    font-size: larger;
    padding: 10px;
    width: 90%;
    background-color: navy;
    color: white;
    border-radius: 10%;
    border: 3px solid black;
    font-weight: bold;
    display: none;
}

#close-case-review-button:hover {
    background-color: black;
    border: 3px solid navy;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.autocomplete-options {
  overflow-y: auto;
  margin-top: 5px;
  margin-bottom: 30px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
  max-height: 250px;
  display: none;
}

.suggestion-item {
  border-bottom: 1px solid gray;
  cursor: pointer;
  padding: 5px;
}

.suggestion-item:hover {
  background: lightblue;
}

.incorrect-list {
    display: none;
    flex-direction: column; 
    gap: 5px;
    margin-top: 10px;
}

.incorrect-list .incorrect-list-first-one {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-radius: 5%;
    padding: 0 10px;
    font-size: medium;
    display: none;
}

.incorrect-list .incorrect-list-second-one {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-radius: 5%;
    padding: 0 10px;
    font-size: medium;
    display: none;
}

.incorrect-list .incorrect-list-third-one {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    border-radius: 5%;
    padding: 0 10px;
    font-size: medium;
    display: none;
}

.incorrect-list div p {
    margin: 0;
}

.incorrect-list .wrong {
  border: 1px solid red;
  background-color: lightpink;
  color: red;
}

.incorrect-list .skipped {
  border: 1px solid gray;
  background-color: rgb(240, 240, 240);
  color: gray;
}

.incorrect-list .correct {
  border: 1px solid green;
  background-color: lightgreen;
  color: green;
}

.feedback-modal {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
    z-index: 70;
    padding: 0 20px 5%;
    box-sizing: border-box;
    border: 3px solid black;
    border-radius: 5px;
    pointer-events: auto;
}

.modal-backdrop {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 68; 
  pointer-events: all;
  touch-action: none;
}

.close-button-for-feedback-modal {
    width: 100%;
    text-align: right;
}

#close-feedback-modal-button {
  font-size: 50px;
  border: none;
  font-weight: bolder;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

#close-feedback-modal-button:hover {
  text-shadow: 0 0 15px black;
}

.correct-or-incorrect-feedback {
  width: 100%;
  font-weight: bold;
  color: black;
    font-size: larger;
}

.you-are-correct-feedback {
    border: 2px solid green;
    border-radius: 5%;
    background-color: lightgreen;
    padding: 20px 10px;
    display: none;
}

.you-are-correct-feedback span {
    font-weight: bolder;
    font-size: xx-large;
    color: green;
}

.you-are-incorrect-feedback {
    border: 2px solid red;
    border-radius: 5%;
    background-color: lightpink;
    padding: 20px 10px;
    display: none;
}

.you-are-incorrect-feedback span {
    font-weight: bolder;
    font-size: xx-large;
    color: red;
}

.fifty-percentile {
  font-size: larger;
  font-weight: bold;
  text-align: center;
}

.you-were-top-fifty {
  display: none;
}

.you-were-not-top-fifty {
  display: none;
}

.fifty-percentile-archives-link {
  text-decoration: underline;
  color: navy;
}

.fifty-percentile-archives-link:hover {
  text-shadow: 0 0 10px black;
    text-decoration: none;
}

.share-this-zyradoc {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
  align-items: center;
}

.share-button {
  border-radius: 10%;
  border: 3px solid black;
  color: white;
  background: navy;
  font-size: larger;
  font-weight: bold;
  padding: 10px 50px;
  animation: pulse 1.5s infinite ease-in-out;
}

.copied {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.copied.show {
    opacity: 1;
}

.share-button:hover {
  border: 3px solid navy;
  background: black;
  animation: none;
}

.case-info {
  animation: slideInLeft 0.1s ease-out forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px); 
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.case-review {
  display: none;
  animation: slideInRight 0.1s ease-out forwards;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px); 
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.case-review h2 {
  text-align: center;
  font-size: x-large;
}
/* #endregion */

/* #region legal-pages */
.legal-pages {
  background-color: white;
  padding: 10px 20px 5%;
  border-radius: 1%;
}

.legal-pages h1 {
  text-align: center;
}

.legal-pages h3 {
  text-indent: 10%;
  text-decoration: underline;
}

.legal-pages-contact-support-email {
  color: navy;
  font-weight: bold;
  text-decoration: underline;
}

.legal-pages-contact-support-email:hover {
  text-shadow: 0 0 10px navy;
    text-decoration: none;
}

.legal-pages-hr {
    margin-top: 30px;
    height: 1px;
    background-color: black;
}

.cookie-preference-reset-btn {
    background-color: navy;
    color: white;
    border: 3px solid black;
    font-size: large;
    padding: 10px 20px;
    border-radius: 10%;
    font-weight: bold;
    animation: small-pulse 1s infinite ease-in-out;
}

.cookie-preference-reset-btn:hover {
    background-color: black;
    border: 3px solid navy;
    animation: none;
}

@keyframes small-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.025);
    }
    100% {
        transform: scale(1);
    }
}

.about-us-bio {
  background-color: white;
  padding: 10px 20px 5%;
  border-radius: 1%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-us-bio .bio-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}

.bio-title .bio-title-name {
  font-size: xx-large;
  margin-top: 15px;
}

.bio-title .bio-title-role {
  margin-top: -25px;
}

.about-us-bio .bio-title img {
  border-radius: 50%;
  border: 4px solid black;
}

.about-us-bio .bio-description {
  margin-top: -15px;
}

.bio-description .bio-description-name {
  display: none;
}

.bio-description .bio-description-role {
  display: none;
}
/* #endregion */

/* #region login-modal */
.login-modal {
  position: fixed;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: white;
  z-index: 80;
  padding-top: 0;
  padding-bottom: 40px;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  border: 3px solid black;
  border-radius: 5px;
  pointer-events: auto;
  display: none;
}

#login-modal-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 78; 
  pointer-events: all;
  touch-action: none;
}

.login-modal-close {
    width: 100%;
    text-align: right;
}

#login-modal-close-btn {
  font-size: 55px;
  border: none;
  font-weight: bolder;
  margin-right: -5px;
  margin-top: -5px;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}

#login-modal-close-btn:hover {
  text-shadow: 0 0 15px black;
}

.login-modal-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -20px;
}

.login-modal-logo img {
  border-radius: 50%;
  border: 2px solid black;
}

.login-modal-logo p {
  margin-top: 10px;
  font-weight: bold;
  font-size: larger;
}

.login-modal-sign-in-or-sign-up-switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.login-modal-sign-in-or-sign-up-switcher button {
  font-size: x-large;
  width: 100%;
  border: none;
  font-weight: bold;
}

.login-modal-sign-in-or-sign-up-switcher #open-login-modal-sign-in-btn {
  border-bottom: 6px solid navy;
  padding-bottom: 5px;
  border-right: 6px solid navy;
}

.login-modal-sign-in-or-sign-up-switcher #open-login-modal-sign-up-btn {
  padding-bottom: 5px;
}

.login-modal-sign-in {
  display: flex;
}

.login-modal-sign-up {
  display: none;
}

.login-modal-sign-in, .login-modal-sign-up {
  flex-direction: column;
  font-weight: bold;
  font-size: medium;
}

.login-modal-sign-in-username-or-email, .login-modal-sign-in-password, .login-modal-sign-up-username, .login-modal-sign-up-password, .login-modal-sign-up-email {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-modal-password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.login-modal-toggle-password-btn {
  position: absolute;
  right: 2%;
  border: none;
  background: none;
  font-size: small;
}

.login-modal-toggle-password-btn:hover {
  text-shadow: 0 0 5px black;
}

.login-modal-sign-in-username-or-email input, .login-modal-sign-in-password input, .login-modal-sign-up-username input, .login-modal-sign-up-email input, .login-modal-sign-up-password input {
  flex-grow: 1;
  margin-top: -5px;
  font-size: larger;
  height: 40px;
  border: 2px solid gray;
  border-radius: 5%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.login-modal-sign-in-invalid-username-or-email-text, .login-modal-sign-in-blank-username-or-email-text, .login-modal-sign-in-incorrect-password-text, .login-modal-sign-in-blank-password-text {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-in-password .password-or-forgot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.login-modal-sign-in-password .password-or-forgot a {
  font-weight: normal;
  color: blue;
}

.login-modal-sign-in-password .password-or-forgot a:hover {
  text-decoration: underline;
}

.login-modal-sign-in-button, .login-modal-sign-up-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.login-modal-sign-in-button button, .login-modal-sign-up-button button {
  background-color: navy;
  border: 2px solid black;
  border-radius: 5%;
  color: white;
  font-size: larger;
  width: 90%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.login-modal-sign-in-button button:hover, .login-modal-sign-up-button button:hover {
  background-color: black;
  border: 2px solid navy;
}

.login-modal-sign-up-username-requirements {
  font-size: small;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
}

.login-modal-sign-up-username-is-already-taken,  .login-modal-sign-up-username-cannot-be-blank {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-up-email-invalid-email, .login-modal-sign-up-email-blank-email, .login-modal-sign-up-email-already-in-use {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-up-password-cannot-have-spaces {
  color: red;
  font-weight: normal;
  margin-top: 5px;
  margin-bottom: 0;
  display: none;
}

.login-modal-sign-up-password-requirements {
  font-weight: normal;
  line-height: 0.5em;
  margin-left: 5%;
  font-size: small;
}
/* #endregion */

/* #region logged-in-users-modal */
#logged-in-users-modal-overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0); 
  z-index: 78; 
  pointer-events: all;
  touch-action: none;
}

.logged-in-users-modal {
  position: fixed;
  margin-top: 5px;
  display: none;
  right: 2.5%;
  width: max-content; 
  max-width: 90%;    
  white-space: nowrap; 
  max-height: max-content;
  overflow-y: auto;
  overflow-x: auto;
  background-color: #dde9fc;
  z-index: 80;
  padding: 0 2.5% 5px 2.5%;
  font-size: medium;
  box-sizing: border-box;
  border: 1px solid gray;
  border-radius: 10px;
  pointer-events: auto;
}

.users-modal-username-and-email {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid gray;
}

.users-modal-username {
  font-weight: bold;
  font-size: large;
}

.users-modal-email {
  font-size: small;
  margin-top: -12.5px;
}

.users-modal-profile-link, .users-modal-subscribe-link {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  border-top: 1px solid #dde9fc;
  border-bottom: 1px solid gray;
  border-left: 1px solid #dde9fc;
  border-right: 1px solid #dde9fc;
}

.users-modal-profile-link span, .users-modal-subscribe-link span {
  font-size: large;
}

.users-modal-profile-link:hover, .users-modal-subscribe-link:hover {
  background-color: rgb(2, 131, 141);
  border-top: 1px solid gray;
}

.users-modal-log-out-button {
  display: flex;
  flex-direction: row;
  background: none;
  font-size: medium;
  gap: 15px;
  align-items: center;
  width: 100%;
  border-top: 1px solid #dde9fc;
  border-bottom: 1px solid #dde9fc;
  border-left: 1px solid #dde9fc;
  border-right: 1px solid #dde9fc;
}

.users-modal-log-out-button:hover {
  background-color: rgb(2, 131, 141);
  border-bottom: 1px solid gray;
  border-top: 1px solid gray;
}

.users-modal-log-out-button-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: large;
  font-weight: bold;
}

.users-modal-log-out-button-icon-right-arrow {
  margin-left: -2px;
}
/* #endregion */

/* #region subscriptions-pages */
.subscriptions-pages {
  background-color: white;
  padding: 10px 20px 5%;
  border-radius: 1%;
}

.subscriptions-pages h1 {
  text-align: center;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.pricing-card {
  border: 2px solid black;
  border-radius: 10px;
  padding: 0 5% 30px 5%;
  text-align: center;
}

.pricing-card h2 {
  font-size: xx-large;
}

.pricing-price {
  font-size: xx-large;
  font-weight: bold;
  color: navy;
}

.pricing-card ul {
  text-align: left;
}

.pricing-page-archives-link {
  font-weight: bold;
  text-decoration: underline;
}

.pricing-page-archives-link:hover {
  text-shadow: 0 0 5px navy;
  text-decoration: none;
}

.pricing-featured {
  border: 10px solid green;
}

.pricing-off-badge {
  font-size: large;
  margin-top: -3px;
  font-weight: bold;
  background-color: lightgreen;
  width: fit-content;
  padding-right: 10px;
  padding-left: 10px;
  margin: auto;
  border-radius: 10%;
}

.pricing-card button {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 2px solid black;
  border-radius: 10%;
  background: navy;
  color: white;
  font-size: larger;
}

.pricing-card button:hover {
  background: black;
  border: 2px solid navy;
}

.subscriptions-pages-hr {
  height: 1px;
  margin-top: 30px;
  background-color: black;
}

.subscriptions-pages-contact-support-email {
  color: navy;
  font-weight: bold;
  text-decoration: underline;
}

.subscriptions-pages-contact-support-email:hover {
  text-shadow: 0 0 10px navy;
    text-decoration: none;
}
/* #endregion */

/* #region archives-page */
.archives-page {
  background-color: white;
  padding: 10px 20px 5%;
  border-radius: 1%;
}

.archives-page h1 {
  text-align: center;
}

.archives-page .previous-zyradocs-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 5%;
  row-gap: 25px; 
}

.archives-page .actual-previous-zyradoc-link {
  border: 4px solid gray;
  background-color: lightblue;
  border-radius: 10%;
  height: 100px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  padding-right: 5px;
}

.archives-page .actual-previous-zyradoc-link:hover {
  border: 4px solid navy;
}

.archives-page .actual-previous-zyradoc-link .actual-previous-zyradoc-link-number {
  font-size: larger;
  font-weight: bold;
}

.archives-page .actual-previous-zyradoc-link .actual-previous-zyradoc-link-date {
  font-size: small;
}

.previous-zyradoc-card {
  position: relative;
}

.locked-overlay-link {
  position: absolute;
  display: none;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: small;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.25);
  color: white;
  border-radius: 10%;
  z-index: 5;
}

.locked-overlay-link:hover {
  background-color: rgba(0, 0, 50, 0.5);
}

.locked-overlay-content {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  font-weight: bold;
}

.previous-zyradoc-card .lock-icon {
  font-size: xx-large;
}
/* #endregion */

@media screen and (min-width: 991px) {
  main {
    width: 50%;
    margin-top: 100px;
  }

  .subscriptions-pages {
    width: 80vw; 
    position: relative;
    left: 50%;
    margin-left: -40vw; 
    margin-right: -40vw;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
  }
  .pricing-options {
    display: flex;
    flex-direction: row;
    column-gap: 5%;
  }

  .logged-in-users-modal {
    padding: 0 1% 5px 1%;
    font-size: large;
  }
  .users-modal-email {
    font-size: medium;
  }
  .users-modal-profile-link span {
    font-size: larger;
  }
  .users-modal-log-out-button {
    font-size: large;
  }
  .users-modal-log-out-button-icon {
    font-size: larger;
  }

  .login-modal {
    width: 40%;
    max-height: 80vh;
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
  #login-modal-close-btn {
    margin-right: -15px;
    margin-top: -1px;
  }

  #skip-btn {
    height: 45px;
    width: 110px;
  }
  .input-and-submit-button input {
      height: 45px;
  }
  #submit-btn {
    height: 49px;
    width: 110px;
  }

  header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .hamburger button {
    font-size: xx-large;
  }
  .header-logo a span {
    font-size: 32px;
  }
  .header-logo a img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
  }

  .hamburger-menu {
    width: 35%;
    font-size: larger;
  }

  footer {
    padding: 30px 15%;
  }
  .footer-legal-pages {
    column-gap: 100px;
  }

  .cookie-banner {
    padding-left: 10%;
    padding-right: 10%;
  }
  .cookie-banner-buttons button {
    width: 400px;
  }

  .feedback-modal {
      width: 60%;
      padding-bottom: 20px;
  }

  .legal-pages {
    width: 50vw; 
    position: relative;
    left: 50%;
    margin-left: -25vw; 
    margin-right: -25vw;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
  }
  .cookie-preference-reset-btn {
    font-size: larger;
  }
  .about-us-bio {
    width: 65vw; 
    position: relative;
    left: 50%;
    margin-left: -32.5vw; 
    margin-right: -32.5vw;
    box-sizing: border-box;
    padding-left: 5%;
    padding-right: 5%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5%;
  }
  .about-us-bio .bio-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bio-title img {
    width: 150px;
    height: 150px;
  }
  .bio-title .bio-title-name {
    display: none;
  }
  .bio-title .bio-title-role {
    display: none;
  }
  .about-us-bio .bio-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .bio-description .bio-description-name {
    font-size: x-large;
    font-weight: bold;
    display: block;
  }
  .bio-description .bio-description-role {
    margin-top: -25px;
    font-weight: bold;
    display: block;
  }
  .bio-description .bio-description-message {
    margin-top: -5px;
  }
}