.checkout-application {
  --checkout-red: #a01a1f;
  --checkout-red-soft: rgba(160, 26, 31, .1);
  --checkout-border: #e4e7ec;
  --checkout-muted: #8b919a;
  --checkout-text: #2b3036;
  --checkout-title: #1a1d21;
  font-family: "Roboto", sans-serif;
  font-size: .875rem;
  color: var(--checkout-text);
}

.checkout-application .checkout-container {
  padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px)) !important;
}

.checkout-application .checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.checkout-application .checkout-stepper-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--checkout-muted);
  font-weight: 600;
  font-size: .88rem;
  white-space: nowrap;
}

.checkout-application .checkout-stepper-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  line-height: 1;
  border-radius: 999px;
  background: #eef0f3;
  color: var(--checkout-muted);
  font-weight: 700;
  font-size: 13px;
  flex: 0 0 auto;
  transition: background-color .2s ease, color .2s ease;
}

.checkout-application .checkout-stepper-label {
  padding: 0;
  font-weight: 600;
}

.checkout-application .checkout-stepper-item.is-active {
  color: var(--checkout-red);
}

.checkout-application .checkout-stepper-item.is-active .checkout-stepper-dot {
  background: var(--checkout-red);
  color: #fff;
}

.checkout-application .checkout-stepper-line {
  flex: 1 1 auto;
  height: 2px;
  min-width: 2.5rem;
  margin: 0 .85rem;
  background: linear-gradient(to right, #eef0f3 0%, #eef0f3 100%);
  border-radius: 999px;
}

.checkout-application .checkout-stepper-line.is-complete {
  background: linear-gradient(to right, var(--checkout-red) 0%, var(--checkout-red) 50%, #eef0f3 50%, #eef0f3 100%);
}

.checkout-application .checkout-card {
  background: #fff;
  border: 1px solid var(--checkout-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(30, 34, 40, .04);
  padding: 1.15rem 1.25rem;
  margin-bottom: .9rem;
}

.checkout-application .checkout-card-title {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}

.checkout-application .checkout-card-title > span {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--checkout-red-soft);
  color: var(--checkout-red);
  font-weight: 800;
  font-size: .74rem;
  flex: 0 0 auto;
  margin-top: .08rem;
}

.checkout-application .checkout-card-title h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--checkout-title);
  margin-bottom: .15rem;
  line-height: 1.3;
}

.checkout-application .checkout-card-title p {
  margin-bottom: 0;
  color: #8c9199;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.checkout-application .checkout-program-table {
  border: 1px solid var(--checkout-border);
  border-radius: 12px;
  overflow: hidden;
}

.checkout-application .checkout-program-table-head,
.checkout-application .checkout-program-table-row {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 2fr) minmax(0, 1.2fr) minmax(0, .95fr) 3.5rem;
  gap: .75rem;
  align-items: center;
}

.checkout-application .checkout-program-table-head {
  padding: .55rem .9rem;
  background: #f3f4f6;
  border-bottom: 1px solid var(--checkout-border);
  font-size: 12px;
  font-weight: 600;
  color: #737983;
}

.checkout-application .checkout-program-table-head span:last-child {
  text-align: center;
}

.checkout-application .checkout-program-table-row {
  padding: .7rem .9rem;
  border-bottom: 1px solid var(--checkout-border);
  background: #fff;
  font-size: 14px;
}

.checkout-application .checkout-program-table-row:last-child {
  border-bottom: 0;
}

.checkout-application .checkout-program-index {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--checkout-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.checkout-application .checkout-program-table-name {
  min-width: 0;
}

.checkout-application .checkout-program-table-name strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--checkout-title);
}

.checkout-application .checkout-program-table-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkout-application .checkout-program-remove {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 8px;
  background: rgba(160, 26, 31, .08);
  color: var(--checkout-red);
  padding: 0;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}

.checkout-application .checkout-program-remove i {
  font-size: 14px;
  line-height: 1;
}

