/**
* Theme Name: Darkyn Child
* Description: This is a child theme of Darkyn, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/themeguri">ThemeGuri</a>
* Template: darkyn
* Version: 1.0
*/
/* kontener checkboxa */
.rodo-i-container {
	width: 100%;
  display: flex;
  align-items: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
font-weight: 300;
  color: white;
	
}

/* sam checkbox */
.rodo-i {
  width: 18px;
  height: 18px;
  border: 2px solid white; /* delikatna ramka, pasuje do neutralnej palety */
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s;
	margin-right: 25px;
}


/* mały symbol „ptaszka” */
.rodo-i:checked::after {
  content: "✔";
  position: absolute;
  top: -3px;
  left: 0px;
  font-size: 1rem;
  color: #fff;
}

/* hover i focus – podkreśla interakcję */


/* tekst obok checkboxa */
.rodo-i-label {
  cursor: pointer;
}