/* PriceScope readable scrolling layout. */
:root {
  --gpr2-text: #1f2b42;
  --gpr2-muted: #748099;
  --gpr2-faint: #98a3b8;
  --gpr2-line: rgba(255, 255, 255, .58);
  --gpr2-line-soft: rgba(102, 124, 164, .13);
  --gpr2-glass: rgba(255, 255, 255, .48);
  --gpr2-glass-deep: rgba(255, 255, 255, .64);
  --gpr2-purple: #6872f6;
  --gpr2-purple-dark: #515bd7;
  --gpr2-blue: #6da9f7;
  --gpr2-shadow: 0 16px 45px rgba(72, 95, 145, .15);
  --gpr2-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --gpr2-numbers: "Inter", "Noto Sans SC", ui-sans-serif, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #edf2ff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.gpr-v2 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--gpr2-text);
  background:
    radial-gradient(72% 62% at 7% 2%, rgba(205, 211, 255, .88) 0%, rgba(226, 232, 255, .52) 48%, transparent 74%),
    radial-gradient(58% 72% at 98% 4%, rgba(182, 229, 255, .84) 0%, rgba(220, 242, 255, .46) 55%, transparent 78%),
    radial-gradient(44% 58% at 55% 100%, rgba(226, 212, 255, .72) 0%, transparent 78%),
    linear-gradient(140deg, #edf0ff 0%, #ecf8ff 48%, #f2efff 100%);
  font-family: var(--gpr2-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.gpr-v2::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(24px) saturate(1.12);
  content: "";
  pointer-events: none;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.gpr2-glass {
  background: var(--gpr2-glass);
  border: 1px solid var(--gpr2-line);
  box-shadow: var(--gpr2-shadow), inset 0 1px 0 rgba(255, 255, 255, .58);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.gpr2-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: #34415d;
  border-radius: 10px;
  transform: translateY(-150%);
}

.gpr2-skip:focus {
  transform: translateY(0);
}

.gpr2-app {
  display: grid;
  width: min(100%, 1800px);
  max-width: 100%;
  min-height: 100vh;
  grid-template-rows: 74px auto;
  gap: 16px;
  margin: 0 auto;
  padding: 18px;
}

.gpr2-topbar {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(510px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 0 18px 0 22px;
  border-radius: 20px;
}

.gpr2-brand-wrap {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.gpr2-logo {
  display: flex;
  align-items: baseline;
  gap: 13px;
  width: fit-content;
}

.gpr2-logo > span {
  font-family: var(--gpr2-numbers);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.045em;
}

.gpr2-logo > small {
  position: relative;
  padding-left: 13px;
  color: var(--gpr2-muted);
  font-size: 14px;
  font-weight: 600;
}

.gpr2-home-link {
  display: inline-flex;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #56617a;
  background: rgba(255, 255, 255, .46);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .66),
    0 7px 18px rgba(76, 89, 128, .09);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.gpr2-home-link:hover {
  color: #fff;
  background: rgba(91, 101, 226, .88);
  border-color: rgba(255, 255, 255, .55);
  transform: translateY(-1px);
}

.gpr2-logo > small::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 14px;
  background: rgba(89, 107, 143, .22);
  content: "";
  transform: translateY(-50%);
}

.gpr2-topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #718096;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.gpr2-live-dot {
  width: 7px;
  height: 7px;
  background: #30bf80;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(48, 191, 128, .12);
}

.gpr2-top-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.gpr2-admin-link {
  display: inline-flex;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(100, 111, 239, .9), rgba(94, 160, 238, .88));
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(84, 101, 201, .18), inset 0 1px 0 rgba(255, 255, 255, .3);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gpr2-admin-link:hover {
  box-shadow: 0 11px 24px rgba(84, 101, 201, .25), inset 0 1px 0 rgba(255, 255, 255, .3);
  transform: translateY(-1px);
}

.gpr2-search,
.gpr2-select {
  position: relative;
  display: block;
}

.gpr2-search > span,
.gpr2-select > span {
  position: absolute;
  top: 6px;
  left: 13px;
  z-index: 1;
  color: #929db1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  pointer-events: none;
}

.gpr2-search input,
.gpr2-select select {
  height: 44px;
  padding: 15px 32px 3px 13px;
  outline: none;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .48);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gpr2-search input {
  width: 174px;
  padding-right: 12px;
}

.gpr2-select select {
  min-width: 118px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7c879d 50%),
    linear-gradient(135deg, #7c879d 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 23px,
    calc(100% - 11px) 23px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
}

.gpr2-currency select {
  min-width: 132px;
  color: #fff;
  background-color: rgba(91, 101, 226, .9);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .86) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, .86) 50%, transparent 50%);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 8px 20px rgba(85, 95, 215, .23);
}

