/* form components begins here */

.form-container {
  display: flex;
  flex-direction: column;
}

.card.bg-dark .form-control {
  background-color: transparent;
  color: var(--primary-color);
}

.form-control {
  padding: 0.75rem var(--common-size);
  border: 1px solid var(--border-color);
  font-size: var(--font-size-14);
}

.form-control:focus {
  border-color: var(--border-green);
  box-shadow: var(--box-shadow-hover);
}

.form-container .footer .btn,
.btn-button {
  padding: 0.625rem var(--common-size);
  min-width: 120px;
}

.form-container .footer h6 {
  margin-bottom: 0;
  color: var(--text-grey);
}

.hide-this {
  display: none;
  transition: all 0.15s ease-in-out;
}

.btn-outline-back {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.btn-outline-back:hover {
  color: var(--bs-green);
  border-color: var(--bs-green);
  background-color: transparent;
}

.btn-success:hover {
  border-color: var(--primary-color);
}

.btn-button i {
  padding-right: 0.5rem;
}

label.required:after, .required:after {
  content: "*";
  color: var(--bs-danger);
  padding-left: 3px;
}
.card-header button.ico-circle {
  border-radius: var(--border-radius-half);
}
.card-header button.ico-circle i {
  color: var(--text-grey);
}
.card-header button.ico-circle i:hover {
  color: var(--primary-color);
}
.payment-confirmation span, .payment-confirmation label {
  font-size: 1rem;
}
.otp-items input[type=text] {
  max-width: 50px;
  text-align: center;
}
.otp-resend a {
  text-decoration: none;
}
/* collections -invoice Module -Start here -(Selva)  */

.center-content-newBill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.bill-form-wrapper {
  width: 100%;
}

.bill-form-wrapper .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5L8 12l6.5-6.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: var(--card-body-bg);
  color: var(--primary-color);
  background-size: 1rem;
  font-size: var(--font-size-14);
  padding: 12px;
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
  background-size: 1rem !important;
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
  background-size: 1rem !important;
}

.card-header .step-number {
  width: 20px;
  height: 20px;
  font-size: 13px;
}

.steps-container i {
  color: var(--text-grey);
}
/* calendar icon position */
form .input-icon {
  color: var(--white-opa-07);
  position: absolute;
  right: 12px;
  top: 48%;
  transform: translateY(-48%);
  cursor: pointer;
}

.form-control.is-invalid + .input-icon, .form-control.is-valid + .input-icon{
  right: 30px;
}

.billDetail-btn button {
  width: 120px;
  margin-bottom: 16px;
}

input[type="file"]::file-selector-button {
  display: none;
  /* Hides the default “Choose File” button */
}

.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){
  border-radius: 0.375rem;
}

input[type="file"] {
  color: transparent;
}

form .item-container {
  background-color: var(--card-bg);
  border-radius: 8px 8px 0px 0px;
}

.item-container button {
  background-color: var(--btn-bg);
  border: 1px solid var(--btn-border);
  border-radius: 8px;
  width: 28px;
  height: 28px;
  padding: 0;
}

.item-container .delete-item i {
  color: var(--bs-green);
  font-size: medium;
}

.DoubleAltArrowRight {
  /* These values are tuned to produce a noticeable green tint */
  filter: invert(27%) sepia(79%) saturate(432%) hue-rotate(83deg)
    brightness(101%) contrast(101%);
}

/* collections -invoice Module - ends here*/
