form {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input,
select,
textarea {
  font-size: 16px;
  line-height: 1;
  color: var(--input-color);
  border: 0px solid var(--input-br);
  background-color: var(--input-bg);
  padding: 14px 12px;
  border-radius: 3px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 50px;
  font-family: var(--site-font-r);
}

select {
  background: url(../images/firefox_tweak.png) no-repeat var(--input-bg);
  background-position: 96% 25px;
  -webkit-appearance: none;
  /*Removes default chrome and safari style*/
  -moz-appearance: none;
}

textarea {
  height: 136px;
}

input[type=radio],
input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin: 0 2px;
  vertical-align: middle;
}

input[type=file] {
  padding: 0px;
  border: 0px;
  /*width: 38%;*/
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.Col1,
.Col2,
.Col3,
.Col4 {
  display: inline-block;
  vertical-align: top;
  width: 49.6%;
  padding: 8px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.Col1 {
  display: block;
  width: 99.9%;
}

.Col3 {
  width: 32.8%;
}

.Col4 {
  width: 24.4%;
}

/*---- input focus css-----*/
input:focus,
select:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 8px var(--site-color-1);
  box-shadow: 0 0 8px var(--site-color-1);
  border: 1px solid var(--site-color-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*------ placeholder text color-----*/
::-webkit-input-placeholder {
  color: var(--placeholder-color);
  font-family: var(--site-font-r);
  font-size: 16px;
  line-height: 1;
}

::-moz-placeholder {
  color: var(--placeholder-color);
  font-family: var(--site-font-r);
  font-size: 16px;
  line-height: 1;
}

:-ms-input-placeholder {
  color: var(--placeholder-color);
  font-family: var(--site-font-r);
  font-size: 16px;
  line-height: 1;
}

::-ms-input-placeholder {
  color: var(--placeholder-color);
  font-family: var(--site-font-r);
  font-size: 16px;
  line-height: 1;
}

::placeholder {
  color: var(--placeholder-color);
  font-family: var(--site-font-r);
  font-size: 16px;
  line-height: 1;
}



.Human {
  text-align: left;
}

.Human .text-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.Human .text-box label.error {
  display: inline-block !important;
  border: 0 !important;
  font-size: 13px;
  color: #ff0000;
  width: 100%;
  line-height: 1.5;
}

.Human .text-box span:first-of-type,
.Human .text-box span:last-of-type,
.Human .text-box input,
.Human .text-box .number-box {
  width: 32px;
  height: 32px !important;
  background-color: #eeeeee;
  color: #000000;
  margin: 0;
  border-radius: 3px;
  padding: 3px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.Human .valid+label.error,
.Human .valid+div.error {
  display: block !important;
  font-size: 13px;
  color: #ff0000;
  width: 100%;
  line-height: 1.5;
  border: none !important;
}

label.error,
div.error {
  display: none !important;
}

input.error:focus,
select.error:focus,
textarea.error:focus,
.error {
  border: 1px solid #ff0000 !important;
}

.grecaptcha-badge {
  bottom: 60px !important;
  z-index: 99;
}