.checkout-application .checkout-program-remove:hover {
  background: rgba(160, 26, 31, .14);
  color: #8a161a;
}

.checkout-application .checkout-program-table-date strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--checkout-text);
}

.checkout-application .checkout-program-table-price {
  text-align: left;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .2rem;
}

.checkout-application .checkout-program-table-price .amount {
  color: var(--checkout-red);
  font-size: 14px;
  font-weight: 700;
}

.checkout-application .checkout-program-table-price small {
  color: #8c9199;
  font-size: 12px;
  white-space: nowrap;
}

.checkout-application .checkout-program-list:empty {
  min-height: 0;
}

.checkout-application .checkout-program-list:empty::after {
  content: 'Henüz program seçmediniz.';
  display: block;
  padding: 1rem .9rem;
  color: #8c9199;
  font-size: .8rem;
}

.checkout-application .form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--checkout-title);
  margin-bottom: .35rem;
}

.checkout-application .checkout-required {
  color: var(--checkout-red);
  font-weight: 700;
}

.checkout-application .form-control,
.checkout-application .form-select {
  border-color: var(--checkout-border);
  border-radius: 8px;
  min-height: 42px;
  font-size: 14px !important;
  color: var(--checkout-text);
  padding: .5rem .75rem;
  background-color: #fff;
}

.checkout-application textarea.form-control {
  min-height: auto;
  font-size: 14px !important;
}

.checkout-application .form-control::placeholder {
  color: #b0b6bf;
}

.checkout-application .checkout-field-hint {
  display: block;
  margin-top: .35rem;
  color: #8c9199;
  font-size: .72rem;
  line-height: 1.35;
}

.checkout-application .checkout-birth-row {
  --bs-gutter-x: .5rem;
}

.checkout-application .checkout-birth-row .form-select {
  min-height: 42px;
  padding-left: .5rem;
  padding-right: 1.75rem;
}

.checkout-application .checkout-radio-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.checkout-application .checkout-radio-option {
  display: inline-flex;
  align-items: center;
  margin: 0;
  min-height: auto;
  padding-left: 0;
}

.checkout-application .checkout-radio-option .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0 .45rem 0 0;
  float: none;
  border: 1px solid #b8bec8;
  cursor: pointer;
  flex: 0 0 auto;
}

.checkout-application .checkout-radio-option .form-check-input:checked {
  background-color: var(--checkout-red);
  border-color: var(--checkout-red);
}

.checkout-application .checkout-radio-option .form-check-label {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 1.4;
  color: var(--checkout-text);
  cursor: pointer;
}

.checkout-application .checkout-check-list {
  display: grid;
  gap: .55rem;
}

.checkout-application .checkout-checkbox-item.form-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin: 0;
  min-height: auto;
  padding: .75rem .85rem;
  border: 1px solid var(--checkout-border);
  border-radius: 10px;
  background: #fff;
  transition: border-color .15s ease, background-color .15s ease;
}

.checkout-application .checkout-checkbox-item.form-check:has(.form-check-input:checked) {
  border-color: rgba(160, 26, 31, .35);
  background: rgba(160, 26, 31, .03);
}

.checkout-application .checkout-checkbox-item .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin: .15rem 0 0;
  float: none;
  border: 1px solid #b8bec8;
  cursor: pointer;
  flex: 0 0 auto;
  background-color: #fff;
}

.checkout-application .checkout-checkbox-item .form-check-input:focus {
  border-color: rgba(160, 26, 31, .55);
  box-shadow: 0 0 0 .2rem rgba(160, 26, 31, .12);
}

.checkout-application .checkout-checkbox-item .form-check-input:checked {
  background-color: var(--checkout-red);
  border-color: var(--checkout-red);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.checkout-application .checkout-checkbox-item .form-check-label {
  flex: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--checkout-text);
  cursor: pointer;
}

.checkout-application .checkout-char-count {
  display: block;
  margin-top: .35rem;
  color: var(--checkout-muted);
  font-size: .72rem;
  text-align: right;
}

