/* src/assets/css/global.css */
:root {
  --light-50: rgba(250, 250, 250, 1);
  --light-100: rgba(245, 245, 245, 1);
  --light-200: rgba(238, 238, 238, 1);
  --light-300: rgba(224, 224, 224, 1);
  --light-400: rgba(189, 189, 189, 1);
  --dark-500: rgba(158, 158, 158, 1);
  --dark-600: rgba(117, 117, 117, 1);
  --dark-700: rgba(97, 97, 97, 1);
  --dark-800: rgba(66, 66, 66, 1);
  --dark-900: rgba(33, 33, 33, 1);
  --red: #F44336;
  --zone-blue: #4285F4;
  --zone-orange: #FB8C00;
  --zone-green: #34A853;
  --zone-red: #EA4335;
}
.light {
  --primary: #28A745 !important;
  --background: #E6F5EF !important;
  --surface-1: #ECF8F3 !important;
  --surface-2: #D5ECE2 !important;
  --overlay: rgba(230, 245, 239, 0.75) !important;
  --border: #00C97A !important;
  --text: #10221C !important;
  --primary-button: #28A745 !important;
}
.dark {
  --primary: #28A745 !important;
  --background: #0B0F14 !important;
  --surface-1: #121820 !important;
  --surface-2: #1C2530 !important;
  --overlay: rgba(11, 15, 20, 0.75) !important;
  --border: #2C3A48 !important;
  --text: #F9FAFB !important;
  --primary-button: #28A745 !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  position: relative;
}
* {
  margin: 0;
  padding: 0;
}
body::-webkit-scrollbar {
  display: none;
}
html,
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background-color: var(--background);
  scroll-behavior: smooth;
  overscroll-behavior: none;
  overflow-x: hidden;
}
ul[class],
ol[class] {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
  background-color: transparent;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
.loader_overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--overlay);
  z-index: 9999;
}
.loader {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.loader svg {
  width: 36px;
  height: 36px;
}
.loader_icon .dot {
  fill: var(--primary);
  transform-origin: 24.5px 24.5px;
  animation: pulse 1s infinite ease-in-out;
}
.loader_icon .ring {
  stroke: var(--primary);
  stroke-width: 5.42743;
  transform-origin: 24.5px 24.5px;
  animation: pulse 1s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}
.screen::-webkit-scrollbar {
  display: none;
}
.screen {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}
.app_bar_onboarding {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: 0;
  padding-left: env(safe-area-inset-left);
  background-color: var(--surface-1);
  z-index: 1;
}
.app_bar_onboarding nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
.app_bar_onboarding_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.app_bar_primary {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: 0;
  padding-left: env(safe-area-inset-left);
  background-color: var(--surface-1);
  z-index: 1;
}
.version_update {
  position: fixed;
  top: 6px;
  right: 8px;
  width: 100%;
  max-width: 192px;
  height: 0;
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--surface-2);
  border: 2px solid transparent;
  border-radius: 48px;
  transition: 0.3s ease-in-out;
  z-index: 99999;
}
.version_update:focus,
.version_update:active,
.version_update:hover {
  border-color: var(--primary);
}
.version_update_text {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--primary);
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.version_update_button_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.refresh_icon {
  width: 28px;
  height: 28px;
}
.refresh_icon .theme {
  fill: var(--primary);
}
.app_bar_primary nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
.app_bar_breadcrumb {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}
.app_bar_empty {
  width: 48px;
  height: 48px;
  display: block;
}
.home_link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.rts_logo {
  width: 120px;
  height: 48px;
  display: block;
}
.rts_logo_fill {
  fill: var(--text);
}
.rts_logo_fill.theme {
  fill: var(--primary);
}
.rts_powered_by {
  display: none;
  opacity: 1;
  animation: poweredBySwap 15s linear infinite;
}
.rts_powered_by text {
  width: 120px;
  height: 48px;
  display: block;
  font-size: 24px;
  font-weight: 600;
  fill: var(--text);
}
.rts_powered_url {
  display: none;
  opacity: 0;
  animation: poweredUrlSwap 15s linear infinite;
}
.rts_powered_url text {
  width: 120px;
  height: 48px;
  display: block;
  font-size: 25px;
  font-weight: 600;
  fill: var(--text);
}
@keyframes poweredBySwap {
  0%, 48% {
    opacity: 1;
  }
  52%, 98% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes poweredUrlSwap {
  0%, 48% {
    opacity: 0;
  }
  52%, 98% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.app_bar_primary_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.back_button {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
}
.back_arrow_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.back_arrow_icon .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.back_button:focus .theme,
.back_button:active .theme,
.back_button:hover .theme {
  fill: var(--primary);
}
.following_link {
  min-width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.following_link_text {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
}
.following_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.following_icon .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.following_link:focus .theme,
.following_link:active .theme,
.following_link:hover .theme {
  fill: var(--primary);
}
.search_link {
  min-width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
}
.search_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.search_icon .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.search_link:focus .theme,
.search_link:active .theme,
.search_link:hover .theme {
  fill: var(--primary);
}
.profile_link {
  min-width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
}
.profile_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.profile_icon .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.profile_link:focus .theme,
.profile_link:active .theme,
.profile_link:hover .theme {
  fill: var(--primary);
}
.following_link {
  min-width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
}
.following_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.following_icon .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.following_link:focus .theme,
.following_link:active .theme,
.following_link:hover .theme {
  fill: var(--primary);
}
.premium_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.premium_icon .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.settings_link {
  min-width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
}
.settings_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.settings_icon .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.settings_link:focus .theme,
.settings_link:active .theme,
.settings_link:hover .theme {
  fill: var(--primary);
}
footer {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto auto 0 auto;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  z-index: 0;
}
.footer_general {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
footer .footer_general nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--dark);
}
.copyright {
  max-width: 40ch;
  margin: 0 auto;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  color: var(--dark);
}
.content_four_oh_four {
  min-height: -webkit-fill-available;
  height: 100vh;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.four_oh_four {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}
.four_oh_four_title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
}
.four_oh_four_title span {
  color: var(--primary);
}
.four_oh_four_description {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
}
.four_oh_four_link {
  width: 192px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background-color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 48px;
  transition: 0.3s ease-in-out;
}
.four_oh_four_link:focus,
.four_oh_four_link:active,
.four_oh_four_link:hover {
  background-color: var(--background);
}
@media only screen and (min-width: 640px) {
  .screen {
    gap: 16px;
  }
  .version_update {
    left: 50%;
    right: initial;
    transform: translate(-50%, 0);
  }
  .rts_logo {
    width: 132px;
    height: 60px;
  }
  .banner_slot_1_mobile_placeholder {
    width: 468px;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .banner_slot_1_mobile_placeholder {
    width: 728px;
    height: 90px;
  }
}
@media only screen and (min-width: 960px) {
  .rts_logo {
    width: 144px;
    height: 72px;
  }
}
@media only screen and (min-width: 1280px) {
  .screen {
    gap: 32px;
  }
}
/*# sourceMappingURL=global-24CMGMTZ.css.map */
