@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
html,
body {
  background-color: transparent;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background-color: #eee;
  color: #333;
}
body.dark {
  background-color: #151515;
  color: #ddd;
}

#app {
  height: 100vh;
}

.app {
  align-items: center;
  font: 1.2rem "Figtree", sans-serif;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  position: relative;
}
@media screen and (min-width: 1180px) {
  .app {
    display: none;
  }
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.content {
  background-color: #eee;
  line-height: 1.4em;
  padding: 30px;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .content {
    padding: 30px 100px;
  }
}
.content.scrollable {
  flex-flow: row wrap;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scroll-behavior: smooth;
}
.content.scrollable::-webkit-scrollbar, .content.scrollable::-webkit-scrollbar-button {
  display: none;
}
.content.centered {
  justify-content: center;
}
.content .info-image {
  border-radius: 8px;
  height: auto;
  margin: 0 0 25px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .content .info-image:first-of-type {
    float: right;
    margin: 0 0 25px 25px;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .content .info-image:first-of-type {
    width: 40%;
  }
  .content .info-image:last-of-type {
    float: left;
    margin: 0 25px 25px 0;
    width: 40%;
  }
}
.content .info-footer {
  text-align: center;
  width: 100%;
}
.content .info-footer > svg {
  height: auto;
  margin: 40px auto 0;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .content .info-footer > svg {
    width: 35%;
  }
}
@media screen and (min-width: 1024px) {
  .content .info-footer > svg {
    width: 20%;
  }
}

body.dark .content {
  background-color: #151515;
  color: #ddd;
}
body.dark .content .info-footer > svg path {
  fill: #ddd;
}

.ptr__pull-down--pull-more {
  display: none !important;
}

.device-check {
  align-items: center;
  background-color: #151515;
  color: #ddd;
  display: none;
  font: 500 1.2rem "Figtree", sans-serif;
  height: 100vh;
  justify-content: center;
  width: 100vw;
}
.device-check-wrapper {
  align-items: center;
  display: flex;
  flex-flow: column;
  text-align: center;
  width: 500px;
}
.device-check-wrapper svg {
  height: auto;
  margin-top: 50px;
  width: 100px;
}
.device-check-wrapper svg path {
  fill: #ddd;
}
@media screen and (min-width: 1180px) {
  .device-check {
    display: flex;
  }
}

.loading {
  align-items: center;
  background-color: #eee;
  display: flex;
  flex-flow: column;
  height: 100vh;
  justify-content: center;
  position: fixed;
  width: 100vw;
}
@media screen and (min-width: 1180px) {
  .loading {
    display: none;
  }
}
.loading h2,
.loading h4 {
  font-family: "Figtree", sans-serif;
  margin: 0;
}
.loading h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.loading h4 {
  font-size: 1rem;
  margin-bottom: 60px;
}
.loading-icon {
  width: 20%;
}
@media screen and (min-width: 820px) {
  .loading-icon {
    width: 140px;
  }
}
.loading-icon > svg {
  height: auto;
  width: 100%;
}
.loading-spinner {
  margin-top: 60px;
}

body.dark .loading {
  background-color: #151515;
}
body.dark .loading-icon > svg {
  fill: #ddd;
}

.app {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.app.loaded {
  opacity: 1;
}

.loading {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.loading.hidden {
  opacity: 0;
}

.lds-ellipsis,
.lds-ellipsis div {
  box-sizing: border-box;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 15px !important;
}

.lds-ellipsis div {
  position: absolute;
  top: 0 !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background: #aaa !important;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

body.dark .lds-ellipsis div {
  background: #333 !important;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.nav {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 100px;
  gap: 20px;
  justify-content: space-between;
  padding: 0 20px;
  width: 100vw;
}
.nav > button {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  outline: 0;
  padding: 0;
  width: 60px;
}
.nav > button > svg {
  height: 50px;
  width: auto;
}
.app.dark .nav {
  background-color: #050505;
}
.app.dark .nav > button > svg path {
  fill: #ddd;
}

.artwork-img {
  border-radius: 8px;
  height: 100%;
  margin-bottom: 20px;
  width: 100%;
}
.artwork-img:last-child {
  margin-bottom: 0;
}

.books-item {
  border-bottom: 1px dashed #bbb;
  display: flex;
  flex-flow: column;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.books-item:last-of-type {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.books-item h3 {
  margin: 16px 0 0;
}
.books-item em {
  font-weight: 500;
}
.books-item p {
  margin: 15px 0 0;
}
.books-item-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.books-item-nav {
  align-items: center;
  display: flex;
  flex: 1;
  flex-flow: column;
  gap: 10px;
  justify-content: center;
}
.books-item-nav button {
  background-color: transparent;
  border: 0;
  border-radius: 100px;
  height: 70px;
  width: 70px;
}
.books-item-nav button > svg {
  height: auto;
  width: 50px;
  fill: #bbb;
}
.books-item-nav button.active > svg {
  fill: #333;
}
.books-img {
  border-radius: 8px;
  display: flex;
  height: auto;
  width: 60%;
}

body.dark .books-item {
  border-color: #333;
}
body.dark .books-item-nav button > svg {
  fill: #444;
}
body.dark .books-item-nav button.active > svg {
  fill: #ddd;
}

.ripple {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.ripple:before {
  border-radius: 50%;
  background-color: rgba(55, 55, 55, 0.3);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}
.ripple:active:before {
  transition: all 0.3s ease-out;
  opacity: 0;
  width: 160px;
  height: 160px;
  margin-top: -80px;
  margin-left: -80px;
}
.app.dark .ripple:before {
  background-color: rgba(255, 255, 255, 0.3);
}

.dashboard {
  align-items: center;
  background-color: #eee;
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  padding: 30px 0;
  row-gap: 35px;
  width: 100%;
}
@media screen and (min-width: 820px) {
  .dashboard {
    flex-flow: row wrap;
    padding: 30px;
  }
}
.dashboard-item {
  align-items: center;
  background: transparent;
  border: 0;
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  padding: 0 30px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 820px) {
  .dashboard-item {
    flex: auto;
    padding: 0;
    width: calc(50% - 20px);
  }
}
.dashboard-item > span {
  align-items: center;
  background-color: #ccc;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  bottom: 0;
  color: #222;
  display: flex;
  flex-flow: column;
  font: 500 1rem "Figtree", sans-serif;
  height: fit-content;
  justify-content: center;
  left: 0;
  line-height: 1;
  margin: auto;
  padding: 8px 0;
  position: absolute;
  top: 0;
  width: 30px;
  word-break: break-word;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  user-select: none; /* Non-prefixed version, currently */
}
@media screen and (min-width: 768px) {
  .dashboard-item > span {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 820px) {
  .dashboard-item > span {
    border-radius: 10px !important;
    font-size: 1.2rem;
    height: fit-content;
    left: 0;
    margin: 15px auto auto;
    padding: 8px 12px;
    position: relative;
    right: 0;
    width: fit-content;
    white-space: nowrap;
    word-break: normal;
  }
  .dashboard-item > span > br {
    display: none;
  }
}
.dashboard-item:nth-of-type(even) > span {
  border-radius: 0;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  left: auto;
  right: 0;
}
.dashboard-item > svg {
  height: auto;
  width: 65%;
}
@media screen and (min-width: 768px) {
  .dashboard-item > svg {
    height: 160px;
    width: auto;
  }
}
@media screen and (min-width: 820px) {
  .dashboard-item > svg {
    height: 150px;
  }
}
.dashboard-item.smaller > svg {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .dashboard-item.smaller > svg {
    height: 180px;
    width: auto;
  }
}
@media screen and (min-width: 820px) {
  .dashboard-item.smaller > svg {
    height: 150px;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .dashboard-item:first-of-type > svg {
    height: 140px;
    margin: 15px 0;
  }
}
@media screen and (min-width: 820px) {
  .dashboard-item:first-of-type > svg {
    height: 150px;
  }
}

.app.dark .dashboard {
  background-color: #151515;
}
.app.dark .dashboard-item > svg path {
  fill: #ddd;
}
.app.dark .dashboard-item > span {
  background-color: #050505;
  color: #ddd;
}

.quotes-container {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: calc(100vh - 160px);
  overflow-y: auto;
  scroll-behavior: smooth;
}
.quotes-container::-webkit-scrollbar, .quotes-container::-webkit-scrollbar-button {
  display: none;
}
.quotes-container .refresh-text {
  left: 0;
  opacity: 0.2;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.quotes-item {
  font-size: 1.2rem;
}
.quotes-item span {
  display: block;
}
.quotes-item em {
  display: block;
  font-size: 1rem;
  margin-top: 12px;
}

/* Add this to your CSS file */
.tabs {
  align-items: center;
  background-color: #eee;
  display: flex;
  flex-flow: row;
  gap: 15px;
  height: 100px;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.tabs .tab {
  background-color: #ddd;
  border: none;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  font: 500 0.9rem "Figtree", sans-serif;
  height: fit-content;
  padding: 10px 20px;
  transition: background-color 0.3s;
}
.tabs .tab.active {
  background-color: #333;
  color: #ddd;
}

.tab-content {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
}

body.dark .tabs {
  background-color: #151515;
}
body.dark .tabs .tab {
  background-color: #272727;
  color: #ddd;
}
body.dark .tabs .tab.active {
  background-color: #eee;
  color: #333;
}
body.dark .tab-content {
  background-color: #151515;
  color: #ddd;
}

/*# sourceMappingURL=styles.css.map */
