/* projects/riterz-public/src/style/abstract/01_variables.css */
:root {
  --primary-color: #F15AB5;
  --primary-dark-color: #BC2982;
  --primary-light-color: #F589CA;
  --primary-lighter-color: #FCDEF0;
  --secondary-color: #200B39;
  --secondary-light-color: #8F859C;
  --secondary-lighter-color: #D3CED8;
  --tertiary-color: #43E5FC;
  --tertiary-dark-color: #04B0C8;
  --tertiary-light-color: #9BF1FD;
  --quaternary-color: #CB55B4;
  --quaternary-dark-color: #892A76;
  --quaternary-light-color: #DB8ACB;
  --text-color: #5E5568;
  --anchor-color: #200B39;
  --gray-80-color: #323036;
  --gray-60-color: #64616B;
  --gray-22-color: #C4C1CD;
  --gray-10-color: #E4E2E9;
  --gray-05-color: #F2F0F7;
  --error-color: #ff0000;
  --error-light-color: #FF8780;
  --success-color: #4BCC7E;
  --success-light-color: #9CE3B8;
  --warn-color: #FFA400;
  --warn-light-color: #FFD180;
  --heading-font: "Montserrat", sans-serif;
  --supersized-font-size: 64px;
  --supersized-line-height: 1.2;
  --hero-font-size: 44px;
  --hero-line-height: 1.18;
  --h1-font-size: 32px;
  --h1-line-height: 1.2;
  --h2-font-size: 24px;
  --h2-line-height: 1.27;
  --h3-font-size: 22px;
  --h3-line-height: 1.3;
  --h4-font-size: 18px;
  --h4-line-height: 1.35;
  --h5-font-size: 16px;
  --h5-line-height: 1.4;
  --h6-font-size: 14px;
  --h6-line-height: 1.45;
  --body-font: "PT Sans", sans-serif;
  --body-font-size: 13px;
  --transition: all 200ms ease;
  --border-radius: 4px;
  --border-radius-high: 16px;
}

/* projects/riterz-public/src/style/abstract/02_typography.css */
html,
body {
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.94em;
  line-height: 1.28;
}
:is(h1, h2, h3, h4, h5, h6).light,
:is(h1, h2, h3, h4, h5, h6) > .light {
  font-weight: 400;
}
:is(h1, h2, h3, h4, h5, h6).medium,
:is(h1, h2, h3, h4, h5, h6) > .medium {
  font-weight: 500;
}
:is(h1, h2, h3, h4, h5, h6).spaceless,
:is(h1, h2, h3, h4, h5, h6) > .spaceless {
  margin: 0;
}
.supersized {
  font-size: var(--supersized-font-size);
  line-height: var(--supersized-line-height);
}
.hero {
  font-size: var(--hero-font-size);
  line-height: var(--hero-line-height);
}
h1,
.h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
}
h2,
.h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}
h3,
.h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
}
h4,
.h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
}
h5,
.h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}
h6,
.h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}
ul,
ol,
p {
  margin: 0 0 1.275em;
}
:is(ul, ol, p).light {
  font-weight: 400;
}
:is(ul, ol, p).medium {
  font-weight: 600;
}
:is(ul, ol, p).color-light,
:is(ul, ol, p) .color-light {
  color: var(--text-color-light);
}
:is(ul, ol, p).spaceless {
  margin: 0;
}

