:root {
  --rt-cookie-red: #df0035;
  --rt-cookie-red-dark: #b9002c;
  --rt-cookie-ink: #20202e;
  --rt-cookie-text: #343442;
  --rt-cookie-muted: #6d6d79;
  --rt-cookie-border: #dedee5;
  --rt-cookie-surface: #ffffff;
  --rt-cookie-soft: #f5f5f8;
}

.rt-cookie-banner,
.rt-cookie-modal,
.rt-cookie-reopen,
.rt-cookie-placeholder {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.rt-cookie-banner[hidden],
.rt-cookie-modal[hidden],
.rt-cookie-reopen[hidden] {
  display: none !important;
}

html.rt-cookie-dialog-open,
html.rt-cookie-dialog-open body {
  overflow: hidden !important;
}

.rt-cookie-banner {
  position: fixed;
  z-index: 2147483000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  gap: 24px;
  width: auto;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 58px 24px 26px;
  color: var(--rt-cookie-text);
  background: var(--rt-cookie-surface);
  border: 1px solid rgba(32, 32, 46, 0.12);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(13, 13, 24, 0.24);
}

.rt-cookie-banner h2,
.rt-cookie-dialog h2 {
  margin: 5px 0 8px;
  color: var(--rt-cookie-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.15;
}

.rt-cookie-banner p,
.rt-cookie-dialog p,
.rt-cookie-category span {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.rt-cookie-banner-copy > a,
.rt-cookie-dialog a {
  display: inline-block;
  margin-top: 9px;
  color: var(--rt-cookie-red-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rt-cookie-kicker {
  color: var(--rt-cookie-red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rt-cookie-kicker i {
  margin-right: 5px;
}

.rt-cookie-banner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 10px;
}

.rt-cookie-button {
  min-height: 45px;
  padding: 10px 15px;
  border: 2px solid var(--rt-cookie-ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.rt-cookie-button:hover {
  transform: translateY(-1px);
}

.rt-cookie-button.primary,
.rt-cookie-button.secondary {
  color: #fff;
  background: var(--rt-cookie-ink);
}

.rt-cookie-button.primary:hover,
.rt-cookie-button.secondary:hover {
  color: #fff;
  background: #343447;
  border-color: #343447;
}

.rt-cookie-button.settings {
  grid-column: 1 / -1;
  color: var(--rt-cookie-ink);
  background: #fff;
  border-color: var(--rt-cookie-border);
}

.rt-cookie-button.settings:hover {
  color: var(--rt-cookie-ink);
  background: var(--rt-cookie-soft);
  border-color: #c5c5cf;
}

.rt-cookie-button:focus,
.rt-cookie-close:focus,
.rt-cookie-reopen:focus,
.rt-footer-cookie-link:focus,
.rt-cookie-switch input:focus + span,
[data-rt-cookie-allow]:focus {
  outline: 3px solid rgba(223, 0, 53, 0.35) !important;
  outline-offset: 2px;
}

.rt-cookie-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--rt-cookie-ink);
  background: var(--rt-cookie-soft);
  border: 0;
  border-radius: 50%;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.rt-cookie-banner > .rt-cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.rt-cookie-reopen {
  position: fixed;
  z-index: 2147482990;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  color: #fff;
  background: var(--rt-cookie-ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(13, 13, 24, 0.2);
  font-size: 12px;
  font-weight: 700;
}

.rt-cookie-reopen:hover {
  color: #fff;
  background: #343447;
}

.rt-footer-cookie-link {
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: underline;
}

.rt-cookie-modal {
  position: fixed;
  z-index: 2147483100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(13, 13, 24, 0.68);
  overflow: auto;
}

.rt-cookie-dialog {
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 36px);
  padding: 26px;
  color: var(--rt-cookie-text);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.32);
  overflow: auto;
}

.rt-cookie-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.rt-cookie-dialog-head h2 {
  font-size: 29px;
}

.rt-cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 16px;
  background: var(--rt-cookie-soft);
  border: 1px solid var(--rt-cookie-border);
  border-radius: 10px;
}

.rt-cookie-category-copy {
  display: grid;
  gap: 4px;
}

.rt-cookie-category-copy strong {
  color: var(--rt-cookie-ink);
  font-size: 16px;
}

.rt-cookie-category-copy span {
  color: var(--rt-cookie-muted);
  font-size: 13px;
}

.rt-cookie-switch {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 27px;
  margin: 0;
}

.rt-cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.rt-cookie-switch span {
  position: absolute;
  inset: 0;
  display: block;
  background: #aaaab5;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.rt-cookie-switch span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.26);
  content: "";
  transition: transform 0.18s ease;
}

.rt-cookie-switch input:checked + span {
  background: var(--rt-cookie-red);
}

.rt-cookie-switch input:checked + span::after {
  transform: translateX(21px);
}

.rt-cookie-switch input:disabled + span {
  cursor: not-allowed;
  opacity: 0.68;
}

.rt-cookie-dialog-note {
  color: var(--rt-cookie-muted);
  font-size: 13px !important;
}

.rt-cookie-dialog-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.rt-cookie-dialog-actions .rt-cookie-button.settings {
  grid-column: auto;
}

.rt-cookie-placeholder {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #20202e, #343447);
  border-radius: 10px;
  text-align: center;
}

.rt-cookie-placeholder-card {
  max-width: 500px;
}

.rt-cookie-placeholder i {
  margin-bottom: 10px;
  color: #ff5a7e;
  font-size: 31px;
}

.rt-cookie-placeholder strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.rt-cookie-placeholder p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
}

.rt-cookie-placeholder button {
  min-height: 40px;
  padding: 9px 15px;
  color: #fff;
  background: var(--rt-cookie-red);
  border: 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.rt-cookie-iframe-blocked {
  display: none !important;
}

.rt-cookie-policy-page,
.rt-cookie-policy-page * {
  box-sizing: border-box;
}

.rt-cookie-policy-page {
  position: relative;
  z-index: 2;
  clear: both;
  float: left;
  overflow: hidden;
  width: 100%;
  color: #5d5d69;
  background: #f3f3f5;
}

.rt-cookie-policy-page h1,
.rt-cookie-policy-page h2,
.rt-cookie-policy-page h3,
.rt-cookie-policy-page p {
  margin-top: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.rt-cookie-policy-page a,
.rt-cookie-policy-page button {
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.rt-cookie-policy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #df0035;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rt-cookie-policy-hero {
  position: relative;
  padding: 78px 0 100px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, rgba(223, 0, 53, .25), transparent 29%),
    radial-gradient(circle at 13% 87%, rgba(247, 197, 30, .08), transparent 24%),
    linear-gradient(125deg, #20202e 0%, #313146 100%);
}

.rt-cookie-policy-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #df0035 0 78%, #f7c51e 78% 100%);
  content: "";
}

.rt-cookie-policy-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .48fr);
  gap: 64px;
  align-items: center;
}

.rt-cookie-policy-hero .rt-cookie-policy-kicker {
  color: #f7c51e;
}

.rt-cookie-policy-hero h1 {
  max-width: 760px;
  margin: 13px 0 21px;
  color: #fff;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.042em;
  text-shadow: none;
}

.rt-cookie-policy-hero-copy > p {
  max-width: 720px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.72;
}

.rt-cookie-policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rt-cookie-policy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.rt-cookie-policy-button:hover,
.rt-cookie-policy-button:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

.rt-cookie-policy-button.primary {
  color: #fff;
  background: #df0035;
}

.rt-cookie-policy-button.primary:hover,
.rt-cookie-policy-button.primary:focus {
  color: #fff;
  background: #f20b45;
  box-shadow: 0 12px 26px rgba(223, 0, 53, .22);
}

.rt-cookie-policy-button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
}

.rt-cookie-policy-button.secondary:hover,
.rt-cookie-policy-button.secondary:focus {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .42);
}

.rt-cookie-policy-button.dark-text {
  margin-top: 24px;
}

.rt-cookie-policy-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 21px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 700;
}