.checkout-application .checkout-total-strip,
.checkout-application .checkout-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
}

.checkout-application .checkout-total-strip {
  grid-template-columns: 1fr;
  margin-top: .65rem;
}

.checkout-application .checkout-total-strip > div:first-child,
.checkout-application .checkout-summary-grid > div {
  border: 1px solid var(--checkout-border);
  border-radius: 12px;
  padding: .75rem .85rem;
  background: #fafafa;
}

.checkout-application .checkout-summary-grid > div {
  min-height: 84px;
  background: #fff;
}

.checkout-application .checkout-total-strip small,
.checkout-application .checkout-summary-grid small {
  display: block;
  color: var(--checkout-muted);
  font-size: .72rem;
  margin-bottom: .2rem;
}

.checkout-application .checkout-total-strip strong,
.checkout-application .checkout-summary-grid strong {
  display: block;
  color: var(--checkout-title);
  font-size: .95rem;
  font-weight: 700;
}

.checkout-application .checkout-total-strip em,
.checkout-application .checkout-summary-grid em {
  display: block;
  color: var(--checkout-muted);
  font-style: normal;
  font-size: .72rem;
  margin-top: .1rem;
}

.checkout-application .checkout-subtitle {
  font-size: .88rem;
  font-weight: 700;
  color: var(--checkout-title);
  margin-bottom: .75rem;
}

.checkout-application .checkout-bank-note {
  display: grid;
  gap: .1rem;
  font-size: .82rem;
}

.checkout-application .checkout-bank-note span {
  color: var(--checkout-muted);
  font-size: .76rem;
}

.checkout-application .checkout-card-title--icon {
  align-items: center;
}

.checkout-application .checkout-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--checkout-red-soft);
  color: var(--checkout-red);
  flex: 0 0 auto;
  line-height: 1;
}

.checkout-application .checkout-card-icon i {
  display: block;
  font-size: 1.05rem;
  line-height: 1;
}

.checkout-application .checkout-payment-card .checkout-card-title h3 {
  margin-bottom: 0;
}

.checkout-application .checkout-input-icon-wrap {
  position: relative;
}

.checkout-application .checkout-input-icon-wrap .checkout-input-icon {
  position: absolute;
  top: 50%;
  left: .75rem;
  transform: translateY(-50%);
  color: #b0b6bf;
  font-size: 1rem;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

.checkout-application .checkout-input-icon-wrap--right .checkout-input-icon {
  left: auto;
  right: .75rem;
  pointer-events: auto;
  cursor: help;
}

.checkout-application .checkout-cvv-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b0b6bf;
  line-height: 1;
}

.checkout-application .checkout-cvv-help:hover,
.checkout-application .checkout-cvv-help:focus-visible {
  color: var(--checkout-red);
  outline: none;
}

.checkout-application .checkout-input-with-icon {
  padding-left: 2.35rem;
}

.checkout-application .checkout-input-with-icon-right {
  padding-right: 2.35rem;
}

.checkout-application .checkout-expiry-row {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.checkout-application .checkout-expiry-row .form-select {
  flex: 1 1 0;
  min-width: 0;
}

.checkout-application .checkout-expiry-sep {
  color: var(--checkout-muted);
  font-weight: 600;
}

.checkout-application .checkout-secure-note {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  background: rgba(160, 26, 31, .06);
  border: 1px solid rgba(160, 26, 31, .12);
}
.checkout-application .checkout-secure-note-icon {
  display: grid !important;
  place-items: center !important;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(160, 26, 31, .12);
  color: var(--checkout-red);
  flex-shrink: 0;
  line-height: 1;
  margin: 0; /* shape'ı kapsayıcıda ve içindeki ikon tam ortalanacak şekilde bırak */
}
.checkout-application .checkout-secure-note-icon i {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--checkout-red);
  margin: 0;
  text-align: center;
}

