.nsd-wf-notifcation {
  --bg: #fff;
  --clr: #03a65a;
  --brd: #c8e6c9;
  --tr: all 0.3s ease;

  background: var(--bg);
  color: var(--clr);
  padding: 16px 32px 16px 48px;
  text-align: left;
  border-radius: 8px;
  position: fixed;
  top: 40px;
  right: 14px;
  font-weight: 300;
  min-width: 250px;
  border: 2.4px solid var(--brd);
  box-shadow: 0 0 24px 0 #1a1f4360;
  transform: translateX(50%);
  opacity: 0;
  z-index: 9999;
  transition: var(--tr);
}

.nsd-wf-notifcation.success {
  --clr: #03a65a;
  --brd: #c8e6c9;
}

.nsd-wf-notifcation.error {
  --clr: #db3056;
  --brd: #ffcdd2;
}

.nsd-wf-notifcation.show {
  opacity: 1;
  transform: translateX(0);
}

.nsd-wf-notifcation::before {
  content: "";
  position: absolute;
  width: 8px;
  height: calc(100% - 24px);
  top: 12px;
  left: 8px;
  z-index: 0;
  border-radius: 16px;
  background: var(--clr);
}

.nsd-wf-notifcation h3 {
  font-size: 18px !important;
  margin: 0 0 0.2rem;
  font-weight: 600;
  position: relative;
  color: var(--clr);
}

.nsd-wf-notifcation p {
  margin: 0;
  font-size: 15px !important;
  color: #333;
}

.nsd-wf-form {
  margin: 0 auto;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #222;
}

.nsd-wf-form h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.ts-control {
  padding: 14px;
  border: 1px solid #bbbbbb;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  font-size: 16px;
}

.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 8px 8px;
}

.ts-dropdown-content {
  max-height: 300px;
}

.nsd-wf-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}

.nsd-wf-form input,
.nsd-wf-form select {
  width: 100%;
  padding: 14px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background: white;
  outline: none;
  border: 1px solid #bbbbbb;
}

.nsd-wf-form input:focus,
.nsd-wf-form select:focus {
  border: 1px solid black;
}

.nsd-wf-form .nsd-wf-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nsd-wf-form .nsd-wf-col-2 {
  flex: 1;
  min-width: 48%;
}

.nsd-wf-form .nsd-wf-col-3 {
  flex: 1;
  min-width: 30%;
}

.nsd-wf-form .product-entry-group {
  margin-bottom: 1rem;
}

.nsd-wf-form .product-entry-group input {
  margin-bottom: 0.25rem;
}

.nsd-wf-form .nsd-wf-submit {
  margin-top: 10px;
}

.nsd-wf-form .nsd-wf-submit {
  padding: 12px 24px;
  border-radius: 10px;
  border: 0;
  background-color: black;
  letter-spacing: 1.5px;
  font-size: 15px;
  transition: all 0.3s ease;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
}

.nsd-wf-form .nsd-wf-field-container {
  display: flex;
  gap: 10px;
}

.nsd-wf-form .nsd-wf-field.nsd-wf-field--half {
  width: 50%;
}

.nsd-wf-form .nsd-wf-field.nsd-wf-field--third {
  width: 33%;
}
.nsd-wf-product-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nsd-wf-product-option .nsd-wf-product-thumb img {
  width: 40px;
  height: auto;
  display: block;
}

.nsd-wf-product-name {
  font-size: 14px;
}