/* projects/riterz-public/src/style/abstract/03_animations.css */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fadein {
  animation: fadein .5s linear;
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate-fadeout {
  animation: fadeout .5s linear;
}

/* projects/riterz-public/src/style/abstract/04_grid.css */
.rt-section {
  clear: both;
}
.rt-section.gray-bg {
  background-color: var(--gray-05-color);
}
.rt-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.rt-row.v-stretch {
  align-items: stretch;
  align-content: stretch;
}
.rt-row.gap-8 {
  gap: 8px;
}
.rt-row.gap-16 {
  gap: 16px;
}
.rt-row.gap-24 {
  gap: 24px;
}
.rt-row > .rt-column.v-stretch {
  align-self: stretch;
}
.rt-row > .rt-column.desk-12 {
  grid-column: span 12;
}
.rt-row > .rt-column.desk-11 {
  grid-column: span 11;
}
.rt-row > .rt-column.desk-10 {
  grid-column: span 10;
}
.rt-row > .rt-column.desk-9 {
  grid-column: span 9;
}
.rt-row > .rt-column.desk-8 {
  grid-column: span 8;
}
.rt-row > .rt-column.desk-7 {
  grid-column: span 7;
}
.rt-row > .rt-column.desk-6 {
  grid-column: span 6;
}
.rt-row > .rt-column.desk-5 {
  grid-column: span 5;
}
.rt-row > .rt-column.desk-4 {
  grid-column: span 4;
}
.rt-row > .rt-column.desk-3 {
  grid-column: span 3;
}
.rt-row > .rt-column.desk-2 {
  grid-column: span 2;
}
.rt-row > .rt-column.desk-1 {
  grid-column: span 1;
}
.rt-row > .rt-column.desk-auto {
  grid-column: auto;
}
.rt-row > .rt-column.desk-none {
  display: none;
}
@media (max-width: 1441px) {
  .rt-row > .rt-column.lap-12 {
    grid-column: span 12;
  }
  .rt-row > .rt-column.lap-11 {
    grid-column: span 11;
  }
  .rt-row > .rt-column.lap-10 {
    grid-column: span 10;
  }
  .rt-row > .rt-column.lap-9 {
    grid-column: span 9;
  }
  .rt-row > .rt-column.lap-8 {
    grid-column: span 8;
  }
  .rt-row > .rt-column.lap-7 {
    grid-column: span 7;
  }
  .rt-row > .rt-column.lap-6 {
    grid-column: span 6;
  }
  .rt-row > .rt-column.lap-5 {
    grid-column: span 5;
  }
  .rt-row > .rt-column.lap-4 {
    grid-column: span 4;
  }
  .rt-row > .rt-column.lap-3 {
    grid-column: span 3;
  }
  .rt-row > .rt-column.lap-2 {
    grid-column: span 2;
  }
  .rt-row > .rt-column.lap-1 {
    grid-column: span 1;
  }
  .rt-row > .rt-column.lap-auto {
    grid-column: auto;
  }
  .rt-row > .rt-column.lap-none {
    display: none;
  }
}
@media (max-width: 992px) {
  .rt-row > .rt-column.tab-12 {
    grid-column: span 12;
  }
  .rt-row > .rt-column.tab-11 {
    grid-column: span 11;
  }
  .rt-row > .rt-column.tab-10 {
    grid-column: span 10;
  }
  .rt-row > .rt-column.tab-9 {
    grid-column: span 9;
  }
  .rt-row > .rt-column.tab-8 {
    grid-column: span 8;
  }
  .rt-row > .rt-column.tab-7 {
    grid-column: span 7;
  }
  .rt-row > .rt-column.tab-6 {
    grid-column: span 6;
  }
  .rt-row > .rt-column.tab-5 {
    grid-column: span 5;
  }
  .rt-row > .rt-column.tab-4 {
    grid-column: span 4;
  }
  .rt-row > .rt-column.tab-3 {
    grid-column: span 3;
  }
  .rt-row > .rt-column.tab-2 {
    grid-column: span 2;
  }
  .rt-row > .rt-column.tab-1 {
    grid-column: span 1;
  }
  .rt-row > .rt-column.tab-auto {
    grid-column: auto;
  }
  .rt-row > .rt-column.tab-none {
    display: none;
  }
}
@media (max-width: 720px) {
  .rt-row > .rt-column.phab-12 {
    grid-column: span 12;
  }
  .rt-row > .rt-column.phab-11 {
    grid-column: span 11;
  }
  .rt-row > .rt-column.phab-10 {
    grid-column: span 10;
  }
  .rt-row > .rt-column.phab-9 {
    grid-column: span 9;
  }
  .rt-row > .rt-column.phab-8 {
    grid-column: span 8;
  }
  .rt-row > .rt-column.phab-7 {
    grid-column: span 7;
  }
  .rt-row > .rt-column.phab-6 {
    grid-column: span 6;
  }
  .rt-row > .rt-column.phab-5 {
    grid-column: span 5;
  }
  .rt-row > .rt-column.phab-4 {
    grid-column: span 4;
  }
  .rt-row > .rt-column.phab-3 {
    grid-column: span 3;
  }
  .rt-row > .rt-column.phab-2 {
    grid-column: span 2;
  }
  .rt-row > .rt-column.phab-1 {
    grid-column: span 1;
  }
  .rt-row > .rt-column.phab-auto {
    grid-column: auto;
  }
  .rt-row > .rt-column.phab-none {
    display: none;
  }
}
@media (max-width: 460px) {
  .rt-row > .rt-column.phone-12 {
    grid-column: span 12;
  }
  .rt-row > .rt-column.phone-11 {
    grid-column: span 12;
  }
  .rt-row > .rt-column.phone-10 {
    grid-column: span 12;
  }
  .rt-row > .rt-column.phone-9 {
    grid-column: span 9;
  }
  .rt-row > .rt-column.phone-8 {
    grid-column: span 8;
  }
  .rt-row > .rt-column.phone-7 {
    grid-column: span 7;
  }
  .rt-row > .rt-column.phone-6 {
    grid-column: span 6;
  }
  .rt-row > .rt-column.phone-5 {
    grid-column: span 5;
  }
  .rt-row > .rt-column.phone-4 {
    grid-column: span 4;
  }
  .rt-row > .rt-column.phone-3 {
    grid-column: span 3;
  }
  .rt-row > .rt-column.phone-2 {
    grid-column: span 2;
  }
  .rt-row > .rt-column.phone-1 {
    grid-column: span 1;
  }
  .rt-row > .rt-column.phone-auto {
    grid-column: auto;
  }
  .rt-row > .rt-column.phone-none {
    display: none;
  }
}

/* projects/riterz-public/src/style/abstract/05_layout.css */
body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
rt-root {
  position: relative;
  width: 100dvw;
  height: 100dvh;
  overflow: auto;
}
rt-root .rt-header {
  flex: initial;
  min-height: 0;
}
rt-root .rt-header {
  position: sticky;
  top: 0;
  z-index: 6;
  width: 100%;
  background: rgba(255, 255, 255, 0.60);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
rt-root .rt-header .rt-container {
  padding: 8px 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
rt-root .rt-header .rt-logo {
  display: flex;
  flex: 1 0 300px;
  justify-content: flex-start;
  align-items: center;
}
rt-root .rt-header .rt-logo figure {
  display: block;
  height: 22px;
  margin-left: 0;
}
rt-root .rt-header .rt-logo figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
rt-root .rt-header .rt-header-menu-toggle {
  display: none;
}
rt-root .rt-header .rt-header-menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
}
rt-root .rt-header .rt-header-menu ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
}
rt-root .rt-header .rt-header-menu ul li {
  display: block;
  position: relative;
  z-index: 2;
}
rt-root .rt-header .rt-header-menu ul li a {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding: 0 8px;
  text-decoration: none;
  color: var(--anchor-color);
  transition: var(--transition);
}
rt-root .rt-header .rt-header-menu ul li a:hover,
rt-root .rt-header .rt-header-menu ul li a.active {
  color: var(--primary-color);
}
rt-root .rt-header .rt-header-menu ul li ul {
  display: block;
  list-style: none;
  margin: 0;
  position: absolute;
  inset: 38px auto auto -5px;
  width: 280px;
  border-radius: var(--border-radius);
  background-color: #fff;
  box-shadow: 0 0 12px rgba(#000, 0.15);
  padding: 12px 16px;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
rt-root .rt-header .rt-header-menu ul li ul li {
  display: block;
  margin: 4px 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.2;
  font-family: var(--heading-font);
  font-weight: 600;
}
rt-root .rt-header .rt-header-menu ul li ul li a {
  display: block;
  padding: 8px 9px 7px 9px;
  border-radius: var(--border-radius);
  color: var(--anchor-color);
  transition: var(--transition);
}
rt-root .rt-header .rt-header-menu ul li ul li a span {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
rt-root .rt-header .rt-header-menu ul li ul li a:hover {
  background-color: var(--gray-05-color);
  color: var(--primary-color);
}
rt-root .rt-header .rt-header-menu ul li ul li.alt {
  margin: 12px 0 4px 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--gray-22-color);
}
rt-root .rt-header .rt-header-menu ul li ul li img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 32px;
  margin: 0 8px 0 0;
  display: block;
  line-height: 1;
}
rt-root .rt-header .rt-header-menu ul li ul li:has(img) a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
rt-root .rt-header .rt-header-menu ul li:hover ul {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}
rt-root .rt-header .rt-user-settings {
  display: flex;
  flex: 1 0 300px;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  rt-root .rt-header .rt-logo {
    flex: 1 0 100px;
  }
  rt-root .rt-header .rt-header-menu-toggle {
    display: block;
  }
  rt-root .rt-header .rt-header-menu {
    display: none;
  }
  rt-root .rt-header .rt-submit-profile-button {
    display: none;
  }
  rt-root .rt-header .rt-user-settings {
    flex: 1 0 100px;
  }
}
rt-root .rt-body {
  position: relative;
}
router-outlet {
  display: none;
}
.rt-panel {
  width: 100%;
  position: relative;
  padding: 24px;
  border-radius: var(--border-radius-high);
  background: #FFF;
  overflow: hidden;
}
.rt-panel.transparent {
  background-color: transparent;
}
.rt-panel .rt-panel-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.rt-table {
  width: 100%;
  border-radius: 8px;
}
.rt-table tr {
  color: var(--secondary-color);
}
.rt-table th {
  padding: 12px;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-10-color);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 400 !important;
}
.rt-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--gray-10-color);
  color: var(--secondary-color);
  font-size: 14px;
}
.rt-table tr:last-child td {
  border-bottom: none;
}
.rt-clickable {
  cursor: pointer;
}
nav.rt-nav {
  width: 120px;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}