.rt-cookie-policy-hero-card {
  padding: 30px;
  color: #242435;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(8, 8, 18, .25);
}

.rt-cookie-policy-hero-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.rt-cookie-policy-hero-card-head > span {
  display: flex;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #df0035;
  border-radius: 15px;
  font-size: 24px;
}

.rt-cookie-policy-hero-card-head small,
.rt-cookie-policy-hero-card-head strong {
  display: block;
}

.rt-cookie-policy-hero-card-head small {
  color: #df0035;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rt-cookie-policy-hero-card-head strong {
  margin-top: 3px;
  color: #242435;
  font-size: 21px;
  font-weight: 900;
}

.rt-cookie-policy-hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rt-cookie-policy-hero-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid #eeeef2;
}

.rt-cookie-policy-hero-card li > span {
  display: flex;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #df0035;
  background: #fff1f5;
  border-radius: 11px;
}

.rt-cookie-policy-hero-card li > span.necessary {
  color: #168553;
  background: #eaf8f1;
}

.rt-cookie-policy-hero-card li strong,
.rt-cookie-policy-hero-card li small {
  display: block;
}

.rt-cookie-policy-hero-card li strong {
  color: #242435;
  font-size: 15px;
  font-weight: 900;
}

.rt-cookie-policy-hero-card li small {
  margin-top: 2px;
  color: #858590;
  font-size: 11px;
  line-height: 1.45;
}

