.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main {
  max-width: 350px;
  width: 100%;
  height: auto;
}

@media(max-width:34em) {
  .main {
    min-width: 150px;
    width: auto;
  }
}

.quote_heading {
  width: 100%;
  border-bottom: 1px solid gainsboro;
  margin: 0 auto;
}

.quote_heading h2 {
  font-size: 35px;
  color: black;
  font-weight: 600;
  z-index: 2000;
  text-align: center;
}


.quote_container {
  display: flex;
  padding: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px;
}

.quote_item_1 {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}

.quote_item_2 {
  width: 400px;
  height: 150px;
  display: flex;
}

.quote_item_1 .select_container {
  width: 100%;
  height: 50px;
  margin: 5px;
}

.quote_item_2 .table_container {
  width: 100%;
}

.quote_item_1 .info_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

.quote_item_1 .info_container .info_items {
  width: 60%;
  /* Adjusted width to make room for the slider */
  margin-left: 10px;
}

.info_items label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.info_items #supplier_email {
  width: 300px;
}

/* Container for the slider and text */
.slider-container {
  display: flex;
  margin-left: 1px;
  width: 200px;
}

/* Hide the default checkbox */
.slider-checkbox {
  display: none;
}

/* Create the slider (toggle switch) */
.slider-label {
  position: relative;
  width: 50px;
  height: 25px;
  background-color: #ccc;
  border-radius: 34px;
  cursor: pointer;
  margin-right: 10px;
}

.slider-label::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  top: 3.5px;
  left: 4px;
  transition: 0.4s;
}

/* Change background color and move the slider when checked */
.slider-checkbox:checked+.slider-label {
  background-color: #4caf50;
}

.slider-checkbox:checked+.slider-label::before {
  transform: translateX(24px);
}


optgroup {
  margin-bottom: 10px !important;
  line-height: 10px;
}

.bgWhite {
  background-color: white;
}

.docuNationText {
  color: black;
  vertical-align: unset;
}

.docuNationTextGreen {
  font-size: 35px;
  color: green;
  vertical-align: unset;
}


/* Adjusting the flex container */
.selectContainer {
  display: flex;
  align-items: center;
  width: 800px;
  /* Increased container width to accommodate larger elements */
  margin-top: 130px;
  padding-bottom: 30px;
  position: absolute;
  margin-left: 250px;
}

/* Increase the width of #supplierSelect */
.selectContainer select {
  width: 60%;
  /* Increased width of supplierSelect */
  height: 50px;
  margin: 5px;
}

/* Increase the width of #setPoSelect */
#setPoSelect {
  width: 40%;
  /* Increased width of setPoSelect */
  margin-left: 10px;
  /* Space between supplierSelect and setPoSelect */
}

/* Ensures consistent styling for form elements */
.form-select {
  height: 100%;
  padding: 5px;
}

#purchaseOrderSelect_1 {
  width: 100%;
  /* Adjust this value to your preference */
  height: 50px;
  /* Ensure consistent height */
}


.width100-height100 {
  width: 100%;
  height: 100%;
}

.width100 {
  width: 400px;
}

.width100 th {
  width: 150px;
}

.mt10 {
  margin-top: 10px;
}

.mt80 {
  margin-top: 80px;
}

.padding5 {
  padding: 5px;
}

.ml25 {
  margin-left: 25px;
}

.itemSelect {
  border: 1px solid #d2d6da;
  width: 100%;
  margin-top: 2px;
  border-radius: 5px;
  height: 38px;
  background-color: white;
  color: black;
}

.fw800 {
  font-weight: 800;
}

.width250 {
  width: 250px !important;
}



.rowRemoveBtn {
  display: flex;
  justify-content: flex-end;
  /* Align the icon to the right */
  align-items: center;
  /* Vertically center the icon */
  height: 100%;
  /* Ensure the button takes the full height of the cell */
  padding-right: 10px;
  /* Add some space between the icon and the cell border */
  margin-top: 10px;
}

.rowRemoveBtn i {
  font-size: 24px;
  /* Make the icon bigger */
  color: red;
  /* Red color for the icon */
  cursor: pointer;
  /* Show pointer on hover */
  transition: transform 0.2s ease;
  /* Smooth hover effect */
}

.rowRemoveBtn i:hover {
  transform: scale(1.2);
  /* Slightly increase size on hover */
}


.customButtons #addRow {
  display: none;
}


#bill_heading {
  width: 130px;
  /* Adjust width as needed */
}

.buttonSection {
  width: 130px;
  /* Adjust width as needed */
}

#confirmationRemoveBillRow {
  position: fixed;
  width: 400px;
  z-index: 9999999;
  background-color: transparent;
  animation: fadeInFromLeft 0.5s ease forwards;
  transition: left 0.5s ease;
  top: 0;
  bottom: 0;
  height: 400px;
  /* Keep this, but only scroll the modal body */
  overflow: hidden;
  /* Prevent the entire modal from scrolling */
}

#confirmationRemoveBillRow .modal-body {
  height: 100px;
}

.close-button {
  cursor: pointer;
}

#payment_terms {
  height: 42px;
}

table.balance td {
  text-align: left !important;
  vertical-align: middle !important;
  padding-bottom: 15px !important;
  font-size: 15px !important;
}