nav.rt-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav.rt-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 300ms ease;
}
nav.rt-nav ul li a:hover {
  background: var(--gray-05-color);
}
nav.rt-nav ul li a.active {
  background: var(--gray-05-color);
}
.rt-container {
  max-width: 1440px;
  margin: auto;
}
@media (max-width: 1480px) {
  .rt-container {
    padding: 0 16px;
  }
}
.rt-config {
  display: grid;
  grid-template-columns: 0px 1fr;
  grid-template-rows: 0px 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
}
.rt-config:has(.rt-config-top) {
  grid-template-rows: 48px 1fr;
}
.rt-config .rt-config-top {
  grid-area: 1 / 1 / 2 / 3;
  align-items: center;
  padding: 0 16px;
  background-color: #fff;
  overflow: hidden;
}
.rt-config:has(.rt-config-side) {
  grid-template-columns: 280px 1fr;
}
.rt-config:has(.rt-config-side).side-hidden {
  grid-template-columns: 0px 1fr;
}
.rt-config:has(.rt-config-side).side-hidden .rt-config-side {
  padding-inline: 0px;
}
.rt-config .rt-config-side {
  grid-area: 2 / 1 / 3 / 2;
  flex: 0 0 280px;
  min-width: 0;
  padding-inline: 20px;
  position: relative;
  height: calc(100vh - 112px);
}
.rt-config .rt-config-side .rt-config-side-contents {
  height: 100%;
  overflow: hidden auto;
}
.rt-config .rt-config-side .rt-toggle-side-button {
  position: absolute;
  bottom: 32px;
  right: -52px;
  padding: 8px 8px 8px 4px;
  z-index: 1;
  background: #fff;
  border-radius: 0 50% 50% 0;
  border: 1px solid var(--gray-05-color);
  border-left: none;
}
.rt-config .rt-config-side .rt-config-organization {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.rt-config .rt-config-side nav {
  padding-top: 16px;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.rt-config .rt-config-side nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rt-config .rt-config-side nav ul li {
  margin-bottom: 8px;
}
.rt-config .rt-config-side nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 300ms ease;
}
.rt-config .rt-config-side nav ul li a:hover {
  background: var(--gray-05-color);
}
.rt-config .rt-config-side nav ul li a.active {
  background: var(--gray-05-color);
}
.rt-config .rt-config-main {
  grid-area: 2 / 2 / 3 / 3;
  flex: auto;
  padding: 24px;
  background-color: var(--gray-05-color);
  border-radius: 16px;
  overflow: auto;
  height: calc(100vh - 68px);
  min-width: 350px;
}
.rt-config .rt-config-main.search {
  padding: 0;
  margin: 0 8px;
  background-color: #FFF;
  height: calc(100vh - 116px);
}

/* projects/riterz-public/src/style/components/auth-modal.css */
.rt-auth-modal {
  overflow: hidden;
}
.rt-auth-modal::after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #58076e url(/assets/riterz-hero-image.webp) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .rt-auth-modal::after {
    display: none;
  }
}
.rt-auth-back {
  position: absolute;
  left: 0;
  top: 10px;
}
.rt-auth-panel {
  width: 332px;
  margin: 0 auto 50px;
}
.rtz-reg-intro {
  position: relative;
  text-align: center;
}
.rtz-reg-intro h1 {
  margin: 20px auto;
}
.rtz-reg-intro p {
  margin: 5px auto;
  font-size: 14px;
  line-height: 20px;
}
.rtz-registration-options {
  margin: 20px auto 0;
  width: 322px;
  display: block;
}
.rtz-registration-options ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
}
.rtz-registration-options ul li {
  display: block;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}