.rt-cookie-policy-hero-card > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding-top: 16px;
  color: #777783;
  border-top: 1px solid #eeeef2;
  font-size: 12px;
  line-height: 1.4;
}

.rt-cookie-policy-hero-card > p i {
  color: #df0035;
}

.rt-cookie-policy-summary {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}

.rt-cookie-policy-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6e6eb;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(32, 32, 46, .1);
}

.rt-cookie-policy-summary article {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 23px 25px;
  border-right: 1px solid #ececf1;
}

.rt-cookie-policy-summary article:last-child {
  border-right: 0;
}

.rt-cookie-policy-summary article > span {
  display: flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #df0035;
  border-radius: 13px;
  font-size: 19px;
}

.rt-cookie-policy-summary strong,
.rt-cookie-policy-summary small {
  display: block;
}

.rt-cookie-policy-summary strong {
  color: #242435;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.rt-cookie-policy-summary small {
  margin-top: 3px;
  color: #858590;
  font-size: 11px;
  line-height: 1.5;
}

.rt-cookie-policy-content {
  padding: 58px 0 78px;
}

.rt-cookie-policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.rt-cookie-policy-sidebar {
  position: sticky;
  top: 20px;
}

.rt-cookie-policy-sidebar nav,
.rt-cookie-policy-operator,
.rt-cookie-policy-section,
.rt-cookie-policy-contact {
  background: #fff;
  border: 1px solid #e6e6eb;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(32, 32, 46, .07);
}

.rt-cookie-policy-sidebar nav {
  padding: 20px;
}

.rt-cookie-policy-sidebar nav > span,
.rt-cookie-policy-operator > span {
  display: block;
  margin-bottom: 10px;
  color: #9696a1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rt-cookie-policy-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  color: #4e4e5a;
  border-top: 1px solid #f0f0f3;
  font-size: 12px;
  font-weight: 800;
}

.rt-cookie-policy-sidebar nav a:first-of-type {
  border-top: 0;
}

.rt-cookie-policy-sidebar nav a i {
  width: 16px;
  color: #df0035;
  text-align: center;
}

.rt-cookie-policy-sidebar nav a:hover,
.rt-cookie-policy-sidebar nav a:focus {
  color: #df0035;
  text-decoration: none;
}

.rt-cookie-policy-operator {
  margin-top: 16px;
  padding: 20px;
}

.rt-cookie-policy-operator strong,
.rt-cookie-policy-operator small,
.rt-cookie-policy-operator a {
  display: block;
}

.rt-cookie-policy-operator strong {
  color: #242435;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
}

.rt-cookie-policy-operator small {
  margin: 8px 0 12px;
  color: #858590;
  font-size: 11px;
  line-height: 1.6;
}

