* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #465967;
  width: 100vw;
  max-width: 100vw;
}

#app {
  width: 100vw;
  max-width: 100vw;
}
#app .header {
  height: 25vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#app .header .el-logo {
  width: 25vw;
  text-align: center;
  display: none;
}
#app .header .el-logo img {
  height: 22vh;
}
#app .header .subtitle {
  color: white;
  font-size: 2rem;
  flex: 1;
  text-align: center;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: -10px;
}
#app .header .subtitle .balloons {
  margin-bottom: -20px;
}
#app .header .subtitle .balloons.left {
  transform: rotateY(180deg);
}
#app .header .subtitle .balloons img {
  height: 15vh;
}
#app .header .subtitle .name-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 100px;
  margin-right: 100px;
}
#app .header .subtitle .name-group .name {
  font-weight: bold;
}
#app .header .subtitle .name-group .name img {
  height: 13vh;
}
#app .header .subtitle .name-group .text {
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  margin-top: -10px;
}
#app .menu-bar, #app .bottom-menu {
  background-color: #f39bdd;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  flex-direction: column;
}
#app .menu-bar .menu-inner, #app .bottom-menu .menu-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
#app .menu-bar .menu-inner .menu-item, #app .bottom-menu .menu-inner .menu-item {
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0px 30px;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  transition: all 0.2s ease-in-out;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
}
#app .menu-bar .menu-inner .menu-item a, #app .bottom-menu .menu-inner .menu-item a {
  text-decoration: none;
  color: black;
  opacity: 0.8;
}
#app .main-container {
  position: relative;
  width: 100vw;
  display: flex;
  flex-direction: row;
  min-height: 70vh;
  background-color: white;
}
#app .main-container .full-width {
  width: 100vh;
}
#app .main-container .image-section {
  background-image: url("/images/book-cover-floor-fixed.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#app .main-container .buy-section .reviews {
  margin-top: auto;
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#app .main-container .buy-section .reviews .rev-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  display: none;
}
#app .main-container .buy-section .reviews .reviews-container {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
}
#app .main-container .buy-section .reviews .review-content {
  margin: auto;
  width: 80%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 130px;
}
#app .main-container .buy-section .reviews .review {
  text-align: center;
  width: 100%;
  position: absolute;
  opacity: 0;
  filter: blur(5px);
  transition: all 0.5s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app .main-container .buy-section .reviews .review .review-text {
  color: black;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Libre Baskerville", serif;
  font-family: "Quicksand", sans-serif;
  width: 100%;
}
#app .main-container .buy-section .reviews .review .review-name {
  font-size: 1.1rem;
  font-weight: 900;
  font-family: "Quicksand", sans-serif;
}
#app .main-container .buy-section .reviews .review.show {
  opacity: 1;
  filter: blur(0px);
}
#app .main-container .buy-section .reviews .review.current-review {
  left: 0px;
}
#app .main-container .buy-section .reviews .review.next-review {
  left: 20px;
}
#app .main-container .buy-section .reviews .review.prev-review {
  left: -20px;
}
#app .main-container .buy-section .reviews .review-nav-button {
  font-weight: bold;
  position: absolute;
  width: 7vw;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  font-size: 1.2rem;
  padding-bottom: 10px;
  transition: all 0.5s ease-in-out;
}
#app .main-container .buy-section .reviews .review-nav-button.prev {
  left: 0;
  justify-content: flex-start;
  margin-left: 2vw;
}
#app .main-container .buy-section .reviews .review-nav-button.next {
  right: 0;
  justify-content: flex-end;
  margin-right: 2vw;
}
#app .main-container .buy-section .reviews .review-nav-button.hide {
  opacity: 0;
  pointer-events: none;
}
#app .main-container .bio-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app .main-container .bio-section .author-image {
  height: 60vh;
}
#app .main-container .bio-section .author-image img {
  height: 100%;
}
#app .main-container .bio-section .author-bio {
  width: 60%;
  font-size: 1rem;
  font-weight: normal;
  font-family: "Josefin Sans", sans-serif;
  text-align: left;
  margin-top: 20px;
  color: #465967;
}
#app .main-container .bio-section .author-bio .bio-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
  color: #060606;
}
#app .main-container .bio-section .author-bio p {
  margin-bottom: 25px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
}
#app .main-container .bio-section.left-section {
  align-items: flex-end;
  padding-right: 3vw;
}
#app .main-container .bio-section.right-section {
  padding-left: 3vw;
  align-items: flex-start;
}
#app .main-container .left-section, #app .main-container .right-section, #app .main-container .bio-section, #app .main-container .image-section, #app .main-container .buy-section, #app .main-container .activities, #app .main-container .word-search-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app .main-container .left-section .book-details, #app .main-container .right-section .book-details, #app .main-container .bio-section .book-details, #app .main-container .image-section .book-details, #app .main-container .buy-section .book-details, #app .main-container .activities .book-details, #app .main-container .word-search-section .book-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20vh;
}
#app .main-container .left-section .book-details .book-title, #app .main-container .right-section .book-details .book-title, #app .main-container .bio-section .book-details .book-title, #app .main-container .image-section .book-details .book-title, #app .main-container .buy-section .book-details .book-title, #app .main-container .activities .book-details .book-title, #app .main-container .word-search-section .book-details .book-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2vh;
  font-family: "Libre Baskerville", serif;
  text-align: center;
}
#app .main-container .left-section .book-details .book-price, #app .main-container .right-section .book-details .book-price, #app .main-container .bio-section .book-details .book-price, #app .main-container .image-section .book-details .book-price, #app .main-container .buy-section .book-details .book-price, #app .main-container .activities .book-details .book-price, #app .main-container .word-search-section .book-details .book-price {
  font-weight: bold;
  margin-bottom: 5vh;
  font-size: 1.3rem;
}
#app .main-container .left-section .book-details a.buy-button, #app .main-container .right-section .book-details a.buy-button, #app .main-container .bio-section .book-details a.buy-button, #app .main-container .image-section .book-details a.buy-button, #app .main-container .buy-section .book-details a.buy-button, #app .main-container .activities .book-details a.buy-button, #app .main-container .word-search-section .book-details a.buy-button {
  background-color: #f39bdd;
  color: black;
  padding: 10px 25px;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
}
#app .main-container .left-section .section-title, #app .main-container .right-section .section-title, #app .main-container .bio-section .section-title, #app .main-container .image-section .section-title, #app .main-container .buy-section .section-title, #app .main-container .activities .section-title, #app .main-container .word-search-section .section-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
  color: #060606;
}
#app .main-container .activities {
  padding: 5vh 5vw;
  justify-content: center;
  align-items: center;
}
#app .main-container .activities .tiles {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2vw;
}
#app .main-container .activities .tiles .tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#app .main-container .activities .tiles .tile .tile-image {
  width: 250px;
  height: 300px;
  border: solid 2px #465967;
  border-radius: 5px;
  overflow: hidden;
}
#app .main-container .activities .tiles .tile .tile-image img {
  width: 100%;
}
#app .main-container .activities .tiles .tile.x2 .tile-image {
  width: 500px;
  height: 300px;
}
#app .main-container .activities .tiles .tile .tile-cta {
  background-color: #f39bdd;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  margin-top: 20px;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: black;
  max-width: 90%;
}
#app .main-container .activities .tiles .tile a.tile-cta {
  text-decoration: none;
  cursor: pointer;
}
#app .main-container .activities .tiles .tile a.tile-cta:hover {
  cursor: pointer;
}
#app .main-container .activities.left-section .section-title {
  text-align: center;
}
#app .main-container .word-search-section {
  padding: 5vh 5vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#app .main-container .word-search-section .levels {
  display: flex;
  font-size: 1rem;
  border-radius: 5px;
  background-color: white;
  color: black;
  overflow: hidden;
  border: solid 1px #f39bdd;
}
#app .main-container .word-search-section .levels .level {
  flex: 1;
  text-align: center;
  padding: 5px 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0.6;
  background-color: rgba(70, 89, 103, 0.1);
  box-shadow: inset 0px 0px 1px 0px black;
}
#app .main-container .word-search-section .levels .level.selected {
  background-color: #f39bdd;
  opacity: 1;
}
#app .main-container .word-search-section .word-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: "Quicksand", sans-serif;
}
#app .main-container .word-search-section .word-list .word-list-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#app .main-container .word-search-section .word-list .word {
  font-size: 1rem;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: white;
  text-align: left;
  text-transform: uppercase;
  opacity: 0.6;
  background-color: rgba(70, 89, 103, 0.1);
  padding: 2px 10px;
  border-radius: 25px;
}
#app .main-container .word-search-section .word-list .word:hover {
  color: black;
  opacity: 1;
}
#app .main-container .word-search-section .word-list .word.found {
  background-color: #f39bdd;
  color: black;
  opacity: 1;
  animation: found 0.3s;
}
#app .main-container .word-search-section .word-list .word.found.one {
  background-color: #feefb8;
}
#app .main-container .word-search-section .word-list .word.found.two {
  background-color: #465967;
  color: white;
}
#app .main-container .word-search-section .word-list.not-started {
  display: none;
}
#app .main-container .word-search-section .stats-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#app .main-container .word-search-section .stats-group .stats {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #f39bdd;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  width: 100%;
}
#app .main-container .word-search-section .stats-group .stats .stat {
  flex: 1;
  text-align: center;
}
#app .main-container .word-search-section .stats-group .stats .stat .stat-inner {
  padding: 10px;
  border-radius: 5px;
}
#app .main-container .word-search-section .stats-group .stats .stat .stat-inner .stat-label {
  font-size: 0.9rem;
  color: black;
  margin-bottom: 5px;
}
#app .main-container .word-search-section .stats-group .stats .stat .stat-inner .stat-value {
  font-size: 1rem;
  font-weight: bold;
  color: black;
}
#app .main-container .word-search-section .stats-group .stats .sep {
  width: 50%;
  margin: 20px auto;
  height: 1px;
}
#app .main-container .word-search-section .stats-group .stats .sep .sep-inner {
  height: 2px;
  width: 100%;
  background-color: black;
}
#app .main-container .word-search-section .stats-group button.button {
  width: 100%;
  margin: 10px auto;
  background-color: #465967;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
