.tt-mobile-reports {
  display: none;
}

@media (max-width: 1199.98px) {
  .tt-mobile-reports {
    --tt-reports-gutter: 20px;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 42px var(--tt-reports-gutter) 72px;
    overflow: hidden;
    box-sizing: border-box;
    background: #3b3b3b;
    color: #dcdcdc;
    isolation: isolate;
  }

  .tt-mobile-reports::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(90deg, transparent calc(50% - 5.5px), rgba(220, 220, 220, .075) calc(50% - 5.5px), rgba(220, 220, 220, .075) calc(50% - 4.5px), transparent calc(50% - 4.5px)),
      linear-gradient(90deg, transparent calc(50% + 4.5px), rgba(220, 220, 220, .075) calc(50% + 4.5px), rgba(220, 220, 220, .075) calc(50% + 5.5px), transparent calc(50% + 5.5px));
  }

  .tt-mobile-reports > * {
    position: relative;
    z-index: 1;
  }

  .tt-mobile-reports__title {
    --tt-reports-heading-gap: 34px;
    --tt-reports-divider-offset: -17px;
    position: relative;
    margin: 0 0 var(--tt-reports-heading-gap);
    color: #dcdcdc;
    font-family: "Space Mono", monospace;
    font-size: clamp(40px, calc(4.7619vw + 22.8571px), 80px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.055em;
    text-transform: uppercase;
  }

  .tt-mobile-reports__title::after {
    content: "";
    position: absolute;
    bottom: var(--tt-reports-divider-offset);
    right: calc(-1 * var(--tt-reports-gutter));
    left: calc(-1 * var(--tt-reports-gutter));
    height: 1px;
    background: rgba(220, 220, 220, .18);
    pointer-events: none;
  }

  .tt-mobile-reports__kicker {
    width: 100%;
    margin: 0 0 22px;
    color: #dcdcdc;
    font-family: "Space Mono", monospace;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
  }

  .tt-mobile-report-system {
    --rep-bg: #e3e3e3;
    --rep-ink: #333333;
    --rep-mute: rgba(51, 51, 51, .55);
    --rep-line: rgba(51, 51, 51, .24);
    --rep-solid: #171717;
    --rep-ok: #2f7d5b;
    width: 100%;
    margin: 0;
    overflow: visible;
    box-sizing: border-box;
    z-index: 5;
    background: var(--rep-bg);
    color: var(--rep-ink);
    font-family: "Space Mono", monospace;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 360ms ease, transform 560ms cubic-bezier(.23, 1, .32, 1);
  }

  .tt-mobile-reports.is-visible .tt-mobile-report-system {
    opacity: 1;
    transform: translateY(0);
  }

  .tt-mobile-report-system *,
  .tt-mobile-report-system *::before,
  .tt-mobile-report-system *::after {
    box-sizing: border-box;
  }

  .tt-mobile-report-system h3,
  .tt-mobile-report-system h4,
  .tt-mobile-report-system p,
  .tt-mobile-report-system dl,
  .tt-mobile-report-system dt,
  .tt-mobile-report-system dd {
    margin: 0;
    padding: 0;
  }

  .tt-mobile-report-system__top {
    display: flex;
    min-height: 58px;
    padding: 12px 14px 10px;
    align-items: center;
    justify-content: space-between;
  }

  .tt-mobile-report-system__logo {
    display: block;
    width: 34px;
    height: auto;
  }

  .tt-mobile-report-system__icons {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .tt-mobile-report-system__icons svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--rep-ink);
    stroke-width: 1.6;
    stroke-linecap: round;
  }

  .tt-mobile-report-system__tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 37px;
    border-top: 1px solid var(--rep-line);
    border-bottom: 1px solid var(--rep-line);
  }

  .tt-mobile-report-system__tabs button {
    min-width: 0;
    min-height: 44px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: var(--rep-ink);
    font: 700 12px/1 "Space Mono", monospace;
    opacity: .62;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .tt-mobile-report-system__tabs button.is-active {
    margin: 6px 0;
    background: var(--rep-solid);
    color: var(--rep-bg);
    opacity: 1;
  }

  .tt-mobile-report-system__tabs button:focus-visible {
    position: relative;
    z-index: 1;
    outline: 1px solid #ff5c17;
    outline-offset: -2px;
  }

  .tt-mobile-report-system__body {
    padding: 18px 14px 12px;
  }

  .tt-mobile-report-system__body > h3 {
    color: var(--rep-ink);
    font-size: 20px;
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.025em;
    text-transform: uppercase;
  }

  .tt-mobile-report-system__status {
    margin-top: 6px !important;
    color: var(--rep-ok);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .tt-mobile-report-system__status.is-rejected {
    color: #c62828;
  }

  .tt-mobile-report-system__actions {
    display: flex;
    gap: 8px;
    margin: 22px 0 24px;
  }

  .tt-mobile-report-system__actions a,
  .tt-mobile-report-system__actions button {
    display: inline-flex;
    height: 36px;
    border: 1px solid rgba(51, 51, 51, .35);
    border-radius: 0;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--rep-ink);
    font: 700 11px/1 "Space Mono", monospace;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .tt-mobile-report-system__actions a {
    width: max-content;
    padding: 0 14px;
    gap: 8px;
    white-space: nowrap;
  }

  .tt-mobile-report-system__actions a span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .tt-mobile-report-system__actions button {
    width: 38px;
    padding: 0;
    cursor: pointer;
  }

  .tt-mobile-report-system__actions svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .tt-mobile-report-system__actions a:focus-visible,
  .tt-mobile-report-system__actions button:focus-visible,
  .tt-mobile-option button:focus-visible {
    outline: 1px solid #ff5c17;
    outline-offset: 2px;
  }

  .tt-mobile-report-system__actions button.is-spinning svg {
    animation: tt-mobile-report-spin .6s linear;
  }

  .tt-mobile-report-system__section {
    margin-top: 24px;
  }

  .tt-mobile-report-system__section h4 {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rep-line);
    color: var(--rep-ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  .tt-mobile-report-system__data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 14px;
    padding-top: 15px !important;
  }

  .tt-mobile-report-system__data--object {
    grid-template-columns: minmax(70px, .7fr) minmax(0, 1.8fr);
  }

  .tt-mobile-report-system__data .is-wide {
    grid-column: 1 / -1;
  }

  .tt-mobile-report-system__data dt {
    color: var(--rep-mute);
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .tt-mobile-report-system__data dd {
    margin-top: 7px !important;
    overflow-wrap: anywhere;
    color: var(--rep-ink);
    font-size: 12px;
    line-height: 1.25;
  }

  .tt-mobile-report-system__section--method > p {
    margin-top: 13px !important;
    color: var(--rep-mute);
    font-size: 10px;
    line-height: 1.35;
  }

  .tt-mobile-report-system__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 22px;
    margin-top: 25px;
  }

  .tt-mobile-report-system__options[hidden],
  .tt-mobile-report-fields[hidden] {
    display: none;
  }

  .tt-mobile-report-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }

  .tt-mobile-report-fields > div {
    min-width: 0;
    min-height: 72px;
    padding: 12px;
    border: 1px solid var(--rep-line);
  }

  .tt-mobile-report-fields > div.is-wide {
    grid-column: 1 / -1;
  }

  .tt-mobile-report-fields span,
  .tt-mobile-report-fields strong,
  .tt-mobile-report-fields small {
    display: block;
  }

  .tt-mobile-report-fields span {
    margin-bottom: 8px;
    color: var(--rep-mute);
    font-size: 10px;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .tt-mobile-report-fields strong {
    overflow-wrap: anywhere;
    color: var(--rep-ink);
    font-size: 12px;
    line-height: 1.3;
  }

  .tt-mobile-report-fields small {
    margin-top: 5px;
    color: var(--rep-mute);
    font-size: 9px;
    line-height: 1.25;
  }

  .tt-mobile-dropdown__trigger {
    position: relative;
    display: block;
    width: 100%;
    min-height: 24px;
    padding: 0 22px 0 0;
    border: 0;
    background: transparent;
    color: var(--rep-ink);
    font: 700 12px/1.3 "Space Mono", monospace;
    text-align: left;
    overflow-wrap: anywhere;
    cursor: pointer;
  }

  .tt-mobile-dropdown {
    position: relative;
  }

  .tt-mobile-dropdown.is-open {
    z-index: 20;
  }

  .tt-mobile-dropdown__trigger::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 2px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 160ms ease;
  }

  .tt-mobile-dropdown.is-open .tt-mobile-dropdown__trigger::after {
    top: 10px;
    transform: rotate(225deg);
  }

  .tt-mobile-dropdown__trigger:focus-visible {
    outline: 1px solid #ff5c17;
    outline-offset: 3px;
  }

  .tt-mobile-dropdown__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 1px);
    right: -1px;
    left: -1px;
    margin: 0;
    max-height: var(--tt-mobile-menu-max-height, min(240px, 45vh));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--rep-line);
    background: #d8d8d8;
    opacity: 1;
    isolation: isolate;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
  }

  .tt-mobile-dropdown.is-up .tt-mobile-dropdown__menu {
    top: auto;
    bottom: calc(100% + 1px);
  }

  .tt-mobile-dropdown__menu[hidden] {
    display: none;
  }

  .tt-mobile-dropdown__menu button {
    display: block;
    width: 100%;
    min-height: 36px;
    padding: 8px 12px;
    border: 0;
    border-bottom: 1px solid var(--rep-line);
    background: #d8d8d8;
    color: var(--rep-ink);
    font: 700 10px/1.25 "Space Mono", monospace;
    text-align: left;
    cursor: pointer;
  }

  .tt-mobile-dropdown__menu button:last-child {
    border-bottom: 0;
  }

  .tt-mobile-dropdown__menu button[aria-selected="true"] {
    background: var(--rep-solid);
    color: var(--rep-bg);
  }

  .tt-mobile-option {
    min-width: 0;
  }

  .tt-mobile-option--wide {
    grid-column: 1 / -1;
    width: 70%;
  }

  .tt-mobile-option > span {
    display: block;
    margin-bottom: 8px;
    color: var(--rep-mute);
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .tt-mobile-option > div {
    display: flex;
    width: 100%;
    height: 34px;
    border: 1px solid var(--rep-line);
  }

  .tt-mobile-option button {
    flex: 1 1 0;
    min-width: 0;
    height: 32px;
    padding: 0 3px;
    border: 0;
    border-right: 1px solid var(--rep-line);
    background: transparent;
    color: var(--rep-ink);
    font: 700 11px/1 "Space Mono", monospace;
    cursor: pointer;
  }

  .tt-mobile-option button:last-child {
    border-right: 0;
  }

  .tt-mobile-option button.is-active {
    background: var(--rep-solid);
    color: var(--rep-bg);
  }

  .tt-mobile-reports__benefits {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 18px 0 54px;
    gap: 10px 18px;
    justify-content: flex-start;
    color: rgba(220, 220, 220, .86);
    font-family: "DotGothic16", sans-serif;
    font-size: clamp(7px, 2.1vw, 9px);
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .tt-mobile-reports__copy {
    width: 100%;
    margin: 0;
    color: rgba(220, 220, 220, .88);
  }

  .tt-mobile-reports__copy h3 {
    margin: 0 0 18px;
    font: 800 16px/1.18 "Manrope", sans-serif;
  }

  .tt-mobile-reports__copy p {
    max-width: 430px;
    margin: 0;
    color: rgba(220, 220, 220, .86);
    font: 400 14px/1.24 "Manrope", sans-serif;
  }

  @keyframes tt-mobile-report-spin {
    to { transform: rotate(360deg); }
  }

  html body .tt-stage .tt-stage__inner #tt-reports-block.tt-reports-block {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 359px) {
  .tt-mobile-reports {
    --tt-reports-gutter: 16px;
  }

  .tt-mobile-report-system__body {
    padding-right: 12px;
    padding-left: 12px;
  }

  .tt-mobile-report-system__options {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .tt-mobile-report-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .tt-mobile-report-fields > div.is-wide {
    grid-column: auto;
  }

  .tt-mobile-option--wide {
    grid-column: auto;
    width: 100%;
  }

}

@media (min-width: 640px) and (max-width: 1199.98px) {
  .tt-mobile-reports {
    --tt-reports-gutter: clamp(28px, 5vw, 60px);
    padding-top: 54px;
    padding-bottom: 88px;
  }

  .tt-mobile-reports__kicker,
  .tt-mobile-report-system,
  .tt-mobile-reports__benefits,
  .tt-mobile-reports__copy {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .tt-mobile-reports__title {
    --tt-reports-heading-gap: 42px;
    --tt-reports-divider-offset: -21px;
    font-size: clamp(40px, calc(4.7619vw + 22.8571px), 80px);
  }

  .tt-mobile-reports__kicker {
    margin-bottom: 26px;
    font-size: 17px;
  }

  .tt-mobile-report-system__top {
    min-height: 64px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .tt-mobile-report-system__tabs button {
    font-size: 14px;
  }

  .tt-mobile-report-system__body {
    padding: 28px 24px 22px;
  }

  .tt-mobile-report-system__body > h3 {
    font-size: 24px;
  }

  .tt-mobile-report-system__status {
    font-size: 13px;
  }

  .tt-mobile-report-system__actions a,
  .tt-mobile-report-system__actions button {
    font-size: 13px;
  }

  .tt-mobile-report-system__section h4 {
    font-size: 14px;
  }

  .tt-mobile-report-system__data {
    column-gap: 28px;
  }

  .tt-mobile-report-system__data dt {
    font-size: 12px;
  }

  .tt-mobile-report-system__data dd {
    font-size: 14px;
  }

  .tt-mobile-report-system__section--method > p {
    font-size: 12px;
  }

  .tt-mobile-report-system__options {
    gap: 24px 28px;
  }

  .tt-mobile-report-fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .tt-mobile-report-fields > div.is-wide {
    grid-column: span 2;
  }

  .tt-mobile-report-fields strong {
    font-size: 14px;
  }

  .tt-mobile-report-fields span {
    font-size: 12px;
  }

  .tt-mobile-report-fields small {
    font-size: 10px;
  }

  .tt-mobile-dropdown__trigger {
    font-size: 14px;
  }

  .tt-mobile-dropdown__menu button {
    min-height: 42px;
    font-size: 12px;
  }

  .tt-mobile-option > span {
    font-size: 12px;
  }

  .tt-mobile-option button {
    font-size: 13px;
  }

  .tt-mobile-reports__benefits {
    margin-top: 22px;
    font-size: 9px;
  }

  .tt-mobile-reports__copy h3 {
    font-size: 18px;
  }

  .tt-mobile-reports__copy p {
    max-width: 520px;
    font-size: 15px;
  }
}

@media (min-width: 960px) and (max-width: 1199.98px) {
  .tt-mobile-reports__kicker,
  .tt-mobile-report-system,
  .tt-mobile-reports__benefits,
  .tt-mobile-reports__copy {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) and (max-width: 1199.98px) {
  .tt-mobile-report-system__tabs button:hover:not(.is-active),
  .tt-mobile-option button:hover:not(.is-active),
  .tt-mobile-dropdown__menu button:hover:not([aria-selected="true"]),
  .tt-mobile-report-system__actions button:hover {
    background: rgba(51, 51, 51, .08);
  }
}

@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .tt-mobile-report-system,
  .tt-mobile-reports.is-visible .tt-mobile-report-system {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tt-mobile-report-system__actions button.is-spinning svg {
    animation: none;
  }
}