.rt-cookie-policy-operator a {
  color: #df0035;
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.rt-cookie-policy-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.rt-cookie-policy-section {
  padding: 30px;
  scroll-margin-top: 20px;
}

.rt-cookie-policy-section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.rt-cookie-policy-section-heading > span {
  display: flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #df0035;
  background: #fff1f5;
  border-radius: 15px;
  font-size: 21px;
}

.rt-cookie-policy-section-heading small {
  display: block;
  color: #df0035;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rt-cookie-policy-section h2,
.rt-cookie-policy-contact h2 {
  margin: 4px 0 0;
  color: #242435;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.025em;
  text-shadow: none;
}

.rt-cookie-policy-section > p,
.rt-cookie-policy-contact p {
  margin-bottom: 0;
  color: #666674;
  font-size: 15px;
  line-height: 1.75;
}

.rt-cookie-policy-legal-note {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding: 17px 18px;
  color: #65541a;
  background: #fff9e8;
  border: 1px solid #f2e2a3;
  border-radius: 13px;
}

.rt-cookie-policy-legal-note i {
  margin-top: 3px;
  color: #bb8e00;
  font-size: 18px;
}

.rt-cookie-policy-legal-note p {
  margin: 0;
  color: #65541a;
  font-size: 13px;
  line-height: 1.65;
}

.rt-cookie-policy-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid #e3e3e9;
  border-radius: 14px;
}

.rt-cookie-policy-page table {
  width: 100%;
  min-width: 780px;
  margin: 0;
  border-collapse: collapse;
}

.rt-cookie-policy-page th,
.rt-cookie-policy-page td {
  padding: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
}

.rt-cookie-policy-page th {
  color: #fff;
  background: #242435;
  border-right: 1px solid rgba(255, 255, 255, .12);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rt-cookie-policy-page th:last-child {
  border-right: 0;
}

.rt-cookie-policy-page td {
  color: #5f5f6b;
  background: #fff;
  border-top: 1px solid #e8e8ed;
  border-right: 1px solid #eeeeF2;
}

.rt-cookie-policy-page tbody tr:nth-child(even) td {
  background: #fafafd;
}

.rt-cookie-policy-page td:last-child {
  border-right: 0;
}

.rt-cookie-policy-page td strong {
  color: #333341;
  font-weight: 900;
}

.rt-cookie-policy-page code {
  display: inline-block;
  margin: 3px 3px 0 0;
  padding: 3px 6px;
  color: #343442;
  background: #ededf2;
  border-radius: 5px;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.rt-cookie-policy-tag {
  display: table;
  margin-bottom: 7px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rt-cookie-policy-tag.necessary {
  color: #126a43;
  background: #e6f7ef;
}

.rt-cookie-policy-tag.analytics {
  color: #7d5900;
  background: #fff3cf;
}

.rt-cookie-policy-tag.media {
  color: #8f1431;
  background: #ffe7ed;
}

.rt-cookie-policy-provider-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 21px;
}

.rt-cookie-policy-provider-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 43px;
  padding: 10px 14px;
  color: #242435;
  background: #f7f7f9;
  border: 1px solid #e8e8ed;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 900;
}

.rt-cookie-policy-provider-links a i {
  color: #df0035;
}

.rt-cookie-policy-provider-links a:hover,
.rt-cookie-policy-provider-links a:focus {
  color: #df0035;
  background: #fff1f5;
  border-color: #f2c9d4;
  text-decoration: none;
}

.rt-cookie-policy-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rt-cookie-policy-choice-grid > div {
  padding: 18px;
  background: #f8f8fa;
  border: 1px solid #ececf1;
  border-radius: 13px;
}

.rt-cookie-policy-choice-grid > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 13px;
  color: #fff;
  background: #df0035;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
}

.rt-cookie-policy-choice-grid strong {
  display: block;
  color: #242435;
  font-size: 13px;
  font-weight: 900;
}

.rt-cookie-policy-choice-grid p {
  margin: 5px 0 0;
  color: #777783;
  font-size: 11px;
  line-height: 1.55;
}

.rt-cookie-policy-smallprint {
  margin-top: 17px !important;
  color: #8b8b96 !important;
  font-size: 11px !important;
}

.rt-cookie-policy-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 31px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(223, 0, 53, .24), transparent 33%),
    linear-gradient(125deg, #20202e 0%, #303044 100%);
  border-color: transparent;
  scroll-margin-top: 20px;
}

.rt-cookie-policy-contact .rt-cookie-policy-kicker {
  color: #f7c51e;
}

.rt-cookie-policy-contact h2 {
  margin: 7px 0 10px;
  color: #fff;
  font-size: 32px;
}

.rt-cookie-policy-contact p {
  max-width: 630px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.rt-cookie-policy-contact-actions {
  display: grid;
  gap: 8px;
  min-width: 245px;
}

.rt-cookie-policy-contact-actions a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 13px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
}

.rt-cookie-policy-contact-actions a i {
  width: 16px;
  color: #f7c51e;
  text-align: center;
}

.rt-cookie-policy-contact-actions a:hover,
.rt-cookie-policy-contact-actions a:focus {
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
  text-decoration: none;
}

