@charset "utf-8";
/* CSS Document */
.input-group.mb-3 {
  max-width: 120px; /* ограничение ширины на десктопе */
  width: 100%;      /* чтобы input не превышал max-width */
}

.input-group .form-control {
  font-size: 16px;  /* можно чуть больше, чем на мобиле */
  padding: 0.5rem 0.75rem;
}

.input-group .btn {
  padding: 0.5rem 0.75rem;
  font-size: 16px;
}

@media (max-width: 576px) {
  .input-group.mb-3 {
    max-width: 100% !important;
    width: 100%;
  }

  .input-group .form-control,
  .input-group .btn {
    font-size: 14px;
    padding: 0.375rem 0.5rem;
  }
}
/* cart.php */
.bank-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.bank-option {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.bank-option img {
  height: 40px; /* Ð£Ð¼ÐµÐ½ÑŒÑˆÐµÐ½Ð¾ */
  max-width: 100%;
  border-radius: 8px;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label.bank-option {
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  background-color: #ffffff;
}
.ahref-collapse{
	color: #005bff
}
.ahref-collapse:hover{
	color: #1c4796
}
/* cart.php */