body {
  overflow: hidden;
}

nav {
  position: sticky;
  top: -1px;
  left: 0;
  z-index: 999;
  transition: ease-in-out 0.3s all !important;
  -webkit-transition: ease-in-out 0.3s all !important;
  -moz-transition: ease-in-out 0.3s all !important;
  -ms-transition: ease-in-out 0.3s all !important;
  -o-transition: ease-in-out 0.3s all !important;
  border-bottom: 1px solid #0866ff;
  background: #fff;
}

nav .max-width {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1366px;
  width: 100%;
  margin: auto;
}

nav .max-width div {
  height: 56px;
}

nav .max-width div:first-child {
  grid-column: 1;
}

nav .max-width div:first-child img {
  height: 56px;
  padding: 8px;
  margin: 0;
}

nav .max-width div:nth-child(2) {
  grid-column: 2;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}

nav .max-width div:nth-child(2) img {
  height: 56px;
  padding: 8px;
  margin: 0;
  display: none;
}

nav .max-width div:nth-child(2) .toggle {
  display: none;
}

nav .max-width div:nth-child(2) div img {
  display: none;
}

nav .max-width div:nth-child(2) div button {
  height: 56px;
  margin: 0 2px;
  padding: 0;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  background: transparent;
  position: relative;
  cursor: url("cursors/Link.png") 11 7, pointer;
  position: relative;
}

nav .max-width div:nth-child(2) div button span {
  font-variant: small-caps;
  font-size: 20px;
  text-transform: lowercase;
  font-weight: 400;
  padding: 0 15px;
  cursor: url("cursors/Link.png") 11 7, pointer;
  pointer-events: none;
}

nav .max-width div:nth-child(2) div button div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  height: 0px;
  background: rgba(8, 102, 255, 0.15);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
  margin-top: 3px;
  cursor: url("cursors/Link.png") 11 7, pointer;
  pointer-events: none;
}

nav .max-width div:nth-child(2) div button.active {
  pointer-events: none;
  color: #0866ff;
  cursor: url("cursors/Normal.png") 9 6, auto;
}

nav .max-width div:nth-child(2) div button.active span {
  font-weight: 600;
}

nav .max-width div:nth-child(2) div button.active div {
  background: #0866ff;
  height: 5px;
}

nav .max-width div:nth-child(2) div button:hover {
  color: #0866ff;
}

nav .max-width div:nth-child(2) div button:hover div {
  height: 56px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

@media (max-width: 1230px) {
  nav .max-width div button {
    margin: 0;
  }
  nav .max-width div button span {
    padding: 0 5px;
  }
}
nav .max-width div:last-child {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  grid-column: 3;
}

nav .max-width div:last-child #btn-search {
  position: relative;
  height: 56px;
  min-width: 56px;
  width: 56px;
  background: transparent;
  margin-left: 10px;
  cursor: url("cursors/Link.png") 11 7, pointer;
}

nav .max-width div:last-child #btn-search i {
  pointer-events: none;
  cursor: url("cursors/Link.png") 11 7, pointer;
}

nav .max-width div:last-child #btn-search div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  height: 0px;
  background: rgba(8, 102, 255, 0.15);
  width: 100%;
  margin-top: 3px;
  cursor: url("cursors/Link.png") 11 7, pointer;
  pointer-events: none;
}

nav .max-width div:last-child #btn-search:hover {
  color: #0866ff;
}

nav .max-width div:last-child #btn-search:hover div {
  height: 56px;
}

nav .max-width div:last-child .search {
  width: 0%;
  height: 40px;
  border: 1px solid #041e40;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
  opacity: 0;
  margin-left: 10px;
}

nav .max-width div:last-child .search form {
  display: flex;
  flex-direction: row;
}

nav .max-width div:last-child .search form input {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  border: none;
  height: 40px;
  cursor: url("cursors/Text.png") 16 7, text;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding: 5px 50px 5px 15px;
  font-size: 16px;
  outline: none;
}

nav .max-width div:last-child .search form button {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: #041e40;
  color: #e9f2ed;
  position: absolute;
  right: 0;
  top: 0;
  cursor: url("cursors/Link.png") 11 7, pointer;
  z-index: 10;
}

nav .max-width div:last-child .search form button i {
  pointer-events: none;
  cursor: url("cursors/Link.png") 11 7, pointer;
}

@media (max-width: 1250px) {
  nav {
    position: unset;
  }
  nav .max-width {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    gap: 0;
  }
  nav .max-width div:first-child {
    grid-column: 1;
    grid-row: 1;
    transition: all 0.3s ease;
  }
  nav .max-width div:nth-child(2) {
    grid-column: 1/span 2;
    grid-row: 2;
  }
  nav .max-width div:nth-child(2).sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 56px;
  }
  nav .max-width div:last-child {
    grid-column: 2;
    grid-row: 1;
    transition: all 0.3s ease;
  }
}
@media (max-width: 550px) {
  nav {
    position: unset;
  }
  nav .max-width {
    display: flex;
    flex-direction: column;
  }
  nav .max-width div:first-child img {
    display: none;
  }
  nav .max-width div:nth-child(2) {
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 80;
    background: #fff;
    width: 100%;
  }
  nav .max-width div:nth-child(2) .toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 0;
    top: 0;
    height: 56px;
    width: 56px;
    z-index: 100;
    background: transparent;
    font-size: 20px;
  }
  nav .max-width div:nth-child(2) .toggle:active {
    background: none;
  }
  nav .max-width div:nth-child(2) img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  nav .max-width div:nth-child(2) #nav-btn {
    display: none;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 56px);
    z-index: 90;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.274);
    overflow: auto;
    align-items: flex-start;
    display: block;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    max-width: 325px;
    width: 100%;
    min-height: calc(100dvh - 56px);
    background: #fff;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 0;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div button {
    height: 56px;
    max-height: 56px !important;
    min-height: 56px !important;
    position: relative;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div button div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 56px;
    max-height: 56px !important;
    min-height: 56px !important;
    background: rgba(8, 102, 255, 0.15);
    border-top-left-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    margin-top: 3px;
    cursor: url("cursors/Link.png") 11 7, pointer;
    pointer-events: none;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div button.active {
    pointer-events: none;
    color: #0866ff;
    cursor: url("cursors/Normal.png") 9 6, auto;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div button.active span {
    font-weight: 600;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div button.active div {
    background: #0866ff;
    width: 5px;
    height: 0px;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div button:hover {
    color: #0866ff;
  }
  nav .max-width div:nth-child(2) #nav-btn.navVisible div button:hover div {
    width: 100%;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  nav .max-width div:last-child .search {
    opacity: 1;
    width: 100%;
    margin: 0px 10px 0px;
  }
  nav .max-width div:last-child #btn-search {
    display: none;
  }
}
section {
  width: 100%;
  background: #e9f2ed;
  min-height: calc(100dvh - 102px);
  overflow: hidden;
}

#scrollTop {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #392973;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1000;
  border: 3px solid #e9f2ed;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  cursor: url("cursors/Link.png") 11 7, pointer;
}

#scrollTop i {
  pointer-events: none;
}

footer {
  background: #041e40;
  padding: 15px 5px;
}

footer div {
  max-width: 1300px;
  margin: auto;
}

footer div p {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

footer div p a {
  text-decoration: none;
  color: #fff;
  cursor: url("cursors/Link.png") 11 7, pointer;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 2px solid #fff;
}

.stn-v-resources,
.stn-v-home,
.stn-v-author-resource,
.stn-v-bookshelf-resources,
.stn-v-search-resources,
.stn-v-category-resources {
  display: none;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.75);
  padding: 15px 15px 100px;
}

.stn-v-resources .max-width,
.stn-v-home .max-width,
.stn-v-author-resource .max-width,
.stn-v-bookshelf-resources .max-width,
.stn-v-search-resources .max-width,
.stn-v-category-resources .max-width {
  max-width: 1366px;
  width: 100%;
  margin: auto;
  position: relative;
}

.stn-v-resources .max-width .btn-back,
.stn-v-home .max-width .btn-back,
.stn-v-author-resource .max-width .btn-back,
.stn-v-bookshelf-resources .max-width .btn-back,
.stn-v-search-resources .max-width .btn-back,
.stn-v-category-resources .max-width .btn-back {
  height: 56px;
  width: 100px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: url("cursors/Link.png") 11 7, pointer;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
}

.stn-v-resources .max-width .btn-back i,
.stn-v-home .max-width .btn-back i,
.stn-v-author-resource .max-width .btn-back i,
.stn-v-bookshelf-resources .max-width .btn-back i,
.stn-v-search-resources .max-width .btn-back i,
.stn-v-category-resources .max-width .btn-back i {
  pointer-events: none;
  font-size: 18px;
  padding-right: 15px;
}

.stn-v-resources .max-width .resourceContainer,
.stn-v-home .max-width .resourceContainer,
.stn-v-author-resource .max-width .resourceContainer,
.stn-v-bookshelf-resources .max-width .resourceContainer,
.stn-v-search-resources .max-width .resourceContainer,
.stn-v-category-resources .max-width .resourceContainer {
  display: flex;
  width: 100%;
  margin: 0 auto;
  gap: 20px;
}