@media (max-width: 991px) {
  .rt-cookie-policy-hero-grid,
  .rt-cookie-policy-layout,
  .rt-cookie-policy-contact {
    grid-template-columns: 1fr;
  }

  .rt-cookie-policy-hero-grid {
    gap: 42px;
  }

  .rt-cookie-policy-summary-grid {
    grid-template-columns: 1fr;
  }

  .rt-cookie-policy-summary article {
    border-right: 0;
    border-bottom: 1px solid #ececf1;
  }

  .rt-cookie-policy-summary article:last-child {
    border-bottom: 0;
  }

  .rt-cookie-policy-sidebar {
    position: static;
  }

  .rt-cookie-policy-sidebar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .rt-cookie-policy-sidebar nav > span {
    width: 100%;
  }

  .rt-cookie-policy-sidebar nav a,
  .rt-cookie-policy-sidebar nav a:first-of-type {
    padding: 8px 0;
    border-top: 0;
  }

  .rt-cookie-policy-operator {
    display: none;
  }

  .rt-cookie-policy-contact-actions {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .rt-cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: calc(100vh - 20px);
    padding: 20px 48px 20px 20px;
    border-radius: 12px;
    overflow: auto;
  }

  .rt-cookie-banner h2,
  .rt-cookie-dialog-head h2 {
    font-size: 22px;
  }

  .rt-cookie-banner p,
  .rt-cookie-dialog p {
    font-size: 14px;
  }

  .rt-cookie-banner-actions,
  .rt-cookie-dialog-actions {
    grid-template-columns: 1fr;
  }

  .rt-cookie-banner-actions .rt-cookie-button.settings,
  .rt-cookie-dialog-actions .rt-cookie-button.settings {
    grid-column: auto;
  }

  .rt-cookie-modal {
    align-items: flex-start;
    padding: 10px;
  }

  .rt-cookie-dialog {
    max-height: calc(100vh - 20px);
    padding: 20px;
    border-radius: 12px;
  }

  .rt-cookie-category {
    align-items: flex-start;
  }

  .rt-cookie-reopen span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .rt-cookie-reopen {
    width: 42px;
    padding: 9px;
    justify-content: center;
  }

  .rt-cookie-policy-hero {
    padding: 49px 0 72px;
  }

  .rt-cookie-policy-hero h1 {
    font-size: 38px;
  }

  .rt-cookie-policy-hero-copy > p {
    font-size: 15px;
  }

  .rt-cookie-policy-actions,
  .rt-cookie-policy-button {
    width: 100%;
  }

  .rt-cookie-policy-hero-card {
    padding: 22px;
    border-radius: 16px;
  }

  .rt-cookie-policy-summary {
    margin-top: -27px;
  }

  .rt-cookie-policy-summary-grid {
    border-radius: 15px;
  }

  .rt-cookie-policy-summary article {
    padding: 18px;
  }

  .rt-cookie-policy-content {
    padding: 36px 0 52px;
  }

  .rt-cookie-policy-layout {
    gap: 18px;
  }

  .rt-cookie-policy-sidebar nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px;
    border-radius: 15px;
  }

  .rt-cookie-policy-sidebar nav a,
  .rt-cookie-policy-sidebar nav a:first-of-type {
    padding: 10px 0;
    border-top: 1px solid #f0f0f3;
  }

  .rt-cookie-policy-sidebar nav a:first-of-type {
    border-top: 0;
  }

  .rt-cookie-policy-section,
  .rt-cookie-policy-contact {
    padding: 21px;
    border-radius: 15px;
  }

  .rt-cookie-policy-section-heading {
    align-items: flex-start;
  }

  .rt-cookie-policy-section-heading > span {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 18px;
  }

  .rt-cookie-policy-section h2,
  .rt-cookie-policy-contact h2 {
    font-size: 25px;
  }

  .rt-cookie-policy-section > p,
  .rt-cookie-policy-contact p {
    font-size: 14px;
  }

  .rt-cookie-policy-legal-note {
    padding: 15px;
  }

  .rt-cookie-policy-table-wrap {
    margin-right: -21px;
    margin-left: -21px;
    padding: 0 21px;
    border: 0;
    border-radius: 0;
    overflow-x: auto;
  }

  .rt-cookie-policy-page table {
    min-width: 820px;
    border: 1px solid #e3e3e9;
  }

  .rt-cookie-policy-choice-grid {
    grid-template-columns: 1fr;
  }

  .rt-cookie-policy-provider-links,
  .rt-cookie-policy-provider-links a,
  .rt-cookie-policy-contact-actions,
  .rt-cookie-policy-contact-actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rt-cookie-button,
  .rt-cookie-policy-page a,
  .rt-cookie-policy-page button,
  .rt-cookie-switch span,
  .rt-cookie-switch span::after {
    transition: none;
  }
}