.checkout-application .checkout-secure-note strong {
  display: block;
  color: var(--checkout-red);
  font-size: .82rem;
  margin-bottom: .1rem;
}

.checkout-application .checkout-secure-note span {
  display: block;
  color: #8c9199;
  font-size: .74rem;
  line-height: 1.4;
}

.checkout-application .checkout-payment-summary-card .checkout-card-title h3 {
  margin-bottom: .2rem;
}

.checkout-application .checkout-payment-summary {
  display: grid;
  gap: 0;
}

.checkout-application .checkout-payment-summary-table {
  border: 1px solid var(--checkout-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.checkout-application .checkout-payment-summary-head,
.checkout-application .checkout-payment-summary-item {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 2fr) minmax(0, 1.2fr) minmax(0, .95fr);
  gap: .75rem;
  align-items: center;
}

.checkout-application .checkout-payment-summary-head {
  padding: .55rem .85rem;
  background: #f3f4f6;
  border-bottom: 1px solid var(--checkout-border);
}

.checkout-application .checkout-payment-summary-head span {
  font-size: 12px;
  font-weight: 600;
  color: #737983;
}

.checkout-application .checkout-payment-summary-head span:first-child {
  text-align: center;
}

.checkout-application .checkout-payment-summary-head span:last-child {
  text-align: right;
}

.checkout-application .checkout-payment-summary-body {
  display: grid;
}

.checkout-application .checkout-payment-summary-item {
  padding: .75rem .85rem;
  border-bottom: 1px solid var(--checkout-border);
}

.checkout-application .checkout-payment-summary-item:last-child {
  border-bottom: 0;
}

.checkout-application .checkout-payment-summary-index {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--checkout-red-soft);
  color: var(--checkout-red);
  font-size: 11px;
  font-weight: 700;
  justify-self: center;
}

.checkout-application .checkout-payment-summary-program-name,
.checkout-application .checkout-payment-summary-program-date {
  min-width: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--checkout-text);
}

.checkout-application .checkout-payment-summary-program-name {
  font-weight: 700;
}

.checkout-application .checkout-payment-summary-program-date {
  font-weight: 600;
}

.checkout-application .checkout-payment-summary-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--checkout-title);
  white-space: nowrap;
  text-align: right;
}

.checkout-application .checkout-payment-summary-price--discount {
  color: var(--checkout-red);
  font-weight: 700;
}

.checkout-application .checkout-payment-summary-coupon {
  margin-top: 1rem;
}

.checkout-application .checkout-payment-summary-coupon .form-label {
  margin-bottom: .45rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--checkout-title);
}

.checkout-application .checkout-payment-summary-coupon-row {
  display: flex;
  align-items: stretch;
  gap: .65rem;
}

.checkout-application .checkout-payment-summary-coupon-row .form-control {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 14px;
}

.checkout-application .checkout-payment-summary-coupon-row .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.checkout-application .checkout-payment-summary-coupon-message {
  margin-top: .65rem;
}

.checkout-application .checkout-payment-summary-coupon-message .alert {
  font-size: 13px;
}