.stn-v-resources .max-width .resourceContainer .left,
.stn-v-home .max-width .resourceContainer .left,
.stn-v-author-resource .max-width .resourceContainer .left,
.stn-v-bookshelf-resources .max-width .resourceContainer .left,
.stn-v-search-resources .max-width .resourceContainer .left,
.stn-v-category-resources .max-width .resourceContainer .left {
  flex: 0 0 22%;
  max-width: 300px;
  text-align: center;
  position: sticky;
  top: 127px;
  align-self: flex-start;
}

.stn-v-resources .max-width .resourceContainer .left img,
.stn-v-home .max-width .resourceContainer .left img,
.stn-v-author-resource .max-width .resourceContainer .left img,
.stn-v-bookshelf-resources .max-width .resourceContainer .left img,
.stn-v-search-resources .max-width .resourceContainer .left img,
.stn-v-category-resources .max-width .resourceContainer .left img {
  width: 70%;
  margin: auto;
  height: auto;
}

.stn-v-resources .max-width .resourceContainer .left .stock,
.stn-v-home .max-width .resourceContainer .left .stock,
.stn-v-author-resource .max-width .resourceContainer .left .stock,
.stn-v-bookshelf-resources .max-width .resourceContainer .left .stock,
.stn-v-search-resources .max-width .resourceContainer .left .stock,
.stn-v-category-resources .max-width .resourceContainer .left .stock {
  padding-top: 15px;
  font-size: 18px;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.stn-v-resources .max-width .resourceContainer .left .stock span,
.stn-v-home .max-width .resourceContainer .left .stock span,
.stn-v-author-resource .max-width .resourceContainer .left .stock span,
.stn-v-bookshelf-resources .max-width .resourceContainer .left .stock span,
.stn-v-search-resources .max-width .resourceContainer .left .stock span,
.stn-v-category-resources .max-width .resourceContainer .left .stock span {
  font-weight: 400;
  font-size: 60px;
}

.stn-v-resources .max-width .resourceContainer .left .access,
.stn-v-home .max-width .resourceContainer .left .access,
.stn-v-author-resource .max-width .resourceContainer .left .access,
.stn-v-bookshelf-resources .max-width .resourceContainer .left .access,
.stn-v-search-resources .max-width .resourceContainer .left .access,
.stn-v-category-resources .max-width .resourceContainer .left .access {
  padding-top: 15px;
  font-size: 18px;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.stn-v-resources .max-width .resourceContainer .left .access span,
.stn-v-home .max-width .resourceContainer .left .access span,
.stn-v-author-resource .max-width .resourceContainer .left .access span,
.stn-v-bookshelf-resources .max-width .resourceContainer .left .access span,
.stn-v-search-resources .max-width .resourceContainer .left .access span,
.stn-v-category-resources .max-width .resourceContainer .left .access span {
  font-weight: 400;
  font-size: 25px;
}

.stn-v-resources .max-width .resourceContainer .right,
.stn-v-home .max-width .resourceContainer .right,
.stn-v-author-resource .max-width .resourceContainer .right,
.stn-v-bookshelf-resources .max-width .resourceContainer .right,
.stn-v-search-resources .max-width .resourceContainer .right,
.stn-v-category-resources .max-width .resourceContainer .right {
  flex: 1;
}

.stn-v-resources .max-width .resourceContainer .right h1,
.stn-v-home .max-width .resourceContainer .right h1,
.stn-v-author-resource .max-width .resourceContainer .right h1,
.stn-v-bookshelf-resources .max-width .resourceContainer .right h1,
.stn-v-search-resources .max-width .resourceContainer .right h1,
.stn-v-category-resources .max-width .resourceContainer .right h1 {
  font-size: 36px;
  padding: 0px 0px 5px;
  font-weight: 600;
  line-height: 42px;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
}

.stn-v-resources .max-width .resourceContainer .right h2,
.stn-v-home .max-width .resourceContainer .right h2,
.stn-v-author-resource .max-width .resourceContainer .right h2,
.stn-v-bookshelf-resources .max-width .resourceContainer .right h2,
.stn-v-search-resources .max-width .resourceContainer .right h2,
.stn-v-category-resources .max-width .resourceContainer .right h2 {
  font-size: 28px;
  padding: 0px 0px 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
}

.stn-v-resources .max-width .resourceContainer .right #resource-author,
.stn-v-home .max-width .resourceContainer .right #resource-author,
.stn-v-author-resource .max-width .resourceContainer .right #resource-author,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-author,
.stn-v-search-resources .max-width .resourceContainer .right #resource-author,
.stn-v-category-resources .max-width .resourceContainer .right #resource-author {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.stn-v-resources .max-width .resourceContainer .right #resource-author button,
.stn-v-home .max-width .resourceContainer .right #resource-author button,
.stn-v-author-resource .max-width .resourceContainer .right #resource-author button,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-author button,
.stn-v-search-resources .max-width .resourceContainer .right #resource-author button,
.stn-v-category-resources .max-width .resourceContainer .right #resource-author button {
  font-size: 20px;
  font-weight: 400;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
  background: transparent;
  cursor: url("cursors/Link.png") 11 7, pointer;
  padding: 3px 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  color: #fff;
  background: #041e40;
}

.stn-v-resources .max-width .resourceContainer .right #resource-author button:hover,
.stn-v-home .max-width .resourceContainer .right #resource-author button:hover,
.stn-v-author-resource .max-width .resourceContainer .right #resource-author button:hover,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-author button:hover,
.stn-v-search-resources .max-width .resourceContainer .right #resource-author button:hover,
.stn-v-category-resources .max-width .resourceContainer .right #resource-author button:hover {
  color: #fff;
  background: #0388a6;
  box-shadow: inset 1px 1px 4px -3px rgba(255, 255, 255, 0.6), inset -1px -1px 1px 0px rgba(255, 255, 255, 0.25), inset 1px 1px 15px 0px rgba(255, 255, 255, 0.4), inset -1px -1px 1px 0px rgba(255, 255, 255, 0.4);
}

.stn-v-resources .max-width .resourceContainer .right #resource-summary,
.stn-v-home .max-width .resourceContainer .right #resource-summary,
.stn-v-author-resource .max-width .resourceContainer .right #resource-summary,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-summary,
.stn-v-search-resources .max-width .resourceContainer .right #resource-summary,
.stn-v-category-resources .max-width .resourceContainer .right #resource-summary {
  text-align: justify;
  font-size: 16px;
  white-space: pre-line;
}

.stn-v-resources .max-width .resourceContainer .right .label,
.stn-v-home .max-width .resourceContainer .right .label,
.stn-v-author-resource .max-width .resourceContainer .right .label,
.stn-v-bookshelf-resources .max-width .resourceContainer .right .label,
.stn-v-search-resources .max-width .resourceContainer .right .label,
.stn-v-category-resources .max-width .resourceContainer .right .label {
  padding-top: 25px;
  font-size: 14px;
  color: #392973;
  margin-bottom: 5px;
}

.stn-v-resources .max-width .resourceContainer .right #resource-genre,
.stn-v-home .max-width .resourceContainer .right #resource-genre,
.stn-v-author-resource .max-width .resourceContainer .right #resource-genre,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-genre,
.stn-v-search-resources .max-width .resourceContainer .right #resource-genre,
.stn-v-category-resources .max-width .resourceContainer .right #resource-genre {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.stn-v-resources .max-width .resourceContainer .right #resource-genre button,
.stn-v-home .max-width .resourceContainer .right #resource-genre button,
.stn-v-author-resource .max-width .resourceContainer .right #resource-genre button,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-genre button,
.stn-v-search-resources .max-width .resourceContainer .right #resource-genre button,
.stn-v-category-resources .max-width .resourceContainer .right #resource-genre button {
  flex: 0 0 auto;
  font-size: 16px;
  background: transparent;
  cursor: url("cursors/Link.png") 11 7, pointer;
  padding: 5px 13px;
  border-radius: 17px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  -ms-border-radius: 17px;
  -o-border-radius: 17px;
  border: 1px solid #041e40;
}

.stn-v-resources .max-width .resourceContainer .right #resource-genre button:hover,
.stn-v-home .max-width .resourceContainer .right #resource-genre button:hover,
.stn-v-author-resource .max-width .resourceContainer .right #resource-genre button:hover,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-genre button:hover,
.stn-v-search-resources .max-width .resourceContainer .right #resource-genre button:hover,
.stn-v-category-resources .max-width .resourceContainer .right #resource-genre button:hover {
  color: #fff;
  box-shadow: inset 1px 1px 4px -3px rgba(255, 255, 255, 0.6), inset -1px -1px 1px 0px rgba(255, 255, 255, 0.25), inset 1px 1px 15px 0px rgba(255, 255, 255, 0.4), inset -1px -1px 1px 0px rgba(255, 255, 255, 0.4);
  background: #0388a6;
}

.stn-v-resources .max-width .resourceContainer .right .label-2,
.stn-v-home .max-width .resourceContainer .right .label-2,
.stn-v-author-resource .max-width .resourceContainer .right .label-2,
.stn-v-bookshelf-resources .max-width .resourceContainer .right .label-2,
.stn-v-search-resources .max-width .resourceContainer .right .label-2,
.stn-v-category-resources .max-width .resourceContainer .right .label-2 {
  padding-top: 25px;
  font-size: 14px;
  color: #392973;
  margin-bottom: 5px;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
  font-weight: 900;
}