.gpr2-currency > span {
  color: rgba(255, 255, 255, .68);
}

.gpr2-search input:focus,
.gpr2-select select:focus {
  background-color: rgba(255, 255, 255, .8);
  border-color: rgba(104, 114, 246, .5);
  box-shadow: 0 0 0 3px rgba(104, 114, 246, .11);
}

.gpr2-currency select:focus {
  color: #fff;
  background-color: rgba(81, 91, 215, .96);
}

.gpr2-workspace {
  display: grid;
  min-height: 0;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.gpr2-services {
  position: sticky;
  top: 18px;
  display: flex;
  min-height: calc(100vh - 126px);
  flex-direction: column;
  padding: 18px 13px 14px;
  border-radius: 20px;
}

.gpr2-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 9px 12px;
  color: var(--gpr2-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.gpr2-side-head small {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #5e68d9;
  background: rgba(104, 114, 246, .1);
  border-radius: 7px;
  font-family: var(--gpr2-numbers);
  font-size: 12px;
}

.gpr2-service-list {
  display: grid;
  gap: 9px;
}

.gpr2-service-list button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 10px 13px;
  overflow: hidden;
  color: #58647b;
  background: rgba(255, 255, 255, .18);
  border: 1px solid transparent;
  border-radius: 14px;
  text-align: left;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.gpr2-service-list button::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
  content: "";
  opacity: 0;
}

.gpr2-service-list button:hover {
  background: rgba(255, 255, 255, .48);
  transform: translateX(2px);
}

.gpr2-service-list button.is-active {
  color: var(--gpr2-text);
  background: rgba(255, 255, 255, .7);
  border-color: rgba(255, 255, 255, .82);
  box-shadow: 0 9px 24px rgba(70, 90, 135, .1);
}

.gpr2-service-list button.is-active::before {
  opacity: 1;
}

.gpr2-service-list b,
.gpr2-service-list small {
  display: block;
}

.gpr2-service-list b {
  font-family: var(--gpr2-numbers);
  font-size: 16px;
  font-weight: 700;
}

.gpr2-service-list small {
  margin-top: 3px;
  color: #96a0b4;
  font-size: 11px;
  font-weight: 500;
}

.gpr2-service-list em {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #7c86a0;
  background: rgba(225, 230, 244, .64);
  border-radius: 8px;
  font-family: var(--gpr2-numbers);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.gpr2-side-note {
  margin-top: auto;
  padding: 14px 10px 4px;
  border-top: 1px solid rgba(101, 121, 158, .12);
}

.gpr2-side-note > span {
  color: #6f7b92;
  font-size: 12px;
  font-weight: 700;
}

.gpr2-side-note p {
  margin: 7px 0 11px;
  color: #8e99ad;
  font-size: 11px;
  line-height: 1.65;
}

.gpr2-side-note a {
  color: #626cdd;
  font-size: 12px;
  font-weight: 700;
}

.gpr2-panel {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: auto auto auto auto;
  padding: 0 24px 20px;
  overflow: visible;
  border-radius: 20px;
}

.gpr2-panel-head {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--gpr2-line-soft);
}

.gpr2-overline {
  margin: 0 0 4px;
  color: #737deb;
  font-family: var(--gpr2-numbers);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
}

.gpr2-title-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.gpr2-title-line h1 {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 700;
  letter-spacing: -.045em;
}

.gpr2-title-line > span {
  padding: 4px 8px;
  color: #6e7890;
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 7px;
  font-family: var(--gpr2-numbers);
  font-size: 11px;
  font-weight: 600;
}

.gpr2-source-link {
  padding: 9px 13px;
  color: #5964d8;
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.gpr2-source-link:hover {
  background: rgba(255, 255, 255, .82);
  transform: translateY(-1px);
}

.gpr2-plan-bar {
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--gpr2-line-soft);
}

.gpr2-plan-bar > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.gpr2-filter-label {
  color: #7e899f;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.gpr2-plan-list {
  display: flex;
  min-width: 0;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gpr2-plan-list::-webkit-scrollbar {
  display: none;
}

.gpr2-plan-list button {
  min-width: 62px;
  height: 42px;
  padding: 0 13px;
  color: #6f7a91;
  background: rgba(255, 255, 255, .3);
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 10px;
  font-family: var(--gpr2-numbers);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.gpr2-plan-list button:hover {
  background: rgba(255, 255, 255, .62);
}

.gpr2-plan-list button.is-active {
  color: #fff;
  background: linear-gradient(115deg, rgba(112, 121, 246, .94), rgba(103, 153, 242, .92));
  border-color: rgba(255, 255, 255, .55);
  box-shadow: 0 8px 18px rgba(93, 105, 222, .22);
}

.gpr2-plan-bar > p {
  max-width: 390px;
  margin: 0;
  overflow: hidden;
  color: #8994a9;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gpr2-insights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gpr2-line-soft);
}

.gpr2-insights article {
  min-width: 0;
  min-height: 84px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .32);
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
}

.gpr2-insights span,
.gpr2-insights strong,
.gpr2-insights small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gpr2-insights span {
  color: #8994aa;
  font-size: 11px;
  font-weight: 650;
}

.gpr2-insights strong {
  margin-top: 3px;
  color: #313c57;
  font-family: var(--gpr2-numbers);
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -.025em;
}

.gpr2-insights article:first-child strong {
  color: #5863d7;
}

.gpr2-insights small {
  margin-top: 2px;
  color: #a0a9ba;
  font-size: 10px;
}

.gpr2-table-region {
  position: relative;
  min-height: 0;
  overflow: auto;
  scrollbar-color: rgba(101, 113, 151, .2) transparent;
  scrollbar-width: thin;
}

.gpr2-table-region::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.gpr2-table-region::-webkit-scrollbar-thumb {
  background: rgba(101, 113, 151, .2);
  border-radius: 99px;
}

.gpr2-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.gpr2-table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.gpr2-table th {
  height: 48px;
  padding: 0 10px 0 0;
  color: #8994a9;
  background: rgba(241, 246, 255, .82);
  border-bottom: 1px solid rgba(103, 123, 160, .13);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.gpr2-table th:nth-child(1) { width: 5%; }
.gpr2-table th:nth-child(2) { width: 17%; }
.gpr2-table th:nth-child(3) { width: 14%; }
.gpr2-table th:nth-child(4) { width: 14%; }
.gpr2-table th:nth-child(5) { width: 15%; }
.gpr2-table th:nth-child(6) { width: 11%; }
.gpr2-table th:nth-child(7) { width: 10%; }
.gpr2-table th:nth-child(8) { width: 14%; }

.gpr2-table td {
  height: 74px;
  padding: 9px 10px 9px 0;
  border-bottom: 1px solid rgba(105, 126, 162, .09);
  font-size: 13px;
  vertical-align: middle;
}

.gpr2-table tbody tr {
  transition: background .18s ease;
}

.gpr2-table tbody tr:hover {
  background: rgba(255, 255, 255, .38);
}

.gpr2-rank {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #8d97aa;
  border: 1px solid rgba(109, 127, 162, .16);
  border-radius: 9px;
  font-family: var(--gpr2-numbers);
  font-size: 11px;
  font-weight: 650;
}

.gpr2-rank.is-top {
  color: #5661d4;
  background: rgba(104, 114, 246, .1);
  border-color: rgba(104, 114, 246, .17);
}

.gpr2-country {
  display: flex;
  align-items: center;
  gap: 11px;
}

.gpr2-country .fi {
  width: 35px;
  height: 25px;
  flex: 0 0 auto;
  background-size: cover;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 7px;
  box-shadow: 0 5px 12px rgba(58, 76, 111, .12);
}

.gpr2-country b,
.gpr2-country small {
  display: block;
}

.gpr2-country b {
  font-size: 15px;
  font-weight: 650;
}

.gpr2-country small {
  margin-top: 3px;
  color: #98a2b4;
  font-family: var(--gpr2-numbers);
  font-size: 10px;
  font-weight: 600;
}

.gpr2-local,
.gpr2-converted {
  display: block;
  font-family: var(--gpr2-numbers);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.gpr2-net {
  color: #3d4862;
}

.gpr2-net.is-unknown {
  color: #a0a9ba;
  font-size: 13px;
  font-weight: 600;
}

.gpr2-converted {
  color: #5360d4;
  font-size: 18px;
}

.gpr2-table td:nth-child(5) > small {
  display: block;
  margin-top: 2px;
  color: #a0a9ba;
  font-family: var(--gpr2-numbers);
  font-size: 10px;
}

.gpr2-note {
  display: block;
  max-width: 160px;
  margin-top: 3px;
  overflow: hidden;
  color: #a1aabd;
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.gpr2-meter {
  display: block;
  width: min(100%, 105px);
  height: 5px;
  overflow: hidden;
  background: rgba(120, 137, 169, .11);
  border-radius: 99px;
}

.gpr2-meter i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #70b8ed, #8c7cf0);
  border-radius: inherit;
}

.gpr2-channel {
  display: inline-flex;
  min-width: 62px;
  height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.gpr2-channel.is-official {
  color: #477c73;
  background: rgba(92, 196, 168, .1);
  border-color: rgba(92, 196, 168, .15);
}

.gpr2-channel.is-apple {
  color: #667084;
  background: rgba(112, 125, 151, .09);
  border-color: rgba(112, 125, 151, .13);
}

.gpr2-channel.is-google {
  color: #756a45;
  background: rgba(211, 171, 73, .1);
  border-color: rgba(211, 171, 73, .15);
}

.gpr2-row-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7f8a9f;
  font-family: var(--gpr2-numbers);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.gpr2-row-source span {
  color: #6671e0;
}

.gpr2-row-source:hover {
  color: #5964d8;
}

.gpr2-empty {
  padding: 72px 20px;
  text-align: center;
}

.gpr2-empty[hidden] {
  display: none;
}

.gpr2-empty strong {
  font-size: 18px;
}

.gpr2-empty p {
  margin: 6px 0 0;
  color: var(--gpr2-muted);
  font-size: 14px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(91, 101, 226, .24);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .gpr2-topbar {
    grid-template-columns: auto 1fr;
  }

  .gpr2-topbar-status {
    display: none;
  }

  .gpr2-top-actions {
    min-width: 0;
  }

  .gpr2-search input {
    width: 145px;
  }

  .gpr2-plan-bar > p {
    max-width: 260px;
  }

  .gpr2-table {
    min-width: 980px;
  }
}

@media (max-width: 820px) {
  body.gpr-v2 {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.gpr-v2::before,
  .gpr2-glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .gpr2-app {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 10px;
  }

  .gpr2-topbar {
    display: flex;
    min-height: 64px;
    align-items: center;
    flex-wrap: wrap;
    padding: 11px;
    border-radius: 17px;
  }

  .gpr2-brand-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .gpr2-logo {
    width: auto;
    padding: 0 5px 5px;
  }

  .gpr2-top-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gpr2-search,
  .gpr2-select,
  .gpr2-admin-link {
    min-width: 0;
  }

  .gpr2-search {
    grid-column: 1 / -1;
  }

  .gpr2-search input,
  .gpr2-select select {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .gpr2-admin-link {
    width: 100%;
  }

  .gpr2-workspace {
    display: block;
    margin-top: 10px;
  }

  .gpr2-services {
    position: static;
    min-height: 0;
    padding: 10px;
    border-radius: 17px;
  }

  .gpr2-side-head,
  .gpr2-side-note {
    display: none;
  }

  .gpr2-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
  }

  .gpr2-service-list button {
    min-width: 0;
    min-height: 52px;
  }

  .gpr2-panel {
    min-height: 720px;
    margin-top: 10px;
    padding: 0 13px 14px;
    border-radius: 17px;
  }

  .gpr2-plan-bar {
    display: block;
    padding: 12px 0 10px;
  }

  .gpr2-plan-bar > div {
    display: block;
  }

  .gpr2-plan-list {
    flex-wrap: wrap;
    overflow: visible;
  }

  .gpr2-plan-list button {
    min-width: 0;
    flex: 1 1 120px;
    white-space: normal;
  }

  .gpr2-filter-label {
    display: block;
    margin-bottom: 7px;
  }

  .gpr2-plan-bar > p {
    max-width: none;
    margin-top: 8px;
    text-align: left;
  }

  .gpr2-insights {
    grid-template-columns: repeat(2, 1fr);
  }

  .gpr2-table-region {
    max-height: none;
    overflow: visible;
  }

  .gpr2-logo > small {
    font-size: 12px;
  }

  .gpr2-panel-head {
    display: block;
    min-height: 0;
    padding: 18px 0;
  }

  .gpr2-title-line h1 {
    max-width: 100%;
    font-size: clamp(27px, 8vw, 32px);
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .gpr2-title-line > span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .gpr2-source-link {
    display: inline-flex;
    max-width: 100%;
    margin-top: 14px;
    padding: 8px 10px;
    font-size: 11px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .gpr2-table,
  .gpr2-table tbody,
  .gpr2-table tr,
  .gpr2-table td {
    display: block;
    width: 100%;
  }

  .gpr2-table {
    min-width: 0;
  }

  .gpr2-table thead {
    display: none;
  }

  .gpr2-table tr {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0 10px;
    margin: 9px 0;
    padding: 13px;
    background: rgba(255, 255, 255, .37);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 14px;
  }

  .gpr2-table td {
    height: auto;
    padding: 0;
    border: 0;
  }

  .gpr2-table td:nth-child(1) { grid-row: 1 / 7; grid-column: 1; }
  .gpr2-table td:nth-child(2) { grid-row: 1; grid-column: 2; }
  .gpr2-table td:nth-child(3) { grid-row: 2; grid-column: 2; margin-top: 10px; }
  .gpr2-table td:nth-child(4) { grid-row: 3; grid-column: 2; margin-top: 8px; }
  .gpr2-table td:nth-child(5) {
    grid-row: 4;
    grid-column: 2;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(105, 126, 162, .1);
  }
  .gpr2-table td:nth-child(6) { display: none; }
  .gpr2-table td:nth-child(7) { grid-row: 5; grid-column: 2; margin-top: 12px; }
  .gpr2-table td:nth-child(8) { grid-row: 6; grid-column: 2; margin-top: 8px; text-align: left; }

  .gpr2-table td:nth-child(3),
  .gpr2-table td:nth-child(4),
  .gpr2-table td:nth-child(5) {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    column-gap: 8px;
  }

  .gpr2-table td:nth-child(3)::before,
  .gpr2-table td:nth-child(4)::before,
  .gpr2-table td:nth-child(5)::before {
    grid-row: 1 / span 2;
    grid-column: 1;
    color: #8f99ad;
    content: attr(data-label);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.6;
  }

  .gpr2-table td:nth-child(3) > *,
  .gpr2-table td:nth-child(4) > *,
  .gpr2-table td:nth-child(5) > * {
    min-width: 0;
    grid-column: 2;
  }

  .gpr2-country .fi {
    width: 31px;
    height: 22px;
  }

  .gpr2-country,
  .gpr2-country > span:last-child {
    min-width: 0;
  }

  .gpr2-country b,
  .gpr2-country small,
  .gpr2-local,
  .gpr2-converted {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .gpr2-local {
    color: #707b91;
    font-size: 13px;
  }

  .gpr2-note {
    max-width: none;
    overflow: visible;
    line-height: 1.45;
    overflow-wrap: anywhere;
    white-space: normal;
    text-overflow: clip;
  }

  .gpr2-row-source {
    max-width: 100%;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .gpr2-brand-wrap {
    gap: 8px;
  }

  .gpr2-logo {
    min-width: 0;
  }

  .gpr2-logo > span {
    font-size: 22px;
  }

  .gpr2-logo > small {
    display: none;
  }

  .gpr2-home-link {
    height: 36px;
    padding: 0 13px;
    font-size: 13px;
  }

  .gpr2-top-actions {
    gap: 7px;
  }

  .gpr2-panel {
    padding-right: 10px;
    padding-left: 10px;
  }

  .gpr2-insights {
    gap: 7px;
  }

  .gpr2-insights article {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
