.formular {
  width: 98%;
  max-width: 1020px;
  height: auto;
  margin: auto;
  background-color: #faf5eb;
  box-shadow: 2px 2px 7px 1px #000000;
  overflow: hidden;
}

.product {
  position: relative;
  border: #a0d6c3 solid 1px;
  border-radius: 10px;
  width: 95%;
  max-width: 960px;
  height: auto;
  padding: 5px;
  margin: auto;
  background-color: #f2f2f2;
  overflow: hidden;
  margin-top: 20px;
}

.dropButton {
  width: 45px;
  height: 25px;
  position: absolute;
  background-image: url("../assets/sprites/arrow.png");
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  right: 5px;
  top: 5px;
  cursor: pointer;
  border: solid 1px #a0d6c3;
  border-radius: 7px;
  z-index: 9;
}

.dropButton:hover {
  background-color: #a0d6c375;
}

.deleteButton {
  width: 45px;
  height: 25px;
  position: absolute;
  background-image: url("../assets/sprites/bin.png");
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  right: 65px;
  top: 5px;
  cursor: pointer;
  border: solid 1px #ff2600;
  border-radius: 7px;
  z-index: 9;
}

.deleteButton:hover {
  background-color: #ff260075;
}

.duplicateButton {
  width: 45px;
  height: 25px;
  position: absolute;
  background-image: url("../assets/sprites/duplicate.png");
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  right: 125px;
  top: 5px;
  cursor: pointer;
  border: solid 1px #a0d6c3;
  border-radius: 7px;
  z-index: 9;
}

.duplicateButton:hover {
  background-color: #a0d6c375;
}

.radioButtonContainer {
  position: relative;
  height: 160px;
  width: 100%;
  min-width: 240px;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: black;
  padding-left: 20px;
}

.radioButtonInnerContainer {
  position: relative;
  width: 150px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 20px;
  color: black;
}

.checkboxContainer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 200px;
  text-align: left;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  margin: auto;
}

.checkboxContainer input[type="checkbox"] {
  opacity: 100;
}

.checkboxContainer label {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  color: black;
  padding-left: 32px;
}

.checkboxContainer label::before,
.checkboxContainer label::after {
  position: absolute;
  content: "";
  display: inline-block;
}

.checkboxContainer label::before {
  height: 25px;
  width: 25px;
  border: 1px solid;
  left: 0px;
  top: 3px;
  border-radius: 50%;
}

.checkboxContainer label::after {
  height: 10px;
  width: 17px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  left: 4px;
  top: 7px;
}

.checkboxContainer input[type="checkbox"]+label::after {
  content: none;
}

.checkboxContainer input[type="checkbox"]:checked+label::after {
  content: "";
}

.checkBoxGroupTitle {
  width: 100%;
  font-size: 16px;
  text-align: left;
  padding-left: 10px;
}

.checkboxContainer2 {
  display: flex;
  min-width: 160px;
  text-align: left;
  height: 30px;
  margin-left: 10px;
}

.checkboxContainer2 label {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  color: black;
  padding-left: 30px;
}

.checkboxContainer2 label::before,
.checkboxContainer2 label::after {
  position: absolute;
  content: "";
  display: inline-block;
}

.checkboxContainer2 label::before {
  height: 18px;
  width: 18px;
  border: 1px solid;
  border-radius: 50%;
  left: 0px;
  top: 3px;
}

.checkboxContainer2 label::after {
  height: 8px;
  width: 12px;
  border-left: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg);
  left: 3px;
  top: 7px;
}

.checkboxContainer2 input[type="checkbox"]+label::after {
  content: none;
}

.checkboxContainer2 input[type="checkbox"]:checked+label::after {
  content: "";
}

.dropDownContainer {
  position: relative;
  width: 100%;
  min-width: 260px;
  max-width: 960px;
  display: flex;
  flex-wrap: wrap;
  color: black;
  margin-bottom: 20px;
}

.selectionTitle {
  font-size: 16px;
  text-align: left;
  margin-left: 5px;
}

.selectionContainer {
  width: 45%;
  min-width: 280px;
  max-width: 350px;
  margin-left: 10px;
  margin-right: 10px;
}

.stkContainer {
  width: 140px;
  margin-left: 10px;
  margin-right: 52px;
}

.selectdiv {
  position: relative;
  float: left;
  width: 100%;
}

select::-ms-expand {
  display: none;
}

.selectdiv:after {
  content: "<>";
  font: 17px "Consolas", monospace;
  color: black;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: black;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid black;
  -ms-word-break: normal;
  word-break: normal;
}

input[type="text"],
select {
  height: 1.8rem;
  width: 100%;
  padding: 12px 20px;
  margin: 0px 0;
  display: inline-block;
  border: 2px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="submit"] {
  width: 80%;
  background-color: #4caf50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.deliveryAddressContainer {
  width: calc(96% - 10px);
  margin-left: 10px;
}

