#tlsv-cookie-banner,
#tlsv-cookie-settings {
  font-family: "Manrope", Arial, sans-serif;
}

#tlsv-cookie-banner {
  position: fixed;
  z-index: 99999;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 1180px;
  margin: auto;
  padding: 22px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.tlsv-cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.tlsv-cookie-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.tlsv-cookie-copy p {
  margin: 0;
  color: #c8c8c8;
  font-size: 13px;
  line-height: 1.55;
}

.tlsv-cookie-copy a {
  color: #ffd600;
  text-decoration: underline;
}

.tlsv-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tlsv-cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
}

.tlsv-cookie-primary {
  background: #ffd600;
  color: #080808;
}

.tlsv-cookie-secondary {
  background: #fff;
  color: #080808;
}

.tlsv-cookie-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
}

#tlsv-cookie-settings {
  display: none;
  position: fixed;
  z-index: 100000;
  inset: 0;
  background: rgba(0,0,0,.72);
  padding: 20px;
  align-items: center;
  justify-content: center;
}

#tlsv-cookie-settings.is-open {
  display: flex;
}

.tlsv-cookie-modal {
  width: min(100%, 560px);
  background: #fff;
  color: #111;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.tlsv-cookie-modal h2 {
  margin: 0 0 10px;
}

.tlsv-cookie-modal p {
  color: #666;
  line-height: 1.55;
}

.tlsv-cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  border-top: 1px solid #e5e5e5;
}

.tlsv-cookie-option strong {
  display: block;
}

.tlsv-cookie-option small {
  display: block;
  margin-top: 5px;
  color: #777;
  line-height: 1.45;
}

.tlsv-cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

@media (max-width: 700px) {
  #tlsv-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .tlsv-cookie-inner {
    grid-template-columns: 1fr;
  }

  .tlsv-cookie-actions {
    width: 100%;
  }

  .tlsv-cookie-btn {
    flex: 1 1 auto;
  }
}