:root {
  --textColor: #222;
  --borderColor: #222;
  --labelColor: #222;
  --darkColor: #222;
  --liteColor: #fff;
  --errorColor: red;
  --textBg: #fff;
  --validColor: green;
  --bgColor: #fff;
  --bgColor2: #eee;
  --labelColor: #6b6bea;
  --vcolor-1: red;
}

body {
  background-color: var(--bgColor);
}
body.dark {
  --textColor: #fff;
  --borderColor: #fff;
  --labelColor: #fff;
  --darkColor: #fff;
  --errorColor: #f57f7f;
  --validColor: #78f878;
  --liteColor: #16192d;
  --textBg: #16192d;
  --bgColor: #16192d;
  --bgColor2: #222;
  --labelColor: #b4b4f2;
  --vcolor-1: red;
}

/* HIDE INPUT NUMBER TYPE ARROWS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* UPLOAD IMG PREVIEW */
.dis0 {
  display: none;
}

/* BEGIN :: NEW FORM HOLDER */
.new-form-holder {
  /* BEGIN :: FLOATING INPUT */
  /* END :: FLOATING INPUT */
  /* BEGIN :: MATERIALIZE CHECKBOX */
  /* END :: MATERIALIZE CHECKBOX */
  /* RADIO BUTTON */
}
.new-form-holder .label-only {
  color: var(--textColor);
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.new-form-holder label.error {
  color: var(--errorColor);
  font-size: 14px;
}
.new-form-holder .inline-child > div {
  display: inline-block;
  margin-right: 15px;
}
.new-form-holder .floating-field-box {
  padding: 0px;
  margin-bottom: 10px;
}
.new-form-holder .floating-field-box .floating-labels {
  position: absolute;
  pointer-events: none;
  transition: 0.2s ease all;
  color: var(--textColor);
  font-size: 16px;
  display: block;
  top: 17px;
  left: 15px;
  width: calc(100% - 30px);
}
.new-form-holder .floating-field-box .floating-labels.active {
  top: 6px !important;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color: var(--textColor);
}
.new-form-holder .floating-field-box .floating-labels b {
  font-weight: normal;
}
.new-form-holder .floating-field-box .user-input-wrps {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.new-form-holder .floating-field-box .user-input-wrps .inputText {
  width: 100%;
  outline: none;
  border: none;
  box-shadow: none !important;
  padding: 25px 30px 10px 13px;
  background: var(--textBg);
  border: 2px solid var(--borderColor);
  border-radius: 6px;
  font-size: 16px;
  color: var(--textColor) !important;
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.file-type {
  padding-top: 10px;
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.file-type.error {
  padding-bottom: 20px;
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.active ~ .floating-labels {
  top: 6px !important;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color: var(--textColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText:focus {
  border-color: var(--borderColor);
  border-width: medium medium 2px;
  color: var(--textColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText:focus ~ .floating-labels {
  top: 6px !important;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color: var(--borderColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.error {
  border-color: var(--errorColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.error + label.error {
  color: var(--errorColor);
  position: relative;
  margin-top: -16px;
  left: 15px;
  background: var(--textBg);
  float: left;
  padding: 0 5px;
  font-size: 14px;
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.error ~ span.floating-labels::after {
  content: "\f057";
  position: absolute;
  right: -5px;
  top: 8px;
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 20px;
  color: var(--errorColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.valid {
  border-color: var(--validColor);
  position: relative;
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.valid ~ span.floating-labels {
  color: var(--validColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.valid ~ span.floating-labels::after {
  content: "\f058";
  position: absolute;
  right: -5px;
  top: 8px;
  font-family: "FontAwesome";
  font-weight: bold;
  font-size: 20px;
  color: var(--validColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.ignore.valid {
  border-color: var(--borderColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.ignore.valid ~ span {
  color: var(--textColor);
}
.new-form-holder .floating-field-box .user-input-wrps .inputText.ignore.valid ~ span::after {
  display: none;
}
.new-form-holder .floating-field-box.with-eye .user-input-wrps .inputText ~ button.view-show-pwd {
  position: absolute;
  right: 9px;
  top: 12px;
  border: none;
  background-color: transparent;
  color: var(--textColor);
}
.new-form-holder .floating-field-box.with-eye .user-input-wrps .inputText[type=text] ~ button.view-show-pwd .fa-eye {
  display: none;
}
.new-form-holder .floating-field-box.with-eye .user-input-wrps .inputText[type=password] ~ button.view-show-pwd .fa-eye-slash {
  display: none;
}
.new-form-holder .floating-field-box.with-eye .user-input-wrps .inputText.valid ~ span.floating-labels::after, .new-form-holder .floating-field-box.with-eye .user-input-wrps .inputText.error ~ span.floating-labels::after {
  display: none;
}
.new-form-holder .floating-field-box.pdf-only .user-input-wrps {
  position: relative;
}
.new-form-holder .floating-field-box.pdf-only .user-input-wrps::after {
  content: "\f1c1";
  position: absolute;
  right: 10px;
  top: 13px;
  font-family: "FontAwesome";
  color: var(--errorColor);
}
.new-form-holder .floating-field-box.excel-only .user-input-wrps {
  position: relative;
}
.new-form-holder .floating-field-box.excel-only .user-input-wrps::after {
  content: "\f1c3";
  position: absolute;
  right: 10px;
  top: 13px;
  font-family: "FontAwesome";
  color: var(--validColor);
}
.new-form-holder .floating-field-box .radio-box + label.error {
  color: var(--errorColor);
  position: relative;
  margin-top: 0;
  left: 0;
  float: none;
  padding: 0 5px;
  font-size: 14px;
}
.new-form-holder input:-webkit-autofill,
.new-form-holder input:-webkit-autofill:hover,
.new-form-holder input:-webkit-autofill:focus,
.new-form-holder input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: var(--textColor) !important;
}
.new-form-holder .materialize-checkbox {
  position: relative;
}
.new-form-holder .materialize-checkbox label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: var(--textColor);
}
.new-form-holder .materialize-checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  z-index: 0;
  border: 2px solid var(--textColor);
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}
.new-form-holder .materialize-checkbox label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 0;
  transform: scale(0);
  border-radius: 1px;
  margin-top: 2px;
  transition: 0.2s;
}
.new-form-holder .materialize-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0;
}
.new-form-holder .materialize-checkbox input[type=checkbox]:checked + label:before {
  top: -4px;
  left: -5px;
  width: 10px;
  height: 18px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid var(--textColor);
  border-bottom: 2px solid var(--textColor);
  transform: rotate(40deg);
  backface-visibility: hidden;
  transform-origin: 100% 100%;
}
.new-form-holder .materialize-checkbox input[type=checkbox]:not(.filled-in) + label:after {
  border: 0;
  transform: scale(0);
}
.new-form-holder .radio-box-wrapper {
  margin-bottom: 5px;
}
.new-form-holder .radio-box-wrapper.inline-wrapper > .radio-box {
  display: inline-block;
  margin-right: 15px;
}
.new-form-holder .radio-box-wrapper > .radio-box {
  display: block;
  margin-bottom: 0;
}
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:checked,
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:checked + label,
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--textColor);
  font-size: 17px;
  margin-bottom: 15px;
}
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:checked + label:before,
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--textColor);
  border-radius: 100%;
  background: var(--bgColor);
}
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:checked + label:after,
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--vcolor-1);
  position: absolute;
  bottom: 2px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.new-form-holder .radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
@media (max-width: 559px) {
  .new-form-holder .radio-box-wrapper > .radio-box {
    display: block;
    margin-right: 0;
  }
}/*# sourceMappingURL=validation.css.map */