.stn-v-resources .max-width .resourceContainer .right .edition-column,
.stn-v-home .max-width .resourceContainer .right .edition-column,
.stn-v-author-resource .max-width .resourceContainer .right .edition-column,
.stn-v-bookshelf-resources .max-width .resourceContainer .right .edition-column,
.stn-v-search-resources .max-width .resourceContainer .right .edition-column,
.stn-v-category-resources .max-width .resourceContainer .right .edition-column {
  display: flex;
  flex-direction: row;
  padding: 4px 0;
}

.stn-v-resources .max-width .resourceContainer .right .edition-column div,
.stn-v-home .max-width .resourceContainer .right .edition-column div,
.stn-v-author-resource .max-width .resourceContainer .right .edition-column div,
.stn-v-bookshelf-resources .max-width .resourceContainer .right .edition-column div,
.stn-v-search-resources .max-width .resourceContainer .right .edition-column div,
.stn-v-category-resources .max-width .resourceContainer .right .edition-column div {
  font-size: 14px;
}

.stn-v-resources .max-width .resourceContainer .right .edition-column div:nth-child(2),
.stn-v-home .max-width .resourceContainer .right .edition-column div:nth-child(2),
.stn-v-author-resource .max-width .resourceContainer .right .edition-column div:nth-child(2),
.stn-v-bookshelf-resources .max-width .resourceContainer .right .edition-column div:nth-child(2),
.stn-v-search-resources .max-width .resourceContainer .right .edition-column div:nth-child(2),
.stn-v-category-resources .max-width .resourceContainer .right .edition-column div:nth-child(2) {
  width: calc(100% - 185px);
}

.stn-v-resources .max-width .resourceContainer .right .edition-column .edition-label,
.stn-v-home .max-width .resourceContainer .right .edition-column .edition-label,
.stn-v-author-resource .max-width .resourceContainer .right .edition-column .edition-label,
.stn-v-bookshelf-resources .max-width .resourceContainer .right .edition-column .edition-label,
.stn-v-search-resources .max-width .resourceContainer .right .edition-column .edition-label,
.stn-v-category-resources .max-width .resourceContainer .right .edition-column .edition-label {
  width: 185px;
  padding-right: 16px;
  color: #392973;
}

.stn-v-resources .max-width .resourceContainer .right #resource-location,
.stn-v-resources .max-width .resourceContainer .right #home-location,
.stn-v-resources .max-width .resourceContainer .right #author-location,
.stn-v-resources .max-width .resourceContainer .right #bookshelf-location,
.stn-v-resources .max-width .resourceContainer .right #search-location,
.stn-v-home .max-width .resourceContainer .right #resource-location,
.stn-v-home .max-width .resourceContainer .right #home-location,
.stn-v-home .max-width .resourceContainer .right #author-location,
.stn-v-home .max-width .resourceContainer .right #bookshelf-location,
.stn-v-home .max-width .resourceContainer .right #search-location,
.stn-v-author-resource .max-width .resourceContainer .right #resource-location,
.stn-v-author-resource .max-width .resourceContainer .right #home-location,
.stn-v-author-resource .max-width .resourceContainer .right #author-location,
.stn-v-author-resource .max-width .resourceContainer .right #bookshelf-location,
.stn-v-author-resource .max-width .resourceContainer .right #search-location,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-location,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #home-location,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #author-location,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #bookshelf-location,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #search-location,
.stn-v-search-resources .max-width .resourceContainer .right #resource-location,
.stn-v-search-resources .max-width .resourceContainer .right #home-location,
.stn-v-search-resources .max-width .resourceContainer .right #author-location,
.stn-v-search-resources .max-width .resourceContainer .right #bookshelf-location,
.stn-v-search-resources .max-width .resourceContainer .right #search-location,
.stn-v-category-resources .max-width .resourceContainer .right #resource-location,
.stn-v-category-resources .max-width .resourceContainer .right #home-location,
.stn-v-category-resources .max-width .resourceContainer .right #author-location,
.stn-v-category-resources .max-width .resourceContainer .right #bookshelf-location,
.stn-v-category-resources .max-width .resourceContainer .right #search-location {
  display: flex;
  gap: 5px;
}

.stn-v-resources .max-width .resourceContainer .right #resource-location button,
.stn-v-resources .max-width .resourceContainer .right #home-location button,
.stn-v-resources .max-width .resourceContainer .right #author-location button,
.stn-v-resources .max-width .resourceContainer .right #bookshelf-location button,
.stn-v-resources .max-width .resourceContainer .right #search-location button,
.stn-v-home .max-width .resourceContainer .right #resource-location button,
.stn-v-home .max-width .resourceContainer .right #home-location button,
.stn-v-home .max-width .resourceContainer .right #author-location button,
.stn-v-home .max-width .resourceContainer .right #bookshelf-location button,
.stn-v-home .max-width .resourceContainer .right #search-location button,
.stn-v-author-resource .max-width .resourceContainer .right #resource-location button,
.stn-v-author-resource .max-width .resourceContainer .right #home-location button,
.stn-v-author-resource .max-width .resourceContainer .right #author-location button,
.stn-v-author-resource .max-width .resourceContainer .right #bookshelf-location button,
.stn-v-author-resource .max-width .resourceContainer .right #search-location button,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-location button,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #home-location button,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #author-location button,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #bookshelf-location button,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #search-location button,
.stn-v-search-resources .max-width .resourceContainer .right #resource-location button,
.stn-v-search-resources .max-width .resourceContainer .right #home-location button,
.stn-v-search-resources .max-width .resourceContainer .right #author-location button,
.stn-v-search-resources .max-width .resourceContainer .right #bookshelf-location button,
.stn-v-search-resources .max-width .resourceContainer .right #search-location button,
.stn-v-category-resources .max-width .resourceContainer .right #resource-location button,
.stn-v-category-resources .max-width .resourceContainer .right #home-location button,
.stn-v-category-resources .max-width .resourceContainer .right #author-location button,
.stn-v-category-resources .max-width .resourceContainer .right #bookshelf-location button,
.stn-v-category-resources .max-width .resourceContainer .right #search-location button {
  font-size: 18px;
  background: transparent;
  cursor: url("cursors/Link.png") 11 7, pointer;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 700;
  border: 5px solid #5a2e0e;
  background-color: #b97540;
  color: #e9f2ed;
}

.stn-v-resources .max-width .resourceContainer .right #resource-location button:hover,
.stn-v-resources .max-width .resourceContainer .right #home-location button:hover,
.stn-v-resources .max-width .resourceContainer .right #author-location button:hover,
.stn-v-resources .max-width .resourceContainer .right #bookshelf-location button:hover,
.stn-v-resources .max-width .resourceContainer .right #search-location button:hover,
.stn-v-home .max-width .resourceContainer .right #resource-location button:hover,
.stn-v-home .max-width .resourceContainer .right #home-location button:hover,
.stn-v-home .max-width .resourceContainer .right #author-location button:hover,
.stn-v-home .max-width .resourceContainer .right #bookshelf-location button:hover,
.stn-v-home .max-width .resourceContainer .right #search-location button:hover,
.stn-v-author-resource .max-width .resourceContainer .right #resource-location button:hover,
.stn-v-author-resource .max-width .resourceContainer .right #home-location button:hover,
.stn-v-author-resource .max-width .resourceContainer .right #author-location button:hover,
.stn-v-author-resource .max-width .resourceContainer .right #bookshelf-location button:hover,
.stn-v-author-resource .max-width .resourceContainer .right #search-location button:hover,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-location button:hover,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #home-location button:hover,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #author-location button:hover,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #bookshelf-location button:hover,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #search-location button:hover,
.stn-v-search-resources .max-width .resourceContainer .right #resource-location button:hover,
.stn-v-search-resources .max-width .resourceContainer .right #home-location button:hover,
.stn-v-search-resources .max-width .resourceContainer .right #author-location button:hover,
.stn-v-search-resources .max-width .resourceContainer .right #bookshelf-location button:hover,
.stn-v-search-resources .max-width .resourceContainer .right #search-location button:hover,
.stn-v-category-resources .max-width .resourceContainer .right #resource-location button:hover,
.stn-v-category-resources .max-width .resourceContainer .right #home-location button:hover,
.stn-v-category-resources .max-width .resourceContainer .right #author-location button:hover,
.stn-v-category-resources .max-width .resourceContainer .right #bookshelf-location button:hover,
.stn-v-category-resources .max-width .resourceContainer .right #search-location button:hover {
  border: 5px solid #0866ff;
  background-color: rgba(8, 102, 255, 0.15);
  color: #0866ff;
}

