.checkout-section .yellow-line-divider {
  height: 1px;
  border-bottom: 1px solid #b87332;
  margin: 25px 0 20px;
}

.checkout-section {
  max-width: 900px;
  margin: auto;
  /* font-family: "Raleway"; */
}

.checkout-section .checkout-title {
  color: #884200;
  font-size: 38px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;

  width: 500px;
  flex-shrink: 0;
  overflow: hidden;
  word-break: normal
}

.checkout-section .checkout-title .back-step-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 2px solid #884200;
  color: #884200;
}

.checkout-section .checkout-title .back-step-btn svg {
  font-size: 15px;
}

.checkout-section .step-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Raleway";
  padding-bottom: 15px;
  margin-bottom: 25px;

  border-bottom: 2px solid #e8e7e7;
}

.checkout-section .step-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkout-section .step-item .circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #1f2a44;
  color: #343434;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.checkout-section .step-item .label {
  font-size: 16px;
  font-weight: 500;
  color: #343434;
}

.checkout-section .line {
  max-width: 100px;
  width: 100px;
  height: 1px;
  background: #1f2a44;
  box-shadow: 0 1px 1px #1f2a44;
}

.checkout-section .step-item.completed .circle {
  background: #fce0c4;
  border-color: #fce0c4;
  color: #b87332;
}

.checkout-section .step-item.completed .label {
  color: #b87332;
}

.checkout-section .step-item.completed+.line {
  background: #b87332;
  box-shadow: 0 1px 1px #b87332;
}

.checkout-section .step-item.active .circle {
  background: #b87332;
  color: #ffffff;
  border: 1px solid #b87332;
}

.checkout-section .step-item.active .label {
  color: #b87332;
  font-weight: 600;
}

.checkout-section .step-item.active+.line {
  background: #1f2a44;
}

.checkout-section .form-box {
  background: #ffffff;
  padding: 20px 30px;

  box-shadow: 0px 0px 3px #00000029;
}

.checkout-section .form-box .form-title {
  color: #2c2c2c;
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 600;
}

.checkout-section .form-box .row-wrapper {
  margin-bottom: 20px;
}

.checkout-section .form-box .form-group {
  margin-bottom: 15px;
}

.checkout-section .form-box .check-row .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 0px;
  border-color: #343434;
}

.checkout-section .form-box .check-row .custom-check .form-check-input:checked {
  background-color: #343434;
  border-color: #343434;
}

.checkout-section .custom-check .form-check-label {
  color: #202020;
  font-size: 14px;
  margin: 4px 5px;
}

.checkout-section .form-box .check-row .custom-check .form-check-input:focus {
  box-shadow: none;
  border-color: #343434;
}

.checkout-section .form-box .check-row .custom-check .form-check-input:hover {
  cursor: pointer;
}

.checkout-section .form-box .css-b62m3t-container {
  font-size: 14px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .checkout-section .checkout-title {
    font-size: 33px;
    margin-bottom: 10px;
  }

  .checkout-section .checkout-title .back-step-btn {
    height: 25px;
    width: 25px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .checkout-section .checkout-title {
    font-size: 28px;
    margin-bottom: 8px;
    gap: 5px;
  }

  .checkout-section .checkout-title .back-step-btn {
    height: 22px;
    width: 22px;
  }

  .checkout-section .checkout-title .back-step-btn svg {
    font-size: 12px;
  }

  .checkout-section .step-item .label {
    font-size: 15px;
  }

  .checkout-section .step-item .circle {
    width: 27px;
    height: 27px;
    font-size: 14px;
  }
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .checkout-section .step-item .circle {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .checkout-section .step-item .label {
    font-size: 13px;
  }

  .checkout-section .checkout-title {
    font-size: 25px;
    margin-bottom: 9px;
    gap: 4px;
  }

  .checkout-section .checkout-title .back-step-btn svg {
    font-size: 12px;
  }

  .checkout-section .checkout-title .back-step-btn {
    height: 20px;
    width: 20px;
  }

  .checkout-section .form-box {
    padding: 10px 15px;
  }

  .checkout-section .custom-check .form-check-label {
    font-size: 13px;
  }

  .checkout-section .step-inline {
    padding-bottom: 12px;
    margin-bottom: 15px;
  }

  .checkout-section .form-box .row-wrapper {
    margin-bottom: 5px;
  }

  .checkout-section .yellow-line-divider {
    margin: 20px 0 15px;
  }

  .checkout-section .form-box .form-title {
    font-size: 14px;
    margin-bottom: 15px;
  }
}