@charset "UTF-8";
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

input::-moz-placeholder { /* Firefox 19+ */
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

input:-ms-input-placeholder { /* IE 10+ */
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

input:-moz-placeholder { /* Firefox 18- */
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-control p {
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .form-control p {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 5px;
  }
}

.field {
  position: relative;
  background-color: #393939;
  border-radius: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 10px;
  background-color: #393939;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  line-height: 22px;
  outline: none;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
}
.field input:focus + label, .field input:valid + label, .field select:focus + label, .field select:valid + label, .field textarea:focus + label, .field textarea:valid + label {
  opacity: 0;
}
.field input, .field textarea {
  caret-color: #fff;
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.field label {
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 14px;
  line-height: 22px;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.2s ease;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
}
.field .submit {
  border-radius: 60px;
  overflow: hidden;
  width: 220px;
  display: inline-flex;
  background-color: #393939;
  padding: 2px;
}
.field .submit input[type=submit] {
  border-radius: 60px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 16px;
  position: relative;
  z-index: 1;
}
.field label.error {
  position: absolute;
  left: auto;
  top: auto !important;
  right: 0;
  bottom: -15px;
  transform: none !important;
  font-size: 12px;
  white-space: nowrap;
  opacity: 1;
  line-height: 14px;
  color: red;
}
@media (max-width: 768px) {
  .field input, .field select {
    padding: 12px;
    font-size: 14px;
    line-height: 19px;
  }
  .field .submit input[type=submit] {
    padding: 12px;
  }
  .field label {
    top: 12px;
    font-size: 14px;
  }
  .field #contactnum, .field #contactnum2 {
    height: 100%;
  }
  .field.contactnum_label label, .field.contactnum_label label {
    top: 50%;
    transform: translateY(-50%);
  }
}
.field textarea {
  height: 90px;
}

.field input:not(:-moz-placeholder) ~ label.gradient {
  opacity: 0;
}

.field input:focus ~ label.gradient,
.field input:not(:placeholder-shown) ~ label.gradient {
  opacity: 0;
}

.upload-field {
  position: relative;
  width: 100%;
}
.upload-field input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.upload-field .upload {
  background: #3b3b3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 15px;
  border-radius: 10px;
  background-color: #393939;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  line-height: 22px;
  outline: none;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
}
.upload-field .upload .upload-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 85%;
}
.upload-field .upload .upload-icon {
  font-size: 20px;
  opacity: 0.7;
}

#selectedcategoryNominateForm #uploadFile-error {
  position: absolute;
  top: auto;
  left: 0;
  bottom: -15px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 1;
  line-height: 14px;
  color: red;
}

.radiobtn {
  padding: 18px 15px;
  background-color: #393939;
  border-radius: 10px;
  position: relative;
  /* hide default radio */
  /* custom circle */
}
.radiobtn label.error {
  position: absolute;
  left: auto;
  top: auto;
  right: 0;
  bottom: -15px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 1;
  line-height: 14px;
  color: red;
}
.radiobtn .form-control {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 5px;
}
.radiobtn label {
  font-size: 14px;
  line-height: 22px;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.radiobtn .radio-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #fff;
  position: relative;
}
.radiobtn .radio-wrap input {
  display: none;
}
.radiobtn .radio-ui {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fff;
  position: relative;
}
.radiobtn .radio_gradient {
  font-weight: 500;
}
.radiobtn .radio-wrap input:checked ~ .radio_gradient {
  font-weight: 500;
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.radiobtn .radio-wrap input:checked + .radio-ui {
  border: 0;
  padding: 2px;
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
}
@media (max-width: 768px) {
  .radiobtn {
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .radiobtn label {
    font-size: 14px;
    line-height: 19px;
  }
}

#categoryopto {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 0;
  font-size: 12px;
  line-height: 1;
  color: white;
  font-family: "Roboto", "sans-serif";
  font-weight: 300;
}
#categoryopto span {
  cursor: default;
  height: 26px;
  padding: 0 0px 0 10px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
#categoryopto span::before {
  content: "";
  position: absolute;
  border-radius: 20px;
  inset: 0;
  padding: 1px; /* border width */
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
#categoryopto span button {
  display: inline-block;
  background-color: red;
  padding: 5px;
  cursor: pointer;
  border-radius: 20px;
  width: 24px;
  height: 24px;
  margin: 1px 1px 0 0;
}
@media (max-width: 768px) {
  #categoryopto {
    gap: 5px;
    font-size: 10px;
    line-height: 1;
  }
}