.stn-v-resources .max-width .resourceContainer .right #resource-location button:hover span,
.stn-v-resources .max-width .resourceContainer .right #home-location button:hover span,
.stn-v-resources .max-width .resourceContainer .right #author-location button:hover span,
.stn-v-resources .max-width .resourceContainer .right #bookshelf-location button:hover span,
.stn-v-resources .max-width .resourceContainer .right #search-location button:hover span,
.stn-v-home .max-width .resourceContainer .right #resource-location button:hover span,
.stn-v-home .max-width .resourceContainer .right #home-location button:hover span,
.stn-v-home .max-width .resourceContainer .right #author-location button:hover span,
.stn-v-home .max-width .resourceContainer .right #bookshelf-location button:hover span,
.stn-v-home .max-width .resourceContainer .right #search-location button:hover span,
.stn-v-author-resource .max-width .resourceContainer .right #resource-location button:hover span,
.stn-v-author-resource .max-width .resourceContainer .right #home-location button:hover span,
.stn-v-author-resource .max-width .resourceContainer .right #author-location button:hover span,
.stn-v-author-resource .max-width .resourceContainer .right #bookshelf-location button:hover span,
.stn-v-author-resource .max-width .resourceContainer .right #search-location button:hover span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-location button:hover span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #home-location button:hover span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #author-location button:hover span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #bookshelf-location button:hover span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #search-location button:hover span,
.stn-v-search-resources .max-width .resourceContainer .right #resource-location button:hover span,
.stn-v-search-resources .max-width .resourceContainer .right #home-location button:hover span,
.stn-v-search-resources .max-width .resourceContainer .right #author-location button:hover span,
.stn-v-search-resources .max-width .resourceContainer .right #bookshelf-location button:hover span,
.stn-v-search-resources .max-width .resourceContainer .right #search-location button:hover span,
.stn-v-category-resources .max-width .resourceContainer .right #resource-location button:hover span,
.stn-v-category-resources .max-width .resourceContainer .right #home-location button:hover span,
.stn-v-category-resources .max-width .resourceContainer .right #author-location button:hover span,
.stn-v-category-resources .max-width .resourceContainer .right #bookshelf-location button:hover span,
.stn-v-category-resources .max-width .resourceContainer .right #search-location button:hover span {
  border-top: 3px solid #0866ff;
  color: #0866ff;
}

.stn-v-resources .max-width .resourceContainer .right #resource-location button:hover span span,
.stn-v-resources .max-width .resourceContainer .right #home-location button:hover span span,
.stn-v-resources .max-width .resourceContainer .right #author-location button:hover span span,
.stn-v-resources .max-width .resourceContainer .right #bookshelf-location button:hover span span,
.stn-v-resources .max-width .resourceContainer .right #search-location button:hover span span,
.stn-v-home .max-width .resourceContainer .right #resource-location button:hover span span,
.stn-v-home .max-width .resourceContainer .right #home-location button:hover span span,
.stn-v-home .max-width .resourceContainer .right #author-location button:hover span span,
.stn-v-home .max-width .resourceContainer .right #bookshelf-location button:hover span span,
.stn-v-home .max-width .resourceContainer .right #search-location button:hover span span,
.stn-v-author-resource .max-width .resourceContainer .right #resource-location button:hover span span,
.stn-v-author-resource .max-width .resourceContainer .right #home-location button:hover span span,
.stn-v-author-resource .max-width .resourceContainer .right #author-location button:hover span span,
.stn-v-author-resource .max-width .resourceContainer .right #bookshelf-location button:hover span span,
.stn-v-author-resource .max-width .resourceContainer .right #search-location button:hover span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-location button:hover span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #home-location button:hover span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #author-location button:hover span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #bookshelf-location button:hover span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #search-location button:hover span span,
.stn-v-search-resources .max-width .resourceContainer .right #resource-location button:hover span span,
.stn-v-search-resources .max-width .resourceContainer .right #home-location button:hover span span,
.stn-v-search-resources .max-width .resourceContainer .right #author-location button:hover span span,
.stn-v-search-resources .max-width .resourceContainer .right #bookshelf-location button:hover span span,
.stn-v-search-resources .max-width .resourceContainer .right #search-location button:hover span span,
.stn-v-category-resources .max-width .resourceContainer .right #resource-location button:hover span span,
.stn-v-category-resources .max-width .resourceContainer .right #home-location button:hover span span,
.stn-v-category-resources .max-width .resourceContainer .right #author-location button:hover span span,
.stn-v-category-resources .max-width .resourceContainer .right #bookshelf-location button:hover span span,
.stn-v-category-resources .max-width .resourceContainer .right #search-location button:hover span span {
  border-top: none;
  color: #0866ff;
}

.stn-v-resources .max-width .resourceContainer .right #resource-location button span,
.stn-v-resources .max-width .resourceContainer .right #home-location button span,
.stn-v-resources .max-width .resourceContainer .right #author-location button span,
.stn-v-resources .max-width .resourceContainer .right #bookshelf-location button span,
.stn-v-resources .max-width .resourceContainer .right #search-location button span,
.stn-v-home .max-width .resourceContainer .right #resource-location button span,
.stn-v-home .max-width .resourceContainer .right #home-location button span,
.stn-v-home .max-width .resourceContainer .right #author-location button span,
.stn-v-home .max-width .resourceContainer .right #bookshelf-location button span,
.stn-v-home .max-width .resourceContainer .right #search-location button span,
.stn-v-author-resource .max-width .resourceContainer .right #resource-location button span,
.stn-v-author-resource .max-width .resourceContainer .right #home-location button span,
.stn-v-author-resource .max-width .resourceContainer .right #author-location button span,
.stn-v-author-resource .max-width .resourceContainer .right #bookshelf-location button span,
.stn-v-author-resource .max-width .resourceContainer .right #search-location button span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-location button span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #home-location button span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #author-location button span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #bookshelf-location button span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #search-location button span,
.stn-v-search-resources .max-width .resourceContainer .right #resource-location button span,
.stn-v-search-resources .max-width .resourceContainer .right #home-location button span,
.stn-v-search-resources .max-width .resourceContainer .right #author-location button span,
.stn-v-search-resources .max-width .resourceContainer .right #bookshelf-location button span,
.stn-v-search-resources .max-width .resourceContainer .right #search-location button span,
.stn-v-category-resources .max-width .resourceContainer .right #resource-location button span,
.stn-v-category-resources .max-width .resourceContainer .right #home-location button span,
.stn-v-category-resources .max-width .resourceContainer .right #author-location button span,
.stn-v-category-resources .max-width .resourceContainer .right #bookshelf-location button span,
.stn-v-category-resources .max-width .resourceContainer .right #search-location button span {
  padding-top: 10px;
  font-size: 14px;
  text-transform: lowercase;
  font-variant: small-caps;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #e9f2ed;
  pointer-events: none;
  border-top: 3px solid #5a2e0e;
  width: 100%;
}

.stn-v-resources .max-width .resourceContainer .right #resource-location button span span,
.stn-v-resources .max-width .resourceContainer .right #home-location button span span,
.stn-v-resources .max-width .resourceContainer .right #author-location button span span,
.stn-v-resources .max-width .resourceContainer .right #bookshelf-location button span span,
.stn-v-resources .max-width .resourceContainer .right #search-location button span span,
.stn-v-home .max-width .resourceContainer .right #resource-location button span span,
.stn-v-home .max-width .resourceContainer .right #home-location button span span,
.stn-v-home .max-width .resourceContainer .right #author-location button span span,
.stn-v-home .max-width .resourceContainer .right #bookshelf-location button span span,
.stn-v-home .max-width .resourceContainer .right #search-location button span span,
.stn-v-author-resource .max-width .resourceContainer .right #resource-location button span span,
.stn-v-author-resource .max-width .resourceContainer .right #home-location button span span,
.stn-v-author-resource .max-width .resourceContainer .right #author-location button span span,
.stn-v-author-resource .max-width .resourceContainer .right #bookshelf-location button span span,
.stn-v-author-resource .max-width .resourceContainer .right #search-location button span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #resource-location button span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #home-location button span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #author-location button span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #bookshelf-location button span span,
.stn-v-bookshelf-resources .max-width .resourceContainer .right #search-location button span span,
.stn-v-search-resources .max-width .resourceContainer .right #resource-location button span span,
.stn-v-search-resources .max-width .resourceContainer .right #home-location button span span,
.stn-v-search-resources .max-width .resourceContainer .right #author-location button span span,
.stn-v-search-resources .max-width .resourceContainer .right #bookshelf-location button span span,
.stn-v-search-resources .max-width .resourceContainer .right #search-location button span span,
.stn-v-category-resources .max-width .resourceContainer .right #resource-location button span span,
.stn-v-category-resources .max-width .resourceContainer .right #home-location button span span,
.stn-v-category-resources .max-width .resourceContainer .right #author-location button span span,
.stn-v-category-resources .max-width .resourceContainer .right #bookshelf-location button span span,
.stn-v-category-resources .max-width .resourceContainer .right #search-location button span span {
  padding-top: 0px;
  font-weight: 400;
  color: #e9f2ed;
  border-top: none;
  font-size: 16px;
}