#app .main-container .word-search-section .grid {
  width: 70vh;
  height: 70vh;
  min-width: 500px;
  min-height: 500px;
  max-width: 800px;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 1px #f2f2f2;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
#app .main-container .word-search-section .grid .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  background-color: rgba(0, 0, 0, 0.1);
}
#app .main-container .word-search-section .grid .row .cell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  font-size: 1rem;
  font-weight: normal;
  box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: white;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
}
#app .main-container .word-search-section .grid .row .cell .cell-inner {
  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  background-color: transparent;
  border-radius: 50%;
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
#app .main-container .word-search-section .grid .row .cell:hover {
  font-weight: bold;
}
#app .main-container .word-search-section .grid .row .cell:hover .cell-inner {
  background-color: rgba(254, 239, 184, 0.7);
}
#app .main-container .word-search-section .grid .row .cell.cheat .cell-inner {
  background-color: rgba(254, 239, 184, 0.2);
  font-weight: bold;
}
#app .main-container .word-search-section .grid .row .cell.selected .cell-inner {
  background-color: rgba(70, 89, 103, 0.2);
  font-weight: bold;
}
#app .main-container .word-search-section .grid .row .cell.found .cell-inner {
  background-color: #f39bdd;
  font-weight: bold;
  animation: found 0.3s;
}
#app .main-container .word-search-section .grid .row .cell.found.one .cell-inner {
  background-color: #feefb8;
}
#app .main-container .word-search-section .grid .row .cell.found.two .cell-inner {
  background-color: #465967;
  color: white;
}
#app .main-container .word-search-section .grid .row .cell.wrong .cell-inner {
  background-color: #ffcccc;
  font-weight: bold;
  animation: wrong 0.3s;
}
#app .main-container .word-search-section .grid .row .cell.disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}
#app .main-container .word-search-section .grid .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  font-size: 2rem;
  font-weight: bold;
  color: black;
  font-family: "Quicksand", sans-serif;
  padding: 10vh;
}
#app .main-container .word-search-section .grid .overlay.transparent {
  background-color: transparent;
}
#app .main-container .word-search-section .grid .overlay h2 {
  font-size: 1.5rem;
  text-align: center;
}
#app .main-container .word-search-section .grid .overlay p {
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
  margin: auto;
  margin-top: 20px;
  text-shadow: 0px 0px 5px white;
}
#app .main-container .word-search-section .grid .overlay button {
  background-color: #f39bdd;
  color: black;
  padding: 5px 20px;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin: auto;
  display: flex;
  margin-top: 20px;
}
#app .main-container .word-search-section .grid .overlay .levels {
  margin: 20px auto;
  margin-bottom: 30px;
  width: 80%;
}
#app .main-container .word-search-section .grid.not-started .row .cell {
  cursor: not-allowed;
}
#app .main-container .word-search-section .grid.not-started .row .cell .cell-inner {
  filter: blur(4px);
}
#app .main-container .word-search-section .grid.not-started .row .cell:hover .cell-inner {
  background-color: transparent;
  font-weight: normal;
}
#app .main-container .word-search-section .grid.game-ended .row .cell {
  cursor: not-allowed;
}
#app .main-container .word-search-section .grid.game-ended .row .cell .cell-inner {
  opacity: 0.3;
}
#app .main-container .word-search-section .grid.game-ended .row .cell.found .cell-inner {
  opacity: 1;
}
#app .main-container .word-search-section .grid.game-ended .row .cell:hover .cell-inner {
  background-color: none;
  font-weight: normal;
}
#app .activities-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 7vw;
  flex-wrap: wrap;
}
#app .ack {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
  padding: 50px;
  font-family: "Libre Baskerville", serif;
  color: black;
  align-items: center;
  justify-content: center;
}
#app .ack .ack-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
#app .ack .ack-text {
  width: 50vw;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 10px;
  text-align: center;
}
#app .copy {
  width: 100vw;
  background-color: white;
  color: black;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  padding: 20px 0px;
  padding-top: 0px;
  text-align: center;
}
#app .footer {
  height: 30vh;
  width: 100vw;
  background-color: #465967;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 100px;
}
#app .footer .el-logo {
  width: 20vh;
  height: 20vh;
  min-width: 100px;
}
#app .footer .el-logo img {
  height: 100%;
}
#app .footer .el-logo.bigger {
  padding: 0px;
  overflow: visible;
}
#app .footer .icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 20vh;
}
#app .footer .icons .icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  filter: invert(1);
}
#app .footer .icons .icon:hover {
  transform: scale(1.2);
}
#app .footer .icons .icon img {
  width: 100%;
  height: 100%;
}
#app .footer .icons .icon.bigger {
  width: 35px;
  height: 35px;
}
#app .footer .footer-middle {
  background-color: transparent;
  color: white;
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .footer .footer-middle .middle-title {
  font-size: 1.2rem;
  color: white;
  font-family: "Quicksand", sans-serif;
  text-align: center;
  font-weight: bold;
}
#app .footer.alt {
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}
#app .footer.alt .icons {
  width: 13vh;
}
#app .footer.hide {
  display: none;
}
#app .payment-methods {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
#app .mobile-only {
  display: none;
}