.checkout-application .checkout-payment-summary-totals {
  margin-top: 1rem;
  border: 1px solid var(--checkout-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.checkout-application .checkout-payment-summary-totals-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.checkout-application .checkout-payment-summary-totals-table th,
.checkout-application .checkout-payment-summary-totals-table td {
  padding: .75rem .85rem;
  border-bottom: 1px solid var(--checkout-border);
  vertical-align: middle;
}

.checkout-application .checkout-payment-summary-totals-table tr:last-child th,
.checkout-application .checkout-payment-summary-totals-table tr:last-child td {
  border-bottom: 0;
}

.checkout-application .checkout-payment-summary-totals-table th {
  width: 58%;
  font-size: 13px;
  font-weight: 700;
  color: var(--checkout-title);
  text-align: left;
}

.checkout-application .checkout-payment-summary-totals-table td {
  width: 42%;
  font-size: 14px;
  font-weight: 700;
  color: var(--checkout-title);
  text-align: right;
  white-space: nowrap;
}

.checkout-application .checkout-payment-summary-totals-discount td {
  color: var(--checkout-red);
}

.checkout-application .checkout-payment-summary-totals-code td {
  font-size: 13px;
  font-weight: 600;
  color: var(--checkout-text);
  word-break: break-word;
  white-space: normal;
}

.checkout-application .checkout-payment-summary-totals-final th,
.checkout-application .checkout-payment-summary-totals-final td {
  background: rgba(160, 26, 31, .06);
}

.checkout-application .checkout-payment-summary-totals-final td {
  font-size: 18px;
  color: var(--checkout-red);
}

.checkout-application .checkout-sticky-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: #f7f8fa;
  border-top: 1px solid var(--checkout-border);
  box-shadow: 0 -8px 24px rgba(30, 34, 40, .06);
}

.checkout-application .checkout-sticky-footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom, 0px));
}

.checkout-application .checkout-sticky-captcha {
  flex: 0 0 auto;
}

.checkout-application .checkout-sticky-captcha > div {
  transform: scale(.92);
  transform-origin: center left;
}

.checkout-application .checkout-sticky-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: .65rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.checkout-application .checkout-btn-next,
.checkout-application .checkout-btn-pay {
  min-width: 220px;
  font-weight: 700;
  font-size: .84rem;
  padding: .65rem 1.1rem;
  border-radius: 8px;
  background: var(--checkout-red);
  border-color: var(--checkout-red);
}

.checkout-application .checkout-btn-next:hover,
.checkout-application .checkout-btn-pay:hover {
  background: #8a161a;
  border-color: #8a161a;
}

.checkout-application .checkout-btn-back {
  font-size: .82rem;
  font-weight: 600;
  padding: .65rem 1rem;
  border-radius: 8px;
}

.checkout-application .btn {
  font-size: .82rem;
}

.checkout-application .shopping-cart-item:not(.checkout-program-table-row) strong {
  font-size: .84rem !important;
  color: var(--checkout-title);
}

.checkout-application .checkout-program-table-row strong {
  font-weight: 600;
}

.checkout-application .shopping-cart-item .small,
.checkout-application .shopping-cart-item .price {
  font-size: .76rem !important;
}

.checkout-application .checkout-success-card h2 {
  font-size: 1.25rem;
  color: var(--checkout-title);
}

@media (max-width: 991.98px) {
  .checkout-application .checkout-program-table,
  .checkout-application .checkout-payment-summary-table {
    overflow-x: auto;
  }

  .checkout-application .checkout-program-table-head,
  .checkout-application .checkout-program-table-row,
  .checkout-application .checkout-payment-summary-head,
  .checkout-application .checkout-payment-summary-item {
    min-width: 620px;
  }

  .checkout-application .checkout-sticky-footer-inner {
    flex-wrap: wrap;
  }

  .checkout-application .checkout-sticky-captcha {
    flex: 1 1 100%;
  }

  .checkout-application .checkout-sticky-captcha > div {
    transform: scale(.92);
    transform-origin: top left;
  }

  .checkout-application .checkout-sticky-actions {
    flex: 1 1 100%;
    justify-content: stretch;
  }

  .checkout-application .checkout-btn-next,
  .checkout-application .checkout-btn-pay,
  .checkout-application .checkout-btn-back {
    width: 100%;
    min-width: 0;
  }

  .checkout-application .checkout-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .checkout-application .checkout-stepper {
    max-width: 100%;
  }

  .checkout-application .checkout-stepper-line {
    min-width: 1.25rem;
    margin: 0 .5rem;
  }

  .checkout-application .checkout-stepper-label {
    font-size: .78rem;
  }

  .checkout-application .checkout-card {
    padding: .95rem;
    border-radius: 12px;
  }

  .checkout-application .checkout-summary-grid {
    grid-template-columns: 1fr;
  }
}