@media (max-width: 800px) {
  .stn-v-resources .max-width .resourceContainer,
  .stn-v-home .max-width .resourceContainer,
  .stn-v-author-resource .max-width .resourceContainer,
  .stn-v-bookshelf-resources .max-width .resourceContainer,
  .stn-v-search-resources .max-width .resourceContainer,
  .stn-v-category-resources .max-width .resourceContainer {
    flex-direction: column;
    gap: 30px;
  }
  .stn-v-resources .max-width .resourceContainer .left,
  .stn-v-home .max-width .resourceContainer .left,
  .stn-v-author-resource .max-width .resourceContainer .left,
  .stn-v-bookshelf-resources .max-width .resourceContainer .left,
  .stn-v-search-resources .max-width .resourceContainer .left,
  .stn-v-category-resources .max-width .resourceContainer .left {
    position: static; /* remove sticky */
    max-width: 210px;
    margin: 0 auto; /* center */
  }
  .stn-v-resources .max-width .resourceContainer .left img,
  .stn-v-home .max-width .resourceContainer .left img,
  .stn-v-author-resource .max-width .resourceContainer .left img,
  .stn-v-bookshelf-resources .max-width .resourceContainer .left img,
  .stn-v-search-resources .max-width .resourceContainer .left img,
  .stn-v-category-resources .max-width .resourceContainer .left img {
    width: 100%; /* scale to max 210px */
    max-width: 210px;
  }
  .stn-v-resources .max-width .resourceContainer .right,
  .stn-v-home .max-width .resourceContainer .right,
  .stn-v-author-resource .max-width .resourceContainer .right,
  .stn-v-bookshelf-resources .max-width .resourceContainer .right,
  .stn-v-search-resources .max-width .resourceContainer .right,
  .stn-v-category-resources .max-width .resourceContainer .right {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .stn-v-resources .max-width .resourceContainer .right .edition-column,
  .stn-v-home .max-width .resourceContainer .right .edition-column,
  .stn-v-author-resource .max-width .resourceContainer .right .edition-column,
  .stn-v-bookshelf-resources .max-width .resourceContainer .right .edition-column,
  .stn-v-search-resources .max-width .resourceContainer .right .edition-column,
  .stn-v-category-resources .max-width .resourceContainer .right .edition-column {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
}
@media (max-height: 600px) {
  .stn-v-resources .max-width .resourceContainer,
  .stn-v-home .max-width .resourceContainer,
  .stn-v-author-resource .max-width .resourceContainer,
  .stn-v-bookshelf-resources .max-width .resourceContainer,
  .stn-v-search-resources .max-width .resourceContainer,
  .stn-v-category-resources .max-width .resourceContainer {
    flex-direction: column;
    gap: 30px;
  }
  .stn-v-resources .max-width .resourceContainer .left,
  .stn-v-home .max-width .resourceContainer .left,
  .stn-v-author-resource .max-width .resourceContainer .left,
  .stn-v-bookshelf-resources .max-width .resourceContainer .left,
  .stn-v-search-resources .max-width .resourceContainer .left,
  .stn-v-category-resources .max-width .resourceContainer .left {
    position: static; /* remove sticky */
    max-width: 210px;
    margin: 0 auto; /* center */
  }
  .stn-v-resources .max-width .resourceContainer .left img,
  .stn-v-home .max-width .resourceContainer .left img,
  .stn-v-author-resource .max-width .resourceContainer .left img,
  .stn-v-bookshelf-resources .max-width .resourceContainer .left img,
  .stn-v-search-resources .max-width .resourceContainer .left img,
  .stn-v-category-resources .max-width .resourceContainer .left img {
    width: 100%; /* scale to max 210px */
    max-width: 210px;
  }
  .stn-v-resources .max-width .resourceContainer .right,
  .stn-v-home .max-width .resourceContainer .right,
  .stn-v-author-resource .max-width .resourceContainer .right,
  .stn-v-bookshelf-resources .max-width .resourceContainer .right,
  .stn-v-search-resources .max-width .resourceContainer .right,
  .stn-v-category-resources .max-width .resourceContainer .right {
    flex: none;
    width: 100%;
  }
}
.stn-v-resources-bookshelf,
.stn-v-home-bookshelf,
.stn-v-author-bookshelf,
.stn-v-bookshelf-shelf,
.stn-v-search-bookshelf,
.stn-v-category-bookshelf {
  display: none;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.75);
  padding: 15px 15px 100px;
}

.stn-v-resources-bookshelf .max-width,
.stn-v-home-bookshelf .max-width,
.stn-v-author-bookshelf .max-width,
.stn-v-bookshelf-shelf .max-width,
.stn-v-search-bookshelf .max-width,
.stn-v-category-bookshelf .max-width {
  max-width: 1366px;
  width: 100%;
  margin: auto;
  position: relative;
}

.stn-v-resources-bookshelf .max-width .header-btn,
.stn-v-home-bookshelf .max-width .header-btn,
.stn-v-author-bookshelf .max-width .header-btn,
.stn-v-bookshelf-shelf .max-width .header-btn,
.stn-v-search-bookshelf .max-width .header-btn,
.stn-v-category-bookshelf .max-width .header-btn {
  display: flex;
  flex-direction: row;
}

.stn-v-resources-bookshelf .max-width .header-btn .btn-back,
.stn-v-home-bookshelf .max-width .header-btn .btn-back,
.stn-v-author-bookshelf .max-width .header-btn .btn-back,
.stn-v-bookshelf-shelf .max-width .header-btn .btn-back,
.stn-v-search-bookshelf .max-width .header-btn .btn-back,
.stn-v-category-bookshelf .max-width .header-btn .btn-back {
  height: 56px;
  width: 100px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: url("cursors/Link.png") 11 7, pointer;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
}

.stn-v-resources-bookshelf .max-width .header-btn .btn-back i,
.stn-v-home-bookshelf .max-width .header-btn .btn-back i,
.stn-v-author-bookshelf .max-width .header-btn .btn-back i,
.stn-v-bookshelf-shelf .max-width .header-btn .btn-back i,
.stn-v-search-bookshelf .max-width .header-btn .btn-back i,
.stn-v-category-bookshelf .max-width .header-btn .btn-back i {
  pointer-events: none;
  font-size: 18px;
  padding-right: 15px;
}

.stn-v-resources-bookshelf .max-width .header-btn div,
.stn-v-home-bookshelf .max-width .header-btn div,
.stn-v-author-bookshelf .max-width .header-btn div,
.stn-v-bookshelf-shelf .max-width .header-btn div,
.stn-v-search-bookshelf .max-width .header-btn div,
.stn-v-category-bookshelf .max-width .header-btn div {
  width: calc(100% - 100px);
  height: 56px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.stn-v-resources-bookshelf .max-width .bookshelf,
.stn-v-home-bookshelf .max-width .bookshelf,
.stn-v-author-bookshelf .max-width .bookshelf,
.stn-v-bookshelf-shelf .max-width .bookshelf,
.stn-v-search-bookshelf .max-width .bookshelf,
.stn-v-category-bookshelf .max-width .bookshelf {
  width: auto;
  background-color: #b97540;
  border: 0.875rem solid #5a2e0e;
  border-radius: 24px;
  box-sizing: border-box;
  padding: 14px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  overflow: hidden;
}

.stn-v-resources-bookshelf .max-width .bookshelf.unlisted,
.stn-v-home-bookshelf .max-width .bookshelf.unlisted,
.stn-v-author-bookshelf .max-width .bookshelf.unlisted,
.stn-v-bookshelf-shelf .max-width .bookshelf.unlisted,
.stn-v-search-bookshelf .max-width .bookshelf.unlisted,
.stn-v-category-bookshelf .max-width .bookshelf.unlisted {
  margin-bottom: 1.5625rem;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul,
.stn-v-home-bookshelf .max-width .bookshelf ul,
.stn-v-author-bookshelf .max-width .bookshelf ul,
.stn-v-bookshelf-shelf .max-width .bookshelf ul,
.stn-v-search-bookshelf .max-width .bookshelf ul,
.stn-v-category-bookshelf .max-width .bookshelf ul {
  display: flex;
  flex-direction: row;
  gap: 4px;
  list-style: none;
  padding: 8px 0 0;
  margin: 0; /* remove negative margin if not needed */
  box-shadow: 0 8px #5a2e0e;
  width: 100%; /* avoid adding extra width unless intentional */
  height: 150px;
  overflow-x: auto; /* horizontal scroll */
  overflow-y: hidden; /* hide vertical scroll */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.stn-v-resources-bookshelf .max-width .bookshelf ul::-webkit-scrollbar,
.stn-v-home-bookshelf .max-width .bookshelf ul::-webkit-scrollbar,
.stn-v-author-bookshelf .max-width .bookshelf ul::-webkit-scrollbar,
.stn-v-bookshelf-shelf .max-width .bookshelf ul::-webkit-scrollbar,
.stn-v-search-bookshelf .max-width .bookshelf ul::-webkit-scrollbar,
.stn-v-category-bookshelf .max-width .bookshelf ul::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.stn-v-resources-bookshelf .max-width .bookshelf ul.last-visible,
.stn-v-home-bookshelf .max-width .bookshelf ul.last-visible,
.stn-v-author-bookshelf .max-width .bookshelf ul.last-visible,
.stn-v-bookshelf-shelf .max-width .bookshelf ul.last-visible,
.stn-v-search-bookshelf .max-width .bookshelf ul.last-visible,
.stn-v-category-bookshelf .max-width .bookshelf ul.last-visible {
  margin: 0 0 -14px;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul:first-child,
.stn-v-home-bookshelf .max-width .bookshelf ul:first-child,
.stn-v-author-bookshelf .max-width .bookshelf ul:first-child,
.stn-v-bookshelf-shelf .max-width .bookshelf ul:first-child,
.stn-v-search-bookshelf .max-width .bookshelf ul:first-child,
.stn-v-category-bookshelf .max-width .bookshelf ul:first-child {
  margin-top: -15px;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li,
.stn-v-home-bookshelf .max-width .bookshelf ul li,
.stn-v-author-bookshelf .max-width .bookshelf ul li,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li,
.stn-v-search-bookshelf .max-width .bookshelf ul li,
.stn-v-category-bookshelf .max-width .bookshelf ul li {
  position: relative;
  height: 142px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  min-width: 96px;
  width: 96px;
  max-width: 96px;
  gap: 4px;
  overflow: hidden;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li.hidden,
.stn-v-home-bookshelf .max-width .bookshelf ul li.hidden,
.stn-v-author-bookshelf .max-width .bookshelf ul li.hidden,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li.hidden,
.stn-v-search-bookshelf .max-width .bookshelf ul li.hidden,
.stn-v-category-bookshelf .max-width .bookshelf ul li.hidden {
  display: none;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li.itemsSelected,
.stn-v-home-bookshelf .max-width .bookshelf ul li.itemsSelected,
.stn-v-author-bookshelf .max-width .bookshelf ul li.itemsSelected,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li.itemsSelected,
.stn-v-search-bookshelf .max-width .bookshelf ul li.itemsSelected,
.stn-v-category-bookshelf .max-width .bookshelf ul li.itemsSelected {
  border: 5px solid green;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li.itemsSelected img,
.stn-v-home-bookshelf .max-width .bookshelf ul li.itemsSelected img,
.stn-v-author-bookshelf .max-width .bookshelf ul li.itemsSelected img,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li.itemsSelected img,
.stn-v-search-bookshelf .max-width .bookshelf ul li.itemsSelected img,
.stn-v-category-bookshelf .max-width .bookshelf ul li.itemsSelected img {
  min-width: 86px;
  width: 86px;
  max-width: 86px;
  height: 132px;
  min-height: 132px;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li::-webkit-scrollbar,
.stn-v-home-bookshelf .max-width .bookshelf ul li::-webkit-scrollbar,
.stn-v-author-bookshelf .max-width .bookshelf ul li::-webkit-scrollbar,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li::-webkit-scrollbar,
.stn-v-search-bookshelf .max-width .bookshelf ul li::-webkit-scrollbar,
.stn-v-category-bookshelf .max-width .bookshelf ul li::-webkit-scrollbar {
  display: none;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li:first-child,
.stn-v-home-bookshelf .max-width .bookshelf ul li:first-child,
.stn-v-author-bookshelf .max-width .bookshelf ul li:first-child,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li:first-child,
.stn-v-search-bookshelf .max-width .bookshelf ul li:first-child,
.stn-v-category-bookshelf .max-width .bookshelf ul li:first-child {
  margin-left: 2px;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li:last-child,
.stn-v-home-bookshelf .max-width .bookshelf ul li:last-child,
.stn-v-author-bookshelf .max-width .bookshelf ul li:last-child,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li:last-child,
.stn-v-search-bookshelf .max-width .bookshelf ul li:last-child,
.stn-v-category-bookshelf .max-width .bookshelf ul li:last-child {
  margin-right: 2x;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li.Borrowed div,
.stn-v-home-bookshelf .max-width .bookshelf ul li.Borrowed div,
.stn-v-author-bookshelf .max-width .bookshelf ul li.Borrowed div,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li.Borrowed div,
.stn-v-search-bookshelf .max-width .bookshelf ul li.Borrowed div,
.stn-v-category-bookshelf .max-width .bookshelf ul li.Borrowed div {
  background: red;
  box-shadow: inset 1px 1px 4px -3px rgba(255, 255, 255, 0.6), inset -1px -1px 1px 0px rgba(255, 255, 255, 0.25), inset 1px 1px 15px 0px rgba(255, 255, 255, 0.4), inset -1px -1px 1px 0px rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  z-index: 10;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li.Borrowed img,
.stn-v-home-bookshelf .max-width .bookshelf ul li.Borrowed img,
.stn-v-author-bookshelf .max-width .bookshelf ul li.Borrowed img,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li.Borrowed img,
.stn-v-search-bookshelf .max-width .bookshelf ul li.Borrowed img,
.stn-v-category-bookshelf .max-width .bookshelf ul li.Borrowed img {
  opacity: 50%;
}

.stn-v-resources-bookshelf .max-width .bookshelf ul li img,
.stn-v-home-bookshelf .max-width .bookshelf ul li img,
.stn-v-author-bookshelf .max-width .bookshelf ul li img,
.stn-v-bookshelf-shelf .max-width .bookshelf ul li img,
.stn-v-search-bookshelf .max-width .bookshelf ul li img,
.stn-v-category-bookshelf .max-width .bookshelf ul li img {
  cursor: url("cursors/Link.png") 11 7, pointer;
  width: 96px;
  aspect-ratio: 2/3;
  min-width: 96px;
  max-width: 96px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  background: url("../img/placeholder.png") no-repeat center/cover;
  min-height: 143.99px;
}

.stn-v-resources-author,
.stn-v-home-author,
.stn-v-author,
.stn-v-bookshelf-author,
.stn-v-search-author,
.stn-v-category-author {
  display: none;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.75);
  padding: 15px 15px 100px;
}

.stn-v-resources-author .max-width,
.stn-v-home-author .max-width,
.stn-v-author .max-width,
.stn-v-bookshelf-author .max-width,
.stn-v-search-author .max-width,
.stn-v-category-author .max-width {
  max-width: 1366px;
  width: 100%;
  margin: auto;
  position: relative;
}

.stn-v-resources-author .max-width .btn-back,
.stn-v-home-author .max-width .btn-back,
.stn-v-author .max-width .btn-back,
.stn-v-bookshelf-author .max-width .btn-back,
.stn-v-search-author .max-width .btn-back,
.stn-v-category-author .max-width .btn-back {
  height: 56px;
  width: 100px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: url("cursors/Link.png") 11 7, pointer;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
}

.stn-v-resources-author .max-width .btn-back i,
.stn-v-home-author .max-width .btn-back i,
.stn-v-author .max-width .btn-back i,
.stn-v-bookshelf-author .max-width .btn-back i,
.stn-v-search-author .max-width .btn-back i,
.stn-v-category-author .max-width .btn-back i {
  pointer-events: none;
  font-size: 18px;
  padding-right: 15px;
}

.stn-v-resources-author .max-width .author,
.stn-v-home-author .max-width .author,
.stn-v-author .max-width .author,
.stn-v-bookshelf-author .max-width .author,
.stn-v-search-author .max-width .author,
.stn-v-category-author .max-width .author {
  padding: 15px;
}

.stn-v-resources-author .max-width .author h2,
.stn-v-home-author .max-width .author h2,
.stn-v-author .max-width .author h2,
.stn-v-bookshelf-author .max-width .author h2,
.stn-v-search-author .max-width .author h2,
.stn-v-category-author .max-width .author h2 {
  display: flex;
  flex-direction: row;
  font-size: 42px;
  font-weight: 500;
  color: #041e40;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
  margin-bottom: 25px;
}

.stn-v-resources-author .max-width .author h2 span,
.stn-v-home-author .max-width .author h2 span,
.stn-v-author .max-width .author h2 span,
.stn-v-bookshelf-author .max-width .author h2 span,
.stn-v-search-author .max-width .author h2 span,
.stn-v-category-author .max-width .author h2 span {
  font-weight: 900;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
}

.stn-v-resources-author .max-width .author .profile,
.stn-v-home-author .max-width .author .profile,
.stn-v-author .max-width .author .profile,
.stn-v-bookshelf-author .max-width .author .profile,
.stn-v-search-author .max-width .author .profile,
.stn-v-category-author .max-width .author .profile {
  display: flex;
  flex-direction: row;
  margin-bottom: 50px;
}

.stn-v-resources-author .max-width .author .profile div:nth-child(1),
.stn-v-home-author .max-width .author .profile div:nth-child(1),
.stn-v-author .max-width .author .profile div:nth-child(1),
.stn-v-bookshelf-author .max-width .author .profile div:nth-child(1),
.stn-v-search-author .max-width .author .profile div:nth-child(1),
.stn-v-category-author .max-width .author .profile div:nth-child(1) {
  width: 33%;
}

.stn-v-resources-author .max-width .author .profile div:nth-child(1) img,
.stn-v-home-author .max-width .author .profile div:nth-child(1) img,
.stn-v-author .max-width .author .profile div:nth-child(1) img,
.stn-v-bookshelf-author .max-width .author .profile div:nth-child(1) img,
.stn-v-search-author .max-width .author .profile div:nth-child(1) img,
.stn-v-category-author .max-width .author .profile div:nth-child(1) img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.stn-v-resources-author .max-width .author .profile div:nth-child(2),
.stn-v-home-author .max-width .author .profile div:nth-child(2),
.stn-v-author .max-width .author .profile div:nth-child(2),
.stn-v-bookshelf-author .max-width .author .profile div:nth-child(2),
.stn-v-search-author .max-width .author .profile div:nth-child(2),
.stn-v-category-author .max-width .author .profile div:nth-child(2) {
  background: #f3f4f8;
  width: 67%;
  padding: 30px 30px 30px 50px;
}

.stn-v-resources-author .max-width .author .profile div:nth-child(2) #authorName,
.stn-v-home-author .max-width .author .profile div:nth-child(2) #authorName,
.stn-v-author .max-width .author .profile div:nth-child(2) #authorName,
.stn-v-bookshelf-author .max-width .author .profile div:nth-child(2) #authorName,
.stn-v-search-author .max-width .author .profile div:nth-child(2) #authorName,
.stn-v-category-author .max-width .author .profile div:nth-child(2) #authorName {
  font-size: 24px;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
  margin-bottom: 20px;
  padding: 0;
  width: 100%;
}

.stn-v-resources-author .max-width .author .profile div:nth-child(2) #authorInfo,
.stn-v-home-author .max-width .author .profile div:nth-child(2) #authorInfo,
.stn-v-author .max-width .author .profile div:nth-child(2) #authorInfo,
.stn-v-bookshelf-author .max-width .author .profile div:nth-child(2) #authorInfo,
.stn-v-search-author .max-width .author .profile div:nth-child(2) #authorInfo,
.stn-v-category-author .max-width .author .profile div:nth-child(2) #authorInfo {
  font-size: 16px;
  line-height: 23px;
  color: rgb(175, 177, 188);
  white-space: pre-line;
  padding: 0;
}

.stn-v-resources-author .max-width .author ul,
.stn-v-home-author .max-width .author ul,
.stn-v-author .max-width .author ul,
.stn-v-bookshelf-author .max-width .author ul,
.stn-v-search-author .max-width .author ul,
.stn-v-category-author .max-width .author ul {
  list-style-type: none;
  padding: 25px 0 0;
  margin: 0;
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(auto-fill, 140px);
  gap: 20px;
  justify-content: center;
}

.stn-v-resources-author .max-width .author ul li,
.stn-v-home-author .max-width .author ul li,
.stn-v-author .max-width .author ul li,
.stn-v-bookshelf-author .max-width .author ul li,
.stn-v-search-author .max-width .author ul li,
.stn-v-category-author .max-width .author ul li {
  border-radius: 6px;
  overflow: hidden;
  page-break-inside: avoid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: url("./assets/css/cursors/Link.png") 11 7, pointer;
}

.stn-v-resources-author .max-width .author ul li.hidden,
.stn-v-home-author .max-width .author ul li.hidden,
.stn-v-author .max-width .author ul li.hidden,
.stn-v-bookshelf-author .max-width .author ul li.hidden,
.stn-v-search-author .max-width .author ul li.hidden,
.stn-v-category-author .max-width .author ul li.hidden {
  display: none;
}

.stn-v-resources-author .max-width .author ul li img,
.stn-v-home-author .max-width .author ul li img,
.stn-v-author .max-width .author ul li img,
.stn-v-bookshelf-author .max-width .author ul li img,
.stn-v-search-author .max-width .author ul li img,
.stn-v-category-author .max-width .author ul li img {
  width: 140px;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
  cursor: url("./assets/css/cursors/Link.png") 11 7, pointer;
  background: url("../img/placeholder.png") no-repeat center/cover;
  margin-bottom: 0;
}

.stn-v-resources-author .max-width .author ul li div,
.stn-v-home-author .max-width .author ul li div,
.stn-v-author .max-width .author ul li div,
.stn-v-bookshelf-author .max-width .author ul li div,
.stn-v-search-author .max-width .author ul li div,
.stn-v-category-author .max-width .author ul li div {
  margin-bottom: 0;
}

.stn-v-resources-author .max-width .author ul li .title,
.stn-v-home-author .max-width .author ul li .title,
.stn-v-author .max-width .author ul li .title,
.stn-v-bookshelf-author .max-width .author ul li .title,
.stn-v-search-author .max-width .author ul li .title,
.stn-v-category-author .max-width .author ul li .title {
  padding-top: 5px;
  font-weight: 600;
  color: #392973;
  max-height: 54px;
  font-size: 14px;
  line-height: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.stn-v-resources-author .max-width .author ul li .authors,
.stn-v-home-author .max-width .author ul li .authors,
.stn-v-author .max-width .author ul li .authors,
.stn-v-bookshelf-author .max-width .author ul li .authors,
.stn-v-search-author .max-width .author ul li .authors,
.stn-v-category-author .max-width .author ul li .authors {
  font-size: 12px;
  overflow: hidden;
  height: auto;
  color: #363636;
  font-weight: 400;
  white-space: normal;
}

.stn-v-resources-author .max-width .author ul:has(li:nth-child(2)) li:empty::before,
.stn-v-home-author .max-width .author ul:has(li:nth-child(2)) li:empty::before,
.stn-v-author .max-width .author ul:has(li:nth-child(2)) li:empty::before,
.stn-v-bookshelf-author .max-width .author ul:has(li:nth-child(2)) li:empty::before,
.stn-v-search-author .max-width .author ul:has(li:nth-child(2)) li:empty::before,
.stn-v-category-author .max-width .author ul:has(li:nth-child(2)) li:empty::before {
  content: "";
  display: block;
  width: 140px;
  aspect-ratio: 2/3;
  cursor: url("cursors/Normal.png") 9 6, auto;
}

@media (max-width: 700px) {
  .stn-v-resources-author .max-width .author ul,
  .stn-v-home-author .max-width .author ul,
  .stn-v-author .max-width .author ul,
  .stn-v-bookshelf-author .max-width .author ul,
  .stn-v-search-author .max-width .author ul,
  .stn-v-category-author .max-width .author ul {
    padding: 25px 5px 0;
    grid-template-columns: repeat(auto-fill, 110px);
    gap: 10px;
  }
  .stn-v-resources-author .max-width .author ul li img,
  .stn-v-home-author .max-width .author ul li img,
  .stn-v-author .max-width .author ul li img,
  .stn-v-bookshelf-author .max-width .author ul li img,
  .stn-v-search-author .max-width .author ul li img,
  .stn-v-category-author .max-width .author ul li img {
    width: 110px;
  }
}
@media (max-width: 360px) {
  .stn-v-resources-author .max-width .author ul,
  .stn-v-home-author .max-width .author ul,
  .stn-v-author .max-width .author ul,
  .stn-v-bookshelf-author .max-width .author ul,
  .stn-v-search-author .max-width .author ul,
  .stn-v-category-author .max-width .author ul {
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .stn-v-resources-author .max-width .author .profile,
  .stn-v-home-author .max-width .author .profile,
  .stn-v-author .max-width .author .profile,
  .stn-v-bookshelf-author .max-width .author .profile,
  .stn-v-search-author .max-width .author .profile,
  .stn-v-category-author .max-width .author .profile {
    display: flex;
    flex-direction: column;
  }
  .stn-v-resources-author .max-width .author .profile div:nth-child(1),
  .stn-v-home-author .max-width .author .profile div:nth-child(1),
  .stn-v-author .max-width .author .profile div:nth-child(1),
  .stn-v-bookshelf-author .max-width .author .profile div:nth-child(1),
  .stn-v-search-author .max-width .author .profile div:nth-child(1),
  .stn-v-category-author .max-width .author .profile div:nth-child(1) {
    text-align: center;
    width: 100%;
  }
  .stn-v-resources-author .max-width .author .profile div:nth-child(1) img,
  .stn-v-home-author .max-width .author .profile div:nth-child(1) img,
  .stn-v-author .max-width .author .profile div:nth-child(1) img,
  .stn-v-bookshelf-author .max-width .author .profile div:nth-child(1) img,
  .stn-v-search-author .max-width .author .profile div:nth-child(1) img,
  .stn-v-category-author .max-width .author .profile div:nth-child(1) img {
    max-width: 376px;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1/1;
    -o-object-position: center;
    object-position: center;
    margin-bottom: 15px;
  }
  .stn-v-resources-author .max-width .author .profile div:nth-child(2),
  .stn-v-home-author .max-width .author .profile div:nth-child(2),
  .stn-v-author .max-width .author .profile div:nth-child(2),
  .stn-v-bookshelf-author .max-width .author .profile div:nth-child(2),
  .stn-v-search-author .max-width .author .profile div:nth-child(2),
  .stn-v-category-author .max-width .author .profile div:nth-child(2) {
    width: 100%;
    padding: 20px;
  }
  .stn-v-resources-author .max-width .author .profile div:nth-child(2) div,
  .stn-v-home-author .max-width .author .profile div:nth-child(2) div,
  .stn-v-author .max-width .author .profile div:nth-child(2) div,
  .stn-v-bookshelf-author .max-width .author .profile div:nth-child(2) div,
  .stn-v-search-author .max-width .author .profile div:nth-child(2) div,
  .stn-v-category-author .max-width .author .profile div:nth-child(2) div {
    text-align: left;
  }
}
.stn-v-resources-author .max-width .author h3,
.stn-v-home-author .max-width .author h3,
.stn-v-author .max-width .author h3,
.stn-v-bookshelf-author .max-width .author h3,
.stn-v-search-author .max-width .author h3,
.stn-v-category-author .max-width .author h3 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 900;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
  font-weight: 500;
}

.stn-v-home-category,
.stn-v-resources-category,
.stn-v-author-category,
.stn-v-bookshelf-category,
.stn-v-search-category,
.stn-v-category-all,
.stn-v-category-sub,
.stn-v-category-category {
  display: none;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.75);
  padding: 15px 15px 100px;
}

@media (max-width: 700px) {
  .stn-v-home-category,
  .stn-v-resources-category,
  .stn-v-author-category,
  .stn-v-bookshelf-category,
  .stn-v-search-category,
  .stn-v-category-all,
  .stn-v-category-sub,
  .stn-v-category-category {
    padding: 15px 5px 100px;
  }
}
.stn-v-home-category .max-width,
.stn-v-resources-category .max-width,
.stn-v-author-category .max-width,
.stn-v-bookshelf-category .max-width,
.stn-v-search-category .max-width,
.stn-v-category-all .max-width,
.stn-v-category-sub .max-width,
.stn-v-category-category .max-width {
  max-width: 1366px;
  width: 100%;
  margin: auto;
  position: relative;
}

.stn-v-home-category .max-width .btn-back,
.stn-v-resources-category .max-width .btn-back,
.stn-v-author-category .max-width .btn-back,
.stn-v-bookshelf-category .max-width .btn-back,
.stn-v-search-category .max-width .btn-back,
.stn-v-category-all .max-width .btn-back,
.stn-v-category-sub .max-width .btn-back,
.stn-v-category-category .max-width .btn-back {
  height: 56px;
  width: 100px;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
  cursor: url("cursors/Link.png") 11 7, pointer;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
}

.stn-v-home-category .max-width .btn-back i,
.stn-v-resources-category .max-width .btn-back i,
.stn-v-author-category .max-width .btn-back i,
.stn-v-bookshelf-category .max-width .btn-back i,
.stn-v-search-category .max-width .btn-back i,
.stn-v-category-all .max-width .btn-back i,
.stn-v-category-sub .max-width .btn-back i,
.stn-v-category-category .max-width .btn-back i {
  pointer-events: none;
  font-size: 18px;
  padding-right: 15px;
}

.stn-v-home-category .max-width .category,
.stn-v-resources-category .max-width .category,
.stn-v-author-category .max-width .category,
.stn-v-bookshelf-category .max-width .category,
.stn-v-search-category .max-width .category,
.stn-v-category-all .max-width .category,
.stn-v-category-sub .max-width .category,
.stn-v-category-category .max-width .category {
  padding: 0px;
}

.stn-v-home-category .max-width .category h2,
.stn-v-resources-category .max-width .category h2,
.stn-v-author-category .max-width .category h2,
.stn-v-bookshelf-category .max-width .category h2,
.stn-v-search-category .max-width .category h2,
.stn-v-category-all .max-width .category h2,
.stn-v-category-sub .max-width .category h2,
.stn-v-category-category .max-width .category h2 {
  display: flex;
  flex-direction: row;
  font-size: 42px;
  font-weight: 500;
  color: #041e40;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
  margin-bottom: 25px;
  margin-left: 15px;
}

.stn-v-home-category .max-width .category h2 span,
.stn-v-resources-category .max-width .category h2 span,
.stn-v-author-category .max-width .category h2 span,
.stn-v-bookshelf-category .max-width .category h2 span,
.stn-v-search-category .max-width .category h2 span,
.stn-v-category-all .max-width .category h2 span,
.stn-v-category-sub .max-width .category h2 span,
.stn-v-category-category .max-width .category h2 span {
  font-weight: 900;
  font-family: "Libre Baskerville", "Poppins", "Roboto", "Roboto Serif";
}

.stn-v-home-category .max-width .category ul,
.stn-v-resources-category .max-width .category ul,
.stn-v-author-category .max-width .category ul,
.stn-v-bookshelf-category .max-width .category ul,
.stn-v-search-category .max-width .category ul,
.stn-v-category-all .max-width .category ul,
.stn-v-category-sub .max-width .category ul,
.stn-v-category-category .max-width .category ul {
  list-style-type: none;
  padding: 25px 0 0;
  margin: 0;
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(auto-fill, 140px);
  gap: 20px;
  justify-content: center;
}

.stn-v-home-category .max-width .category ul li,
.stn-v-resources-category .max-width .category ul li,
.stn-v-author-category .max-width .category ul li,
.stn-v-bookshelf-category .max-width .category ul li,
.stn-v-search-category .max-width .category ul li,
.stn-v-category-all .max-width .category ul li,
.stn-v-category-sub .max-width .category ul li,
.stn-v-category-category .max-width .category ul li {
  border-radius: 6px;
  overflow: hidden;
  page-break-inside: avoid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: url("./assets/css/cursors/Link.png") 11 7, pointer;
}

.stn-v-home-category .max-width .category ul li.hidden,
.stn-v-resources-category .max-width .category ul li.hidden,
.stn-v-author-category .max-width .category ul li.hidden,
.stn-v-bookshelf-category .max-width .category ul li.hidden,
.stn-v-search-category .max-width .category ul li.hidden,
.stn-v-category-all .max-width .category ul li.hidden,
.stn-v-category-sub .max-width .category ul li.hidden,
.stn-v-category-category .max-width .category ul li.hidden {
  display: none;
}

.stn-v-home-category .max-width .category ul li img,
.stn-v-resources-category .max-width .category ul li img,
.stn-v-author-category .max-width .category ul li img,
.stn-v-bookshelf-category .max-width .category ul li img,
.stn-v-search-category .max-width .category ul li img,
.stn-v-category-all .max-width .category ul li img,
.stn-v-category-sub .max-width .category ul li img,
.stn-v-category-category .max-width .category ul li img {
  width: 140px;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
  cursor: url("./assets/css/cursors/Link.png") 11 7, pointer;
  background: url("../img/placeholder.png") no-repeat center/cover;
  margin-bottom: 0;
}

.stn-v-home-category .max-width .category ul li div,
.stn-v-resources-category .max-width .category ul li div,
.stn-v-author-category .max-width .category ul li div,
.stn-v-bookshelf-category .max-width .category ul li div,
.stn-v-search-category .max-width .category ul li div,
.stn-v-category-all .max-width .category ul li div,
.stn-v-category-sub .max-width .category ul li div,
.stn-v-category-category .max-width .category ul li div {
  margin-bottom: 0;
}

.stn-v-home-category .max-width .category ul li .title,
.stn-v-resources-category .max-width .category ul li .title,
.stn-v-author-category .max-width .category ul li .title,
.stn-v-bookshelf-category .max-width .category ul li .title,
.stn-v-search-category .max-width .category ul li .title,
.stn-v-category-all .max-width .category ul li .title,
.stn-v-category-sub .max-width .category ul li .title,
.stn-v-category-category .max-width .category ul li .title {
  font-weight: 600;
  color: #392973;
  max-height: 54px;
  font-size: 14px;
  line-height: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  padding-top: 5px;
}

.stn-v-home-category .max-width .category ul li .authors,
.stn-v-resources-category .max-width .category ul li .authors,
.stn-v-author-category .max-width .category ul li .authors,
.stn-v-bookshelf-category .max-width .category ul li .authors,
.stn-v-search-category .max-width .category ul li .authors,
.stn-v-category-all .max-width .category ul li .authors,
.stn-v-category-sub .max-width .category ul li .authors,
.stn-v-category-category .max-width .category ul li .authors {
  font-size: 12px;
  overflow: hidden;
  height: auto;
  color: #363636;
  font-weight: 400;
  white-space: normal;
}

.stn-v-home-category .max-width .category ul:has(li:nth-child(2)) li:empty::before,
.stn-v-resources-category .max-width .category ul:has(li:nth-child(2)) li:empty::before,
.stn-v-author-category .max-width .category ul:has(li:nth-child(2)) li:empty::before,
.stn-v-bookshelf-category .max-width .category ul:has(li:nth-child(2)) li:empty::before,
.stn-v-search-category .max-width .category ul:has(li:nth-child(2)) li:empty::before,
.stn-v-category-all .max-width .category ul:has(li:nth-child(2)) li:empty::before,
.stn-v-category-sub .max-width .category ul:has(li:nth-child(2)) li:empty::before,
.stn-v-category-category .max-width .category ul:has(li:nth-child(2)) li:empty::before {
  content: "";
  display: block;
  width: 140px;
  aspect-ratio: 2/3;
  cursor: url("./assets/css/cursors/Normal.png") 9 6, auto;
}

@media (max-width: 700px) {
  .stn-v-home-category .max-width .category ul,
  .stn-v-resources-category .max-width .category ul,
  .stn-v-author-category .max-width .category ul,
  .stn-v-bookshelf-category .max-width .category ul,
  .stn-v-search-category .max-width .category ul,
  .stn-v-category-all .max-width .category ul,
  .stn-v-category-sub .max-width .category ul,
  .stn-v-category-category .max-width .category ul {
    padding: 25px 5px 0;
    grid-template-columns: repeat(auto-fill, 110px);
    gap: 10px;
  }
  .stn-v-home-category .max-width .category ul li img,
  .stn-v-resources-category .max-width .category ul li img,
  .stn-v-author-category .max-width .category ul li img,
  .stn-v-bookshelf-category .max-width .category ul li img,
  .stn-v-search-category .max-width .category ul li img,
  .stn-v-category-all .max-width .category ul li img,
  .stn-v-category-sub .max-width .category ul li img,
  .stn-v-category-category .max-width .category ul li img {
    width: 110px;
  }
}
@media (max-width: 360px) {
  .stn-v-home-category .max-width .category ul,
  .stn-v-resources-category .max-width .category ul,
  .stn-v-author-category .max-width .category ul,
  .stn-v-bookshelf-category .max-width .category ul,
  .stn-v-search-category .max-width .category ul,
  .stn-v-category-all .max-width .category ul,
  .stn-v-category-sub .max-width .category ul,
  .stn-v-category-category .max-width .category ul {
    gap: 12px;
  }
}
.stn-v-home-category .max-width .category button,
.stn-v-resources-category .max-width .category button,
.stn-v-author-category .max-width .category button,
.stn-v-bookshelf-category .max-width .category button,
.stn-v-search-category .max-width .category button,
.stn-v-category-all .max-width .category button,
.stn-v-category-sub .max-width .category button,
.stn-v-category-category .max-width .category button {
  display: block;
  padding: 11px 31px;
  font-size: 14px;
  line-height: 14px;
  width: 280px;
  outline: none;
  border: none;
  border-radius: 21px;
  color: #d8f2f2;
  background: #0a7aa6;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-variant: small-caps;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  -o-border-radius: 21px;
  margin: 50px auto 0;
} /*# sourceMappingURL=navigationPage.css.map */