

.boxes  input:focus {
    transition: all .5s;  
    border: 2px solid #000 !important;
    color:#000 !important;
}

.boxes input[type="checkbox"]:checked + label { 
    background-color: #f6f6f6;  
    padding:10px; 
    padding-left:15px; 
    padding-right:15px; 
    transition: all .2s;  
    text-align:center;
    font-weight:400; 
    color:#000; 
    border:2px solid #000; 
    outline:none;
    cursor:pointer;
}

.boxes input[type="checkbox"] + label { 
    background-color: #f6f6f6;  
    padding:10px; 
    padding-left:15px; 
    padding-right:15px; 
    transition: all .2s;  
    text-align:center;
    font-weight:400; 
    color:#000; 
    border:2px solid #ccc; 
    outline:none;
    cursor:pointer;
}

.boxes input[type="checkbox"]  {
    display: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    cursor:pointer;
}

  .custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
   
  .custom-checkbox {
    display: block;
    position: relative; 
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
  }
   
  .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
   
  .checkmark { 
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #000; 
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius:5px;
  }
  
  .checkmark-after {
    content: "";
    position: absolute;
    display: none;
  }
   
  .custom-checkbox input:checked ~ .checkmark-after {
    display: block;
  }

  .custom-checkbox input:checked ~ .checkmark {
    border: 2px solid #000;
  }
   
  .custom-checkbox .checkmark-after { 
    position: absolute;
    top: 6px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: solid #777;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  } 



  /*----------*/

  .button-checkbox {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.button-checkbox input[type="checkbox"] {
    display: none;
}

.button-checkbox span {
    padding: 5px 15px;
    background: #eee;
    color: #000;
    border-radius: 50px;
    border: none;
    display: inline-block; 
    margin-right: 5px;
    transition: all 0.3s;
}

.button-checkbox input[type="checkbox"]:checked ~ span {
    background: #000;
    color: #fff;
}
 

input::placeholder {
  color: #000;  
  font-weight:400;
  font-size: 14px; /* Rozmiar czcionki */
  opacity: 0.7; /* Przezroczystość */
}

/* Kontener całego labela */
.radio-container {
  display: inline-block;    /* lub block, jeśli chcesz w osobnych liniach */
  cursor: pointer;
  margin-bottom: 10px;      /* Odstęp między kolejnymi radio */
  user-select: none;        /* Opcjonalnie – żeby nie zaznaczać tekstu przy klikaniu */
}

/* Ukrywamy natywny radio */
.radio-container input[type="radio"] {
  display: none;  /* Schowaj oryginalny */
}

/* Sztuczne kółko, które będzie widać */
.radio-container .custom-radio {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #000;  /* Czarna ramka */
  border-radius: 50%;      /* Zaokrąglenie – kształt koła */
  position: relative;
  vertical-align: middle;  /* Wyrównanie względem tekstu */
  margin-right: 8px;       /* Odstęp od nazwy firmy */
}

/* Szara kropka w środku po zaznaczeniu */
.radio-container input[type="radio"]:checked + .custom-radio::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #777;    /* Szary kolor kropki */
  position: absolute;
  top: 3px;  /* Dostrajanie pozycji wewnątrz koła */
  left: 3px;
}

/* Styl samej nazwy firmy */
.radio-container .company-name {
  font-weight: 400;         /* np. normalna waga */
  font-size: 14px;
  color: #000;              /* Czarny kolor tekstu */
  vertical-align: middle;
}