.bg-dark-teal {
  background-color: #465967;
}
.bg-light-yellow {
  background-color: #feefb8;
}
.bg-pink {
  background-color: #f39bdd;
}
.bg-white {
  background-color: white;
}

@keyframes found {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wrong {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@media (max-width: 500px) {
  #app {
    max-width: 100vw;
    min-width: 100vw;
  }
  #app .header {
    max-width: 100vw;
    height: auto;
    padding: 3vh 0px;
    padding-top: 2vh;
  }
  #app .header .subtitle {
    flex-direction: row;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    position: relative;
  }
  #app .header .subtitle .balloons {
    position: absolute;
    width: 8vw;
    height: auto;
    bottom: -10px;
  }
  #app .header .subtitle .balloons img {
    height: auto;
    width: 100%;
  }
  #app .header .subtitle .balloons.left {
    left: 7vw;
  }
  #app .header .subtitle .balloons.right {
    right: 7vw;
  }
  #app .header .subtitle .name-group {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 10px;
  }
  #app .header .subtitle .name-group .name img {
    width: 90vw;
    height: auto;
  }
  #app .header .subtitle .name-group .text {
    font-size: 0.9rem;
    width: 65vw;
  }
  #app .menu-bar .hamburger-menu.mobile-only, #app .bottom-menu .hamburger-menu.mobile-only {
    display: block;
  }
  #app .menu-bar .menu-inner, #app .bottom-menu .menu-inner {
    transition: all 1s ease-in-out;
    gap: 7vw;
  }
  #app .menu-bar .menu-inner .menu-item, #app .bottom-menu .menu-inner .menu-item {
    margin: 10px 0px;
    margin-top: 10px;
    font-size: 1rem;
  }
  #app .main-container {
    flex-direction: column;
  }
  #app .main-container .left-section, #app .main-container .right-section, #app .main-container .bio-section, #app .main-container .image-section, #app .main-container .buy-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50vh;
  }
  #app .main-container .left-section .book-details, #app .main-container .right-section .book-details, #app .main-container .bio-section .book-details, #app .main-container .image-section .book-details, #app .main-container .buy-section .book-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5vh;
    margin-top: 0px;
  }
  #app .main-container .left-section .book-details .book-title, #app .main-container .right-section .book-details .book-title, #app .main-container .bio-section .book-details .book-title, #app .main-container .image-section .book-details .book-title, #app .main-container .buy-section .book-details .book-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 2vh;
    font-family: "Libre Baskerville", serif;
    text-align: center;
    line-height: 1.4;
  }
  #app .main-container .left-section .book-details .book-price, #app .main-container .right-section .book-details .book-price, #app .main-container .bio-section .book-details .book-price, #app .main-container .image-section .book-details .book-price, #app .main-container .buy-section .book-details .book-price {
    font-weight: bold;
    margin-bottom: 5vh;
    font-size: 1.3rem;
  }
  #app .main-container .left-section .book-details a.buy-button, #app .main-container .right-section .book-details a.buy-button, #app .main-container .bio-section .book-details a.buy-button, #app .main-container .image-section .book-details a.buy-button, #app .main-container .buy-section .book-details a.buy-button {
    background-color: #f39bdd;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
    text-decoration: none;
  }
  #app .main-container .image-section {
    background-size: 130vw;
  }
  #app .main-container.activities-section {
    padding: 0px;
  }
  #app .main-container.activities-section .left-section, #app .main-container.activities-section .right-section {
    padding: 0px;
    min-height: unset;
  }
  #app .main-container.activities-section .activities {
    padding: 5vh 5vw;
  }
  #app .main-container.activities-section .activities .tiles {
    flex-direction: row;
    gap: 5vw;
  }
  #app .main-container.activities-section .activities .tiles .tile .tile-image {
    width: 40vw;
    height: 50vw;
  }
  #app .main-container.activities-section .activities .tiles .tile.x2 .tile-image {
    width: 90vw;
    height: 50vw;
  }
  #app .main-container.activities-section .activities .tiles .tile .tile-cta {
    font-size: 1rem;
    padding: 10px 15px;
    width: 80%;
  }
  #app .main-container .buy-section .reviews {
    margin-top: auto;
    margin-bottom: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 5%;
  }
  #app .main-container .buy-section .reviews .rev-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    display: none;
  }
  #app .main-container .buy-section .reviews .review {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #app .main-container .bio-section {
    min-height: 50vh;
  }
  #app .main-container .bio-section.left-section {
    align-items: center;
    padding-right: 0;
  }
  #app .main-container .bio-section.left-section .author-image {
    height: 45vh;
  }
  #app .main-container .bio-section.right-section {
    align-items: center;
    padding-left: 0;
  }
  #app .main-container .bio-section.right-section .author-bio {
    width: 80%;
  }
  #app .main-container .word-search-section {
    flex-direction: column-reverse;
  }
  #app .main-container .word-search-section .stats-group .stats {
    width: 90vw;
    padding: 10px 20px;
    margin-bottom: 20px;
    flex-direction: row;
  }
  #app .main-container .word-search-section .stats-group .stats .sep {
    display: none;
  }
  #app .main-container .word-search-section .word-list .word-list-inner {
    width: 99vw;
    padding: 20px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  #app .main-container .word-search-section .grid {
    width: 98vw;
    height: 98vw;
    min-width: 300px;
    min-height: 300px;
    max-width: 500px;
    max-height: 500px;
  }
  #app .main-container .word-search-section .grid .row .cell .cell-inner {
    width: 100%;
    height: 100%;
  }
  #app .main-container .word-search-section .grid .row .cell .cell-inner:hover {
    background-color: transparent;
  }
  #app .main-container .ack .ack-text {
    width: 90vw;
  }
  #app .main-container .footer {
    padding: 0px 20px;
  }
  #app .main-container .footer .footer-middle {
    width: 100%;
  }
  #app .bottom-menu {
    text-align: center;
  }
  #app .bottom-menu .menu-item {
    text-align: center;
    max-width: 90%;
  }
  #app .ack {
    padding: 20px;
  }
  #app .ack .ack-text {
    width: 90vw;
  }
}
.capitalize {
  text-transform: capitalize;
}/*# sourceMappingURL=el.new.css.map */