.custom-checkbox {
  align-items: center;
  display: flex;
  label {
    text-transform: capitalize;
    color: black;
    font-size: 14px;
    font-weight: 300;
  }
}

.custom-radio {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid rgba(203, 157, 85, 0.3);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  transition: border 0.2s ease-in-out;
}

/* Checked durum */
.custom-radio:checked {
  border: 2px solid #e96817;
}

.custom-radio:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #e96817;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.select-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.custom-select {
  display: flex;
  width: 100%;
  padding: 14px 40px 14px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid rgba(15, 15, 15, 0.1);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 14px;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.select-icon img {
  width: 14px;
  height: 14px;
}

.features-grid {
  --border-color: rgba(15, 15, 15, 0.1);
  --gap: 60px;

  row-gap: var(--gap);
}


.submit-btn {
  width: 100%;
  display: flex !important;
  padding: 8px 8px 8px 20px !important;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: var(--Brand-Primary, #e96818);
}
.form-group-custom label {
  color: #6f6f6f;
  margin-bottom: 8px;
  font-family: "Rival Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.form-group-custom select {
  display: flex;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid rgba(15, 15, 15, 0.1);
  background: #fff;
  font-family: "Rival Sans";
  font-size: 16px;
  line-height: 1.2;
  font-size: 14px;
  color: #6f6f6f;
  appearance: none;

  background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0cm9rZT0iIzBGMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMu/b3JnLzIwMDAvc3ZnIj48cGF0aCBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9r/ZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNOC4yNSAxNS43NUwxMiAxMiAxNS43NSAxNS43NSIvPjxwYXRo/IHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Ik04LjI1IDguMjVMMTIgMTIgMTUuNzUgOC4yNSIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}
label.form-check-label {
  color: var(--text-icon-primary, #0f0f0f);

  font-family: var(--Family-Sans, "Rival Sans");
  font-size: var(--UI-Input-Helper-Text, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}

.form-check .form-check-input {
  margin-left: 0;
}
