#rt-cookie-banner {
  display: none;
}
.rt-cookie-banner {
  position: fixed;

  bottom: 24px;
  left: 24px;
  right: 24px;

  background: rgba(20, 20, 20, 0.96);

  backdrop-filter: blur(12px);

  border-radius: 16px;

  padding: 24px;

  z-index: 1000000 !important;

  color: #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.rt-cookie-content {
  display: flex;

  justify-content: space-between;

  gap: 24px;

  align-items: center;
}
.rt-cookie-text h4 {
  color: #846e96;
  margin-top: 0;
  margin-bottom: 8px;
}
.rt-cookie-text p {
  margin: 0;
  line-height: 1.45;
}
.rt-cookie-text a {
  color: #fff;
  text-decoration: underline;
}
.rt-cookie-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.rt-cookie-buttons button,
.rt-cookie-modal button {
  border: 0;

  border-radius: 10px;

  padding: 12px 18px;

  cursor: pointer;
}

#rt-save-preferences {
  background: rgba(20, 20, 20, 0.96);

  color: #fff;
}
#rt-accept-all {
  background: #fff;

  color: #000;
}
#rt-reject,
#rt-open-settings {
  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: #fff;
}

.rt-cookie-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  display: none;

  justify-content: center;

  align-items: center;

  z-index: 9999999;
}

.rt-cookie-modal-inner {
  background: #fff;

  border-radius: 18px;

  padding: 32px;

  width: 90%;

  max-width: 720px;

  max-height: 90vh;

  overflow-y: auto;

  color: #1f1f1f;
}

.rt-cookie-modal-inner h3 {
  margin-top: 0;
}
.rt-cookie-modal-inner p {
  line-height: 1.5;
}
.rt-cookie-category {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}
.rt-cookie-category label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  margin-bottom: 8px;
}
.rt-cookie-category p {
  margin: 0;
}
.rt-cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 14px;
}
.rt-cookie-table th,
.rt-cookie-table td {
  border: 1px solid #e2e2e2;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}
.rt-cookie-table th {
  background: #f7f7f7;
}
.rt-cookie-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 20px;
}
#rt-modal-accept-all {
  background: #846e96;
  color: #fff;
}
#rt-modal-reject {
  background: #efefef;
  color: #111;
}
.rt-manage-cookie-settings {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .rt-cookie-content {
    display: flex;
    flex-direction: column;

    gap: 24px;

    align-items: center;
  }
  #rt-accept-all,
  #rt-reject,
  #rt-open-settings {
    width: 100%;
  }
  #rt-save-preferences {
    margin: 20px 0 0 0;
  }
  .rt-cookie-modal-inner {
    padding: 22px;
  }
  .rt-cookie-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .rt-cookie-buttons {
    min-width: 200px;
  }
  #rt-accept-all,
  #rt-reject,
  #rt-open-settings {
    width: 100%;
  }
  #rt-save-preferences {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 1200px) {
  #rt-accept-all,
  #rt-reject,
  #rt-open-settings {
    width: auto;
  }
  .rt-cookie-buttons {
    align-items: flex-end;
    min-width: 500px;
  }
}
