@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap);
@charset "UTF-8";
:root {
  --mainColor: #ff114e;
  --zIndex: 10;
  /* палітра сторінки налаштувань */
  --tint: #0057b7;
  --green: #34c759;
  --label: #000;
  --label2: rgba(60, 60, 67, 0.6);
  --label3: rgba(60, 60, 67, 0.32);
  --sep: rgba(60, 60, 67, 0.16);
  --group: rgba(255, 255, 255, 0.82);
  --chrome: rgba(245, 245, 247, 0.82);
  --fill: rgba(118, 118, 128, 0.14);
  --radius: 12px;
  /* єдина колонка для стрічки і налаштувань */
  --col: 450px;
  /* жолоб може бути нульовим; хром додає свій відступ через calc(var(--gut) + 14px) */
  --gut: max(0px, calc(50% - var(--col) / 2));
  /* стартові значення; сторінка налаштувань перезаписує їх виміряними */
  --navH: 38px;
  --searchH: 42px;
}

/* планшетна смуга: стрічка займає більше місця, налаштування йдуть за нею */
@media (min-width: 450px) and (max-width: 700px) {
  :root {
    --col: 650px;
  }
}
html,
body,
#app {
  height: 100%;
}

#app > div {
  height: 100%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", "Open Sans", sans-serif;
  letter-spacing: 0.1px;
}

a:hover,
button:hover {
  cursor: pointer;
  filter: brightness(95%);
}

p {
  margin: 0;
}

a:active,
button:active {
  filter: brightness(90%);
}

i {
  font-style: normal !important;
  font-weight: bold;
  padding: 0 2px;
}

body {
  background: rgba(211, 211, 211, 0.5);
  min-width: 320px;
  overflow-x: hidden !important;
}
body::before {
  content: "";
  position: fixed;
  background-image: url(../img/blur.11e21199.webp);
  background-size: 100% 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
  transition: filter 0.3s linear;
}

.container-fluid {
  padding: 0 6px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background-color: #0048aa;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@keyframes fly {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.loader-image {
  width: 50px;
  animation: fly 1s linear infinite;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

.emoji {
  margin: 0 2px -4px;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-position: center 50%;
  background-size: 100%;
}
.emoji b {
  display: none;
}

pre {
  white-space: pre-wrap;
}

iframe {
  border: none;
}

.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: #000;
  width: 30px;
  height: 30px;
  font-size: 30px;
}
.toTopButton {
  position: fixed;
  bottom: 20px;
  right: 14px;
  width: 40px;
  height: 40px;
  background-color: #e1eaf3;
  border-radius: 100%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transform-origin: right center;
  transform: scale(0.9) translateY(10px);
  transition: all 0.3s ease;
}
.toTopButton img {
  width: 40%;
}
.toTopButton .new-posts-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #ffd700;
  border-radius: 100px;
  padding: 2px 4px;
  min-width: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #000;
  transform: translate(50%, -50%);
}
.toTopButton.active {
  transform: scale(1) translateY(0px);
  pointer-events: all;
  opacity: 1;
}

.swiper-initialized {
  position: relative;
}

.btn {
  display: block;
  background-color: whitesmoke;
  padding: 7px 12px 8px;
  border: none;
  border-radius: 20px;
  min-width: 120px;
  height: 40px;
  text-decoration: none;
}

body,
.q-app {
  overflow: hidden auto;
}

/* кросфейд між топ-рівневими сторінками; розмітка — у App.vue */
.screen-enter-active,
.screen-leave-active {
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-enter-from,
.screen-leave-to {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .screen-enter-active,
  .screen-leave-active {
    transition: opacity 0.15s linear;
  }
}
body.darkMode {
  background-color: rgb(0, 0, 0);
  color: #fff;
  --label: #fff;
  --label2: rgba(235, 235, 245, 0.6);
  --label3: rgba(235, 235, 245, 0.3);
  --sep: rgba(84, 84, 88, 0.6);
  --group: rgba(28, 28, 30, 0.72);
  --chrome: rgba(10, 10, 12, 0.78);
  --fill: rgba(118, 118, 128, 0.28);
}
body.darkMode::before {
  content: "";
  opacity: 0.3;
  filter: invert(1);
}
body.darkMode .close-btn {
  color: #fff;
}
body.darkMode .modal {
  background-color: rgb(6, 6, 6) !important;
  color: #fff !important;
}
body.darkMode .modal a {
  font-weight: bold;
}
body.darkMode button:not(.close-btn, .list-tab-button, .unsubcribe-btn, .ios-switch, .cat-all, .bulk-btn, .trends__item, .active-trend) {
  background-color: #ffd700;
  color: #000 !important;
}
body.darkMode button:not(.close-btn, .list-tab-button, .unsubcribe-btn, .ios-switch, .cat-all, .bulk-btn, .trends__item, .active-trend) img {
  filter: contrast(140%);
}
body.darkMode button:not(.close-btn, .list-tab-button, .unsubcribe-btn, .ios-switch, .cat-all, .bulk-btn, .trends__item, .active-trend):hover {
  background-color: #ffde24 !important;
}
body.darkMode .post-item {
  background-color: rgb(6, 6, 6) !important;
  color: #fff !important;
  border: none;
}
body.darkMode .post-item .head {
  background-color: rgba(162, 162, 162, 0.1);
}
body.darkMode .post-item .head .unsubcribe-btn {
  color: #fff !important;
  opacity: 0.6;
}
body.darkMode .post-item .footer .footer-bottom .post-source a {
  color: #ffd700;
}
body.darkMode .back-button {
  color: #000;
  background-color: #ffd700;
}
body.darkMode .toTopButton {
  background-color: #0057b7;
}
body.darkMode .toTopButton img {
  filter: brightness(0) invert(1);
}
body.darkMode .list-tab-button {
  background-color: #000;
  color: #fff !important;
}
body.darkMode .list-tab-button.active {
  background-color: #ffd700;
  color: #000 !important;
}
body.darkMode .trends__item.active,
body.darkMode .active-trend {
  background-color: #ffd700;
  color: #000;
}
body.darkMode .trends__item.active .trends__count,
body.darkMode .active-trend .trends__count {
  color: rgba(0, 0, 0, 0.6);
}
body.darkMode .footer-desc {
  color: #858585 !important;
}
body.darkMode .post-item-wrapper {
  background-color: rgba(6, 6, 6, 0.1) !important;
}

/*# sourceMappingURL=app.a42e77fe.css.map*/