.custom-select, .custom-sselect {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #393939;
  border-radius: 10px;
}
.custom-select .arrow, .custom-sselect .arrow {
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: url(../images/common/ic_arrow_g.webp) no-repeat center center;
  background-size: cover;
  position: absolute;
  left: auto;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.custom-select .arrow.placeholder, .custom-select .arrow.splaceholder, .custom-sselect .arrow.placeholder, .custom-sselect .arrow.splaceholder {
  opacity: 0.5;
}
.custom-select .select-selected, .custom-select .sselect-selected, .custom-sselect .select-selected, .custom-sselect .sselect-selected {
  position: relative;
  z-index: 0;
  width: 100%;
  padding: 14px 30px 14px 15px;
  border-radius: 10px;
  background-color: #393939;
  background-image: linear-gradient(90deg, rgb(231, 170, 81), rgb(255, 228, 153), rgb(187, 144, 91), rgb(231, 170, 81), rgb(172, 112, 49));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  line-height: 22px;
  outline: none;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
}
.custom-select .select-selected.placeholder, .custom-select .select-selected.splaceholder, .custom-select .sselect-selected.placeholder, .custom-select .sselect-selected.splaceholder, .custom-sselect .select-selected.placeholder, .custom-sselect .select-selected.splaceholder, .custom-sselect .sselect-selected.placeholder, .custom-sselect .sselect-selected.splaceholder {
  background-image: linear-gradient(90deg, rgba(231, 170, 81, 0.3), rgba(255, 228, 153, 0.3), rgba(187, 144, 91, 0.3), rgba(231, 170, 81, 0.3), rgba(172, 112, 49, 0.3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.custom-select .select-items, .custom-select .sselect-items, .custom-sselect .select-items, .custom-sselect .sselect-items {
  overflow: hidden;
  border-radius: 10px;
  background: #393939;
  z-index: 10;
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
}
.custom-select .select-items.gradient-border::before, .custom-select .sselect-items.gradient-border::before, .custom-sselect .select-items.gradient-border::before, .custom-sselect .sselect-items.gradient-border::before {
  border-radius: 10px;
  padding: 1px;
  z-index: -1;
}
.custom-select .select-items div, .custom-select .sselect-items div, .custom-sselect .select-items div, .custom-sselect .sselect-items div {
  padding: 9px 15px;
  font-size: 14px;
  line-height: 22px;
  outline: none;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.custom-select .select-items div:hover, .custom-select .select-items div.active, .custom-select .sselect-items div:hover, .custom-select .sselect-items div.active, .custom-sselect .select-items div:hover, .custom-sselect .select-items div.active, .custom-sselect .sselect-items div:hover, .custom-sselect .sselect-items div.active {
  background: #f7dd08;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
}
.custom-select.open .select-items, .custom-select.open .sselect-items, .custom-sselect.open .select-items, .custom-sselect.open .sselect-items {
  max-height: 240px;
  overflow: auto;
  opacity: 1;
  transform: translateY(0);
}
.custom-select.open .arrow, .custom-sselect.open .arrow {
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .custom-select .select-selected, .custom-select .sselect-selected, .custom-sselect .select-selected, .custom-sselect .sselect-selected {
    padding: 12px 32px 12px 12px;
    font-size: 14px;
  }
  .custom-select.categoryselect .select-selected, .custom-sselect.categoryselect .select-selected {
    padding: 12px 32px 12px 12px;
    font-size: 14px;
    line-height: 19px;
  }
}

/* Chrome, Edge, Safari */
.select-items::-webkit-scrollbar, .sselect-items::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  position: absolute;
  right: 0;
  top: 0;
}

.select-items::-webkit-scrollbar-track, .sselect-items::-webkit-scrollbar-track {
  background: transparent;
}

.select-items::-webkit-scrollbar-thumb, .sselect-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

/* Firefox */
.select-items, .sselect-items {
  scrollbar-width: thin; /* ≈ 5px */
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.conditionradio .radio-ui {
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  position: relative;
  border: 0;
  width: 15px;
  height: 15px;
  border-radius: 15px;
}
.conditionradio .radio-ui::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #1f1f1f;
  border-radius: 15px;
}

.checkbox {
  display: inline-flex;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  position: relative;
}
.checkbox input {
  display: none;
}
.checkbox .checkbox-ui {
  width: 12px;
  height: 12px;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  position: relative;
  box-sizing: border-box;
}
.checkbox .checkbox-ui::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #1f1f1f;
  border-radius: 12px;
}
.checkbox .checkbox-ui::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
}
.checkbox input:checked + .checkbox-ui::after {
  opacity: 1;
}
.checkbox label.error {
  position: absolute;
  left: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  white-space: nowrap;
  opacity: 1;
  line-height: 14px;
  color: red;
}

/* Autofill background + text color fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  /* Gradient text */
  background: linear-gradient(90deg, #e7aa51, #ffe499, #bb905b, #e7aa51, #ac7031) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  caret-color: #ffffff; /* cursor visible */
}

textarea {
  resize: none;
}/*# sourceMappingURL=form.css.map */