.projectTitle {
  text-align: left;
}

.projectName {
  width: 94%;
  margin-left: 3%;
}

.credentialsInput {
  height: 1.8rem !important;
  border-bottom: solid 1px black !important;
}

.credentialsBox {
  width: 96%;
  max-width: 960px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.credentialsContainer {
  width: auto;
  border-radius: 5px;
  min-width: 240px;
}

.credentialsTitle {
  text-align: left;
  height: 30px;
  line-height: 30px;
  color: black;
}
.positionTitle {
  text-align: left;
  line-height: 30px;
  color: black;
  font-weight: bold;
  margin-right: 120px;
  margin-left: 10px;
}

.intParamBox {
  background-color: #45a04900;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.intParamInnerBox {
  background-color: #45a04900;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.textInputBoxContainer {
  width: auto;
  border-radius: 5px;
  width: 120px;
  margin-left: 10px;
}

.intParamTitle {
  font-size: 16px;
  text-align: left;
}

.textBox {
  height: 50px;
  line-height: 50px;
  color: black;
}

.sendButton {
  width: 100%;
  max-width: 280px;
  height: 50px;
  border: solid 1px #a0d6c3;
  border-radius: 5px;
  margin: auto;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 2px 2px 7px 1px #000000;
}

.sendButton:hover {
  box-shadow: 3px 3px 8px 1px #000000;
}

.addProductButton {
  width: 100%;
  max-width: 48px;
  height: 24px;
  background-image: url("../assets/sprites/plus.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: solid 1px #a0d6c3;
  border-radius: 5px;
  margin: auto;
  text-align: center;
  cursor: pointer;
  box-shadow: 2px 2px 7px 1px #000000;
}

.addProductButton:hover {
  box-shadow: 3px 3px 8px 1px #000000;
  background-color: #a0d6c375;
}

.addProductButton.hidden {
  /* Styles for the hidden state */
  height: 0;
  opacity: 0;
  box-shadow: none;
  border: none;
  line-height: 0;
  overflow: hidden;
}

.customRadioButtonContainerBox {
  width: 100%;
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  color: black;
}

.customRadioButtonContainer {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  width: auto;
  cursor: pointer;
  width: 190px;
  min-width: 190px;
  margin-left: 8px;
}

.customRadioButton {
  height: 20px;
  width: 20px;
  margin-top: 4px;
  border: 1px solid black;
  border-radius: 50%;
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.customRadioButtonLabel {
  font-size: 20px;
  margin-left: 8px;
  text-align: left;
}

.customRadioButtonContainerLargeBox {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: 20px;
}

.customRadioButtonContainerLarge {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  width: auto;
  cursor: pointer;
  min-width: 220px;
  margin-left: 8px;
}

.customRadioButtonLarge {
  height: 26px;
  width: 26px;
  cursor: pointer;
  margin-top: 8px;
  border: 1px solid black;
  border-radius: 50%;
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.customRadioButtonLargeLabel {
  font-size: 30px;
  margin-left: 0px;
  text-align: left;
  cursor: pointer;
}


/* Custom tooltip styles */
.custom-tooltip {
  background-color: #f8f8f8;
  /* Lighter background color */
  color: #333;
  /* Darker text color for readability */
  font-size: 13px;
  padding: 4px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Add a subtle box shadow */
}


@media (max-width: 675px) {
  .selectionContainer{
    width: 100%;
    min-width: 240px;
  }
}




.option-image {
  position: relative;
  width: 90%; /* Set the desired image width */
 /* height: auto;  Set the desired image height */
  aspect-ratio: 3/1; /**/
  margin-top: 7px;
  margin-left: 10px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}


 /* Style for the popup container */
 .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* semi-transparent black */
  z-index: 9999; /* Ensure the popup is on top */
}

/* Style for the popup content */
.popup-content {
  position: fixed;
  min-width: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #faf5eb;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 18px;
}

/* Style for the close button */
.close-button {
  width: 90%;
  max-width: 100px;
  height: 32px;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 2px 2px 7px 1px #000000;
  text-align: center;
  border: solid 1px #a0d6c3;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  line-height: 32px;
  font-size: 19px;
  font-weight: bold;
}


/* Style for the close button */
.del-yes-button {
  width: 40%;
  max-width: 100px;
  height: 32px;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 2px 2px 7px 1px #000000;
  text-align: center;
  border: solid 1px #a0d6c3;
  border-radius: 5px;
  left: 5%;
  line-height: 32px;
  font-size: 19px;
  font-weight: bold;
}

/* Style for the close button */
.del-no-button {
  width: 40%;
  max-width: 100px;
  height: 32px;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: 2px 2px 7px 1px #000000;
  text-align: center;
  border: solid 1px #a0d6c3;
  border-radius: 5px;
  right: 5%;
  line-height: 32px;
  font-size: 19px;
  font-weight: bold;
}