.rtz-registration-options ul li + li {
  margin-top: 8px;
}
.rtz-registration-options ul li a {
  text-decoration: none;
  display: block;
  border: 1px solid var(--gray-22-color);
  background-color: #fff;
  border-radius: var(--border-radius);
  color: #000;
  position: relative;
  padding: 10px 10px 10px 78px;
  transition: background-color 220ms ease;
}
.rtz-registration-options ul li a:before {
  display: block;
  position: absolute;
  height: 20px;
  left: 46px;
}
.rtz-registration-options ul li a.ro-google:before {
  content: " ";
  background: url(/assets/registration-icon-set.png) no-repeat 0 0;
  background-size: 85px 20px;
  width: 20px;
  height: 20px;
}
.rtz-registration-options ul li a.ro-fb:before {
  content: " ";
  background: url(/assets/registration-icon-set.png) no-repeat -24px 0;
  background-size: 85px 20px;
  width: 10px;
  height: 20px;
  margin-left: 5px;
}
.rtz-registration-options ul li a.ro-ms:before {
  content: " ";
  background: url(/assets/registration-icon-set.png) no-repeat -38px 0;
  background-size: 85px 20px;
  width: 21px;
  height: 20px;
}
.rtz-registration-options ul li a.ro-email:before {
  content: " ";
  background: url(/assets/registration-icon-set.png) no-repeat -62px -1px;
  background-size: 85px 20px;
  width: 22px;
  height: 17px;
  margin-top: 2px;
}
.rtz-registration-options ul li a:hover {
  background-color: var(--gray-05-color);
}
@media (max-width: 480px) {
  .rtz-registration-options {
    width: auto;
  }
  .rtz-registration-options ul li a {
    padding: 10px 10px 10px 48px;
  }
  .rtz-registration-options ul li a:before {
    left: 16px;
  }
}
.rtz-registration-options.disabled ul li a {
  pointer-events: none;
}
.rtz-registration-options.disabled ul li a:before {
  filter: grayscale(100%);
  transition: filter 450ms ease;
}
.rt-checkbox-item {
  font-size: 14px;
  line-height: 20px;
}
.rt-checkbox-item input[type=checkbox] {
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
}
.rt-checkbox-item a {
  color: var(--text-color);
}
.rt-switch-auth {
  margin: 20px 0 0;
  text-align: center;
}
.rt-switch-auth a {
  color: var(--text-color);
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}
.rtz-reg-msg {
  width: 600px;
  margin: 14px;
  border: 1px solid var(--gray-22-color);
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 40px 30px 20px;
  text-align: center;
  max-width: 100%;
}
.rtz-reg-msg h1 {
  font-size: 32px;
  margin: 0 0 15px;
}
.rtz-reg-msg p {
  color: var(--gray-60-color);
}
.rtz-reg-msg p a {
  color: #000;
  text-decoration: underline;
}
.rtz-reg-msg p a:hover {
  text-decoration: none;
}
.reg-footnote {
  font-size: 11px;
  color: var(--gray-60-color);
  text-align: center;
  margin: 15px 0 0;
}
.reg-footnote a {
  color: var(--text-color);
  text-decoration: underline;
}
.reg-footnote a:hover {
  text-decoration: none;
}
.rtz-from-req {
  font-size: 11px;
}

/* projects/riterz-public/src/style/components/loading.css */
.rt-loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1001;
  background-color: #f2f2f2;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease;
}
.rt-loading.white {
  background-color: #fff;
}
.rt-loading .rt-spinner {
  max-width: 40px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: var(--primary-color);
  border-radius: 100%;
  animation: rt-scale-out 1.0s infinite ease-in-out;
}
.rt-loading.on {
  opacity: 1;
  pointer-events: auto;
}
@-webkit-keyframes rt-scale-out {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}
@keyframes rt-scale-out {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* projects/riterz-public/src/style/components/breadcrumbs.css */
.rt-breadcrumbs {
  font-size: 14px;
  padding: 0 8px;
}
.rt-breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rt-breadcrumbs ul li {
  display: inline-block;
}
.rt-breadcrumbs ul li a {
  color: var(--primary-color);
  text-decoration: none;
}
.rt-breadcrumbs ul li + li {
  margin-left: 4px;
}
.rt-breadcrumbs ul li + li:before {
  content: "/";
  margin-right: 4px;
}

/* node_modules/primeicons/primeicons.css */
@font-face {
  font-family: "primeicons";
  font-display: block;
  src: url("./media/primeicons.eot");
  src:
    url("./media/primeicons.eot?#iefix") format("embedded-opentype"),
    url("./media/primeicons.woff2") format("woff2"),
    url("./media/primeicons.woff") format("woff"),
    url("./media/primeicons.ttf") format("truetype"),
    url("./media/primeicons.svg?#primeicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.pi {
  font-family: "primeicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pi:before {
  --webkit-backface-visibility:hidden;
  backface-visibility: hidden;
}
.pi-fw {
  width: 1.28571429em;
  text-align: center;
}
.pi-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
@media (prefers-reduced-motion: reduce) {
  .pi-spin {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.pi-folder-plus:before {
  content: "\ea05";
}
.pi-receipt:before {
  content: "\ea06";
}
.pi-asterisk:before {
  content: "\ea07";
}
.pi-face-smile:before {
  content: "\ea08";
}
.pi-pinterest:before {
  content: "\ea09";
}
.pi-expand:before {
  content: "\ea0a";
}
.pi-pen-to-square:before {
  content: "\ea0b";
}
.pi-wave-pulse:before {
  content: "\ea0c";
}
.pi-turkish-lira:before {
  content: "\ea0d";
}
.pi-spinner-dotted:before {
  content: "\ea0e";
}
.pi-crown:before {
  content: "\ea0f";
}
.pi-pause-circle:before {
  content: "\ea10";
}
.pi-warehouse:before {
  content: "\ea11";
}
.pi-objects-column:before {
  content: "\ea12";
}
.pi-clipboard:before {
  content: "\ea13";
}
.pi-play-circle:before {
  content: "\ea14";
}
.pi-venus:before {
  content: "\ea15";
}
.pi-cart-minus:before {
  content: "\ea16";
}
.pi-file-plus:before {
  content: "\ea17";
}
.pi-microchip:before {
  content: "\ea18";
}
.pi-twitch:before {
  content: "\ea19";
}
.pi-building-columns:before {
  content: "\ea1a";
}
.pi-file-check:before {
  content: "\ea1b";
}
.pi-microchip-ai:before {
  content: "\ea1c";
}
.pi-trophy:before {
  content: "\ea1d";
}
.pi-barcode:before {
  content: "\ea1e";
}
.pi-file-arrow-up:before {
  content: "\ea1f";
}
.pi-mars:before {
  content: "\ea20";
}
.pi-tiktok:before {
  content: "\ea21";
}
.pi-arrow-up-right-and-arrow-down-left-from-center:before {
  content: "\ea22";
}
.pi-ethereum:before {
  content: "\ea23";
}
.pi-list-check:before {
  content: "\ea24";
}
.pi-thumbtack:before {
  content: "\ea25";
}
.pi-arrow-down-left-and-arrow-up-right-to-center:before {
  content: "\ea26";
}
.pi-equals:before {
  content: "\ea27";
}
.pi-lightbulb:before {
  content: "\ea28";
}
.pi-star-half:before {
  content: "\ea29";
}
.pi-address-book:before {
  content: "\ea2a";
}
.pi-chart-scatter:before {
  content: "\ea2b";
}
.pi-indian-rupee:before {
  content: "\ea2c";
}
.pi-star-half-fill:before {
  content: "\ea2d";
}
.pi-cart-arrow-down:before {
  content: "\ea2e";
}
.pi-calendar-clock:before {
  content: "\ea2f";
}
.pi-sort-up-fill:before {
  content: "\ea30";
}
.pi-sparkles:before {
  content: "\ea31";
}
.pi-bullseye:before {
  content: "\ea32";
}
.pi-sort-down-fill:before {
  content: "\ea33";
}
.pi-graduation-cap:before {
  content: "\ea34";
}
.pi-hammer:before {
  content: "\ea35";
}
.pi-bell-slash:before {
  content: "\ea36";
}
.pi-gauge:before {
  content: "\ea37";
}
.pi-shop:before {
  content: "\ea38";
}
.pi-headphones:before {
  content: "\ea39";
}
.pi-eraser:before {
  content: "\ea04";
}
.pi-stopwatch:before {
  content: "\ea01";
}
.pi-verified:before {
  content: "\ea02";
}
.pi-delete-left:before {
  content: "\ea03";
}
.pi-hourglass:before {
  content: "\e9fe";
}
.pi-truck:before {
  content: "\ea00";
}
.pi-wrench:before {
  content: "\e9ff";
}
.pi-microphone:before {
  content: "\e9fa";
}
.pi-megaphone:before {
  content: "\e9fb";
}
.pi-arrow-right-arrow-left:before {
  content: "\e9fc";
}
.pi-bitcoin:before {
  content: "\e9fd";
}
.pi-file-edit:before {
  content: "\e9f6";
}
.pi-language:before {
  content: "\e9f7";
}
.pi-file-export:before {
  content: "\e9f8";
}
.pi-file-import:before {
  content: "\e9f9";
}
.pi-file-word:before {
  content: "\e9f1";
}
.pi-gift:before {
  content: "\e9f2";
}
.pi-cart-plus:before {
  content: "\e9f3";
}
.pi-thumbs-down-fill:before {
  content: "\e9f4";
}
.pi-thumbs-up-fill:before {
  content: "\e9f5";
}
.pi-arrows-alt:before {
  content: "\e9f0";
}
.pi-calculator:before {
  content: "\e9ef";
}
.pi-sort-alt-slash:before {
  content: "\e9ee";
}
.pi-arrows-h:before {
  content: "\e9ec";
}
.pi-arrows-v:before {
  content: "\e9ed";
}
.pi-pound:before {
  content: "\e9eb";
}
.pi-prime:before {
  content: "\e9ea";
}
.pi-chart-pie:before {
  content: "\e9e9";
}
.pi-reddit:before {
  content: "\e9e8";
}
.pi-code:before {
  content: "\e9e7";
}
.pi-sync:before {
  content: "\e9e6";
}
.pi-shopping-bag:before {
  content: "\e9e5";
}
.pi-server:before {
  content: "\e9e4";
}
.pi-database:before {
  content: "\e9e3";
}
.pi-hashtag:before {
  content: "\e9e2";
}
.pi-bookmark-fill:before {
  content: "\e9df";
}
.pi-filter-fill:before {
  content: "\e9e0";
}
.pi-heart-fill:before {
  content: "\e9e1";
}
.pi-flag-fill:before {
  content: "\e9de";
}
.pi-circle:before {
  content: "\e9dc";
}
.pi-circle-fill:before {
  content: "\e9dd";
}
.pi-bolt:before {
  content: "\e9db";
}
.pi-history:before {
  content: "\e9da";
}
.pi-box:before {
  content: "\e9d9";
}
.pi-at:before {
  content: "\e9d8";
}
.pi-arrow-up-right:before {
  content: "\e9d4";
}
.pi-arrow-up-left:before {
  content: "\e9d5";
}
.pi-arrow-down-left:before {
  content: "\e9d6";
}
.pi-arrow-down-right:before {
  content: "\e9d7";
}
.pi-telegram:before {
  content: "\e9d3";
}
.pi-stop-circle:before {
  content: "\e9d2";
}
.pi-stop:before {
  content: "\e9d1";
}
.pi-whatsapp:before {
  content: "\e9d0";
}
.pi-building:before {
  content: "\e9cf";
}
.pi-qrcode:before {
  content: "\e9ce";
}
.pi-car:before {
  content: "\e9cd";
}
.pi-instagram:before {
  content: "\e9cc";
}
.pi-linkedin:before {
  content: "\e9cb";
}
.pi-send:before {
  content: "\e9ca";
}
.pi-slack:before {
  content: "\e9c9";
}
.pi-sun:before {
  content: "\e9c8";
}
.pi-moon:before {
  content: "\e9c7";
}
.pi-vimeo:before {
  content: "\e9c6";
}
.pi-youtube:before {
  content: "\e9c5";
}
.pi-flag:before {
  content: "\e9c4";
}
.pi-wallet:before {
  content: "\e9c3";
}
.pi-map:before {
  content: "\e9c2";
}
.pi-link:before {
  content: "\e9c1";
}
.pi-credit-card:before {
  content: "\e9bf";
}
.pi-discord:before {
  content: "\e9c0";
}
.pi-percentage:before {
  content: "\e9be";
}
.pi-euro:before {
  content: "\e9bd";
}
.pi-book:before {
  content: "\e9ba";
}
.pi-shield:before {
  content: "\e9b9";
}
.pi-paypal:before {
  content: "\e9bb";
}
.pi-amazon:before {
  content: "\e9bc";
}
.pi-phone:before {
  content: "\e9b8";
}
.pi-filter-slash:before {
  content: "\e9b7";
}
.pi-facebook:before {
  content: "\e9b4";
}
.pi-github:before {
  content: "\e9b5";
}
.pi-twitter:before {
  content: "\e9b6";
}
.pi-step-backward-alt:before {
  content: "\e9ac";
}
.pi-step-forward-alt:before {
  content: "\e9ad";
}
.pi-forward:before {
  content: "\e9ae";
}
.pi-backward:before {
  content: "\e9af";
}
.pi-fast-backward:before {
  content: "\e9b0";
}
.pi-fast-forward:before {
  content: "\e9b1";
}
.pi-pause:before {
  content: "\e9b2";
}
.pi-play:before {
  content: "\e9b3";
}
.pi-compass:before {
  content: "\e9ab";
}
.pi-id-card:before {
  content: "\e9aa";
}
.pi-ticket:before {
  content: "\e9a9";
}
.pi-file-o:before {
  content: "\e9a8";
}
.pi-reply:before {
  content: "\e9a7";
}
.pi-directions-alt:before {
  content: "\e9a5";
}
.pi-directions:before {
  content: "\e9a6";
}
.pi-thumbs-up:before {
  content: "\e9a3";
}
.pi-thumbs-down:before {
  content: "\e9a4";
}
.pi-sort-numeric-down-alt:before {
  content: "\e996";
}
.pi-sort-numeric-up-alt:before {
  content: "\e997";
}
.pi-sort-alpha-down-alt:before {
  content: "\e998";
}
.pi-sort-alpha-up-alt:before {
  content: "\e999";
}
.pi-sort-numeric-down:before {
  content: "\e99a";
}
.pi-sort-numeric-up:before {
  content: "\e99b";
}
.pi-sort-alpha-down:before {
  content: "\e99c";
}
.pi-sort-alpha-up:before {
  content: "\e99d";
}
.pi-sort-alt:before {
  content: "\e99e";
}
.pi-sort-amount-up:before {
  content: "\e99f";
}
.pi-sort-amount-down:before {
  content: "\e9a0";
}
.pi-sort-amount-down-alt:before {
  content: "\e9a1";
}
.pi-sort-amount-up-alt:before {
  content: "\e9a2";
}
.pi-palette:before {
  content: "\e995";
}
.pi-undo:before {
  content: "\e994";
}
.pi-desktop:before {
  content: "\e993";
}
.pi-sliders-v:before {
  content: "\e991";
}
.pi-sliders-h:before {
  content: "\e992";
}
.pi-search-plus:before {
  content: "\e98f";
}
.pi-search-minus:before {
  content: "\e990";
}
.pi-file-excel:before {
  content: "\e98e";
}
.pi-file-pdf:before {
  content: "\e98d";
}
.pi-check-square:before {
  content: "\e98c";
}
.pi-chart-line:before {
  content: "\e98b";
}
.pi-user-edit:before {
  content: "\e98a";
}
.pi-exclamation-circle:before {
  content: "\e989";
}
.pi-android:before {
  content: "\e985";
}
.pi-google:before {
  content: "\e986";
}
.pi-apple:before {
  content: "\e987";
}
.pi-microsoft:before {
  content: "\e988";
}
.pi-heart:before {
  content: "\e984";
}
.pi-mobile:before {
  content: "\e982";
}
.pi-tablet:before {
  content: "\e983";
}
.pi-key:before {
  content: "\e981";
}
.pi-shopping-cart:before {
  content: "\e980";
}
.pi-comments:before {
  content: "\e97e";
}
.pi-comment:before {
  content: "\e97f";
}
.pi-briefcase:before {
  content: "\e97d";
}
.pi-bell:before {
  content: "\e97c";
}
.pi-paperclip:before {
  content: "\e97b";
}
.pi-share-alt:before {
  content: "\e97a";
}
.pi-envelope:before {
  content: "\e979";
}
.pi-volume-down:before {
  content: "\e976";
}
.pi-volume-up:before {
  content: "\e977";
}
.pi-volume-off:before {
  content: "\e978";
}
.pi-eject:before {
  content: "\e975";
}
.pi-money-bill:before {
  content: "\e974";
}
.pi-images:before {
  content: "\e973";
}
.pi-image:before {
  content: "\e972";
}
.pi-sign-in:before {
  content: "\e970";
}
.pi-sign-out:before {
  content: "\e971";
}
.pi-wifi:before {
  content: "\e96f";
}
.pi-sitemap:before {
  content: "\e96e";
}
.pi-chart-bar:before {
  content: "\e96d";
}
.pi-camera:before {
  content: "\e96c";
}
.pi-dollar:before {
  content: "\e96b";
}
.pi-lock-open:before {
  content: "\e96a";
}
.pi-table:before {
  content: "\e969";
}
.pi-map-marker:before {
  content: "\e968";
}
.pi-list:before {
  content: "\e967";
}
.pi-eye-slash:before {
  content: "\e965";
}
.pi-eye:before {
  content: "\e966";
}
.pi-folder-open:before {
  content: "\e964";
}
.pi-folder:before {
  content: "\e963";
}
.pi-video:before {
  content: "\e962";
}
.pi-inbox:before {
  content: "\e961";
}
.pi-lock:before {
  content: "\e95f";
}
.pi-unlock:before {
  content: "\e960";
}
.pi-tags:before {
  content: "\e95d";
}
.pi-tag:before {
  content: "\e95e";
}
.pi-power-off:before {
  content: "\e95c";
}
.pi-save:before {
  content: "\e95b";
}
.pi-question-circle:before {
  content: "\e959";
}
.pi-question:before {
  content: "\e95a";
}
.pi-copy:before {
  content: "\e957";
}
.pi-file:before {
  content: "\e958";
}
.pi-clone:before {
  content: "\e955";
}
.pi-calendar-times:before {
  content: "\e952";
}
.pi-calendar-minus:before {
  content: "\e953";
}
.pi-calendar-plus:before {
  content: "\e954";
}
.pi-ellipsis-v:before {
  content: "\e950";
}
.pi-ellipsis-h:before {
  content: "\e951";
}
.pi-bookmark:before {
  content: "\e94e";
}
.pi-globe:before {
  content: "\e94f";
}
.pi-replay:before {
  content: "\e94d";
}
.pi-filter:before {
  content: "\e94c";
}
.pi-print:before {
  content: "\e94b";
}
.pi-align-right:before {
  content: "\e946";
}
.pi-align-left:before {
  content: "\e947";
}
.pi-align-center:before {
  content: "\e948";
}
.pi-align-justify:before {
  content: "\e949";
}
.pi-cog:before {
  content: "\e94a";
}
.pi-cloud-download:before {
  content: "\e943";
}
.pi-cloud-upload:before {
  content: "\e944";
}
.pi-cloud:before {
  content: "\e945";
}
.pi-pencil:before {
  content: "\e942";
}
.pi-users:before {
  content: "\e941";
}
.pi-clock:before {
  content: "\e940";
}
.pi-user-minus:before {
  content: "\e93e";
}
.pi-user-plus:before {
  content: "\e93f";
}
.pi-trash:before {
  content: "\e93d";
}
.pi-external-link:before {
  content: "\e93c";
}
.pi-window-maximize:before {
  content: "\e93b";
}
.pi-window-minimize:before {
  content: "\e93a";
}
.pi-refresh:before {
  content: "\e938";
}
.pi-user:before {
  content: "\e939";
}
.pi-exclamation-triangle:before {
  content: "\e922";
}
.pi-calendar:before {
  content: "\e927";
}
.pi-chevron-circle-left:before {
  content: "\e928";
}
.pi-chevron-circle-down:before {
  content: "\e929";
}
.pi-chevron-circle-right:before {
  content: "\e92a";
}
.pi-chevron-circle-up:before {
  content: "\e92b";
}
.pi-angle-double-down:before {
  content: "\e92c";
}
.pi-angle-double-left:before {
  content: "\e92d";
}
.pi-angle-double-right:before {
  content: "\e92e";
}
.pi-angle-double-up:before {
  content: "\e92f";
}
.pi-angle-down:before {
  content: "\e930";
}
.pi-angle-left:before {
  content: "\e931";
}
.pi-angle-right:before {
  content: "\e932";
}
.pi-angle-up:before {
  content: "\e933";
}
.pi-upload:before {
  content: "\e934";
}
.pi-download:before {
  content: "\e956";
}
.pi-ban:before {
  content: "\e935";
}
.pi-star-fill:before {
  content: "\e936";
}
.pi-star:before {
  content: "\e937";
}
.pi-chevron-left:before {
  content: "\e900";
}
.pi-chevron-right:before {
  content: "\e901";
}
.pi-chevron-down:before {
  content: "\e902";
}
.pi-chevron-up:before {
  content: "\e903";
}
.pi-caret-left:before {
  content: "\e904";
}
.pi-caret-right:before {
  content: "\e905";
}
.pi-caret-down:before {
  content: "\e906";
}
.pi-caret-up:before {
  content: "\e907";
}
.pi-search:before {
  content: "\e908";
}
.pi-check:before {
  content: "\e909";
}
.pi-check-circle:before {
  content: "\e90a";
}
.pi-times:before {
  content: "\e90b";
}
.pi-times-circle:before {
  content: "\e90c";
}
.pi-plus:before {
  content: "\e90d";
}
.pi-plus-circle:before {
  content: "\e90e";
}
.pi-minus:before {
  content: "\e90f";
}
.pi-minus-circle:before {
  content: "\e910";
}
.pi-circle-on:before {
  content: "\e911";
}
.pi-circle-off:before {
  content: "\e912";
}
.pi-sort-down:before {
  content: "\e913";
}
.pi-sort-up:before {
  content: "\e914";
}
.pi-sort:before {
  content: "\e915";
}
.pi-step-backward:before {
  content: "\e916";
}
.pi-step-forward:before {
  content: "\e917";
}
.pi-th-large:before {
  content: "\e918";
}
.pi-arrow-down:before {
  content: "\e919";
}
.pi-arrow-left:before {
  content: "\e91a";
}
.pi-arrow-right:before {
  content: "\e91b";
}
.pi-arrow-up:before {
  content: "\e91c";
}
.pi-bars:before {
  content: "\e91d";
}
.pi-arrow-circle-down:before {
  content: "\e91e";
}
.pi-arrow-circle-left:before {
  content: "\e91f";
}
.pi-arrow-circle-right:before {
  content: "\e920";
}
.pi-arrow-circle-up:before {
  content: "\e921";
}
.pi-info:before {
  content: "\e923";
}
.pi-info-circle:before {
  content: "\e924";
}
.pi-home:before {
  content: "\e925";
}
.pi-spinner:before {
  content: "\e926";
}

/* projects/riterz-public/src/styles.css */
p-dynamicdialog .p-dialog-header {
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 700;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
p-dynamicdialog .p-dialog-content {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
p-inputnumber,
.p-inputnumber,
.p-inputnumber-input {
  max-width: 100%;
  width: 100%;
}
p-checkbox .p-checkbox {
  vertical-align: middle;
}
p-autoComplete .p-autocomplete-multiple-container {
  width: 100%;
}
.p-dialog.rt-auth-modal {
  border: none;
}
.p-tabpanels {
  padding: 20px 0 0 !important;
}
.field {
  padding-bottom: 8px;
}
.field label {
  display: inline-block;
  margin-bottom: 4px;
}
.field .p-error {
  margin: 6px;
}
.field .error-message {
  margin: 6px;
  color: var(--error-color);
  font-size: .9rem;
}
.p-button.p-button-rounded {
  padding: 9px 15px;
}
.p-button.p-button-rounded .p-button-label {
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.p-selectbutton {
  background-color: var(--gray-05-color);
}
.p-selectbutton .p-togglebutton {
  background-color: var(--gray-05-color);
  padding: 8px 8px;
}
.p-selectbutton .p-togglebutton.p-togglebutton-checked {
  background-color: #fff;
}
.rt-profile-header {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}
.rt-profile-header .rt-profile-header-image {
  flex: 0 0 80px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.rt-profile-header .rt-profile-header-info {
  flex: 1 1 auto;
}
.rt-profile-header .rt-profile-header-info .rt-profile-header-info-top {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.rt-profile-header .rt-profile-header-info .rt-profile-header-info-top h1 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 28px;
}
.rt-profile-header .rt-profile-header-info .rt-profile-header-info-top .rt-profile-unverified {
  display: inline-flex;
  padding: 4px 10px 4px 8px;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid var(--text-color);
  font-family: var(--heading-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.rt-profile-header .rt-profile-header-info .rt-profile-header-info-top .rt-profile-verified {
  display: inline-flex;
  padding: 4px 10px 4px 8px;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  border: 1px solid var(--secondary-color);
  background-color: #FFF;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
.rt-profile-header .rt-profile-header-info .rt-profile-header-info-top a {
  color: var(--text-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-decoration-line: underline;
  cursor: pointer;
}
.rt-profile-header .rt-profile-header-info .rt-profile-info {
  font-size: 16px;
  line-height: 28px;
}
.rt-profile-header .rt-profile-header-info .rt-profile-info span + span {
  margin-left: 4px;
}
.rt-profile-header .rt-profile-header-info .rt-profile-info span + span:before {
  content: "\b7";
  margin-right: 4px;
}
.rt-profile-header .rt-profile-header-info .rt-profile-last-updated {
  font-size: 16px;
  font-style: italic;
  line-height: 28px;
}
.rt-profile-header .rt-profile-header-actions {
  flex: 0 0 80px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.rt-sub-navigation {
  display: flex;
  justify-content: space-between;
  border-radius: 32px;
  background: #ffffff;
  margin-bottom: 24px;
}
.rt-sub-navigation ul {
  display: flex;
  margin: 0;
  padding: 12px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  list-style: none;
}
.rt-sub-navigation ul:first-child {
  overflow: auto;
}
.rt-sub-navigation ul li.disabled a {
  color: var(--secondary-lighter-color);
  pointer-events: none;
}
.rt-sub-navigation ul li a {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 19px;
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.rt-sub-navigation ul li a.active {
  color: #ffffff;
  background: var(--secondary-color);
}
.rt-sub-navigation ul li .lightning {
  margin-top: 1px;
  margin-left: -4px;
  border-radius: 9px;
  border: 0.5px solid var(--warn-color);
  background: rgba(255, 209, 128, 0.25);
}
.rt-sub-sub-navigation {
  margin-bottom: 24px;
}
.rt-sub-sub-navigation ul {
  display: flex;
  margin: 0;
  padding: 0 0 0 12px;
  align-items: center;
  align-self: stretch;
  list-style: none;
}
.rt-sub-sub-navigation ul li a {
  position: relative;
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  font-family: var(--heading-font);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.rt-sub-sub-navigation ul li a::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: var(--transition);
}
.rt-sub-sub-navigation ul li a.active {
  color: var(--secondary-color);
}
.rt-sub-sub-navigation ul li a.active::after {
  background: var(--secondary-color);
}
.rt-panel p {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.rt-panel .rt-view-all {
  display: inline-block;
  margin-top: 12px;
  color: var(--text-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration-line: underline;
  cursor: pointer;
}
.rt-panel .sponsorship-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  border: 0.583px solid var(--warn-color);
  background: rgba(255, 209, 128, 0.25);
}
.rt-panel .sponsorship-icon svg {
  margin: -1px;
}
.rt-panel.topics {
  background: var(--secondary-color);
  background-image: url("./media/topics-background.svg");
  background-repeat: no-repeat;
  background-position: right -74px center;
  color: #ffffff;
}
.rt-panel.topics .rt-panel-title,
.rt-panel.topics .rt-view-all,
.rt-panel.topics p {
  color: #ffffff;
}
.rt-panel.topics .rt-pills .rt-pill {
  background: #FCDEF0;
  overflow: hidden;
  color: #ffffff;
  background: rgba(252, 222, 240, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.rt-panel.topics-alt {
  background: var(--quaternary-color);
  background-image: url("./media/topics-background.svg");
  background-repeat: no-repeat;
  background-position: right -74px center;
  color: #ffffff;
}
.rt-panel.topics-alt .rt-panel-title,
.rt-panel.topics-alt .rt-view-all,
.rt-panel.topics-alt p {
  color: #ffffff;
}
.rt-panel.topics-alt .rt-pills .rt-pill {
  background: #FCDEF0;
  overflow: hidden;
  color: #ffffff;
  background: rgba(252, 222, 240, 0.25);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.rt-panel.sponsor {
  position: relative;
  background: var(--secondary-color);
  color: #ffffff;
  padding: 40px;
  text-align: center;
}
.rt-panel.sponsor::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: url("./media/sponsorship-banner.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
.rt-panel.sponsor h2,
.rt-panel.sponsor p {
  position: relative;
  color: #ffffff;
}
.rt-panel.sponsor h2 {
  margin-bottom: 4px;
  font-family: var(--heading-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}
.rt-metrics {
  display: flex;
  justify-content: space-between;
}
.rt-metrics .rt-metric .rt-direction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  border-radius: 15px;
}
.rt-metrics .rt-metric .rt-direction.up {
  background: rgba(156, 227, 184, 0.30);
}
.rt-metrics .rt-metric .rt-direction.down {
  background: rgba(255, 135, 128, 0.30);
}
.rt-metrics .rt-metric .rt-direction svg {
  display: block;
}
.rt-metrics .rt-metric .rt-metric-value {
  color: var(--secondary-color);
  text-align: right;
  font-family: var(--heading-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
}
.rt-metrics .rt-metric .rt-metric-label {
  font-family: var(--heading-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  text-transform: capitalize;
}
.rt-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-height: 66px;
  overflow: hidden;
}
.rt-pills.all {
  max-height: none;
}
.rt-pills.one-row {
  max-height: 33px;
}
.rt-pills.two-row {
  max-height: 66px;
}
.rt-pills.six-row {
  max-height: 198px;
}
.rt-pills .rt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 14px;
  background: #FCDEF0;
  overflow: hidden;
  color: var(--secondary-color);
  text-align: center;
  text-overflow: ellipsis;
  font-family: var(--heading-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.rt-pills .rt-pill.gray {
  background: var(--gray-05-color);
}
.rt-pills .rt-pill.filter {
  padding: 4px 8px;
  border: 1px solid var(--secondary-lighter-color);
  background: var(--gray-05-color);
  font-size: 11px !important;
  line-height: 12px;
  cursor: pointer;
}
.rt-pill-2 {
  height: 22px;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--secondary-lighter-color);
  color: #200B39;
  text-align: center;
  font-family: var(--heading-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}
.rt-pill-2.active {
  background: var(--primary-color);
  color: #ffffff;
}
.rt-report-channel {
  text-align: center;
}
.rt-report-channel .logo {
  margin: 24px;
}
.rt-report-channel .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  color: var(--secondary-color);
}
.rt-report-channel .link a {
  font-family: var(--heading-font);
  font-weight: 700;
  text-decoration: underline;
}
.rt-report-channel .followers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.rt-pv-offer {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-22-color);
  background: #ffffff;
}
.rt-pv-offer .rt-pv-offer-group {
  position: absolute;
  top: 48px;
  left: 48px;
  display: inline-flex;
  padding: 8px 16px;
  text-align: center;
  font-family: var(--heading-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.12);
}
.rt-pv-offer figure {
  margin: 0 0 24px;
  border-radius: 16px;
  overflow: hidden;
}
.rt-pv-offer figure img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.rt-pv-offer h2 {
  margin: 0 0 8px;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.rt-pv-offer .rt-pv-offer-dates {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: capitalize;
}
.rt-pv-offer h3 {
  margin: 24px 0;
  color: var(--secondary-color);
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
