.frmHtml input,
.frmHtml select,
.frmHtml textarea {
  width: 100%;
  padding: var(--inputSizeVer) var(--inputSizeHor);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border-radius: 10px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--focusedColor);
  font-family: var(--basicfont);
  font-size: var(--fontsize);
  line-height: 30px;
  transition: all 0.2s linear;
  resize: none;
}
.frmHtml input::-webkit-input-placeholder,
.frmHtml select::-webkit-input-placeholder,
.frmHtml textarea::-webkit-input-placeholder {
  opacity: 1;
  color: var(--placeholder);
}
.frmHtml input::-moz-placeholder,
.frmHtml select::-moz-placeholder,
.frmHtml textarea::-moz-placeholder {
  opacity: 1;
  color: var(--placeholder);
}
.frmHtml input::-ms-input-placeholder,
.frmHtml select::-ms-input-placeholder,
.frmHtml textarea::-ms-input-placeholder {
  opacity: 1;
  color: var(--placeholder);
}
.frmHtml input::placeholder,
.frmHtml select::placeholder,
.frmHtml textarea::placeholder {
  opacity: 1;
  color: var(--placeholder);
}
@media (hover: hover) {
  .frmHtml input:hover,
  .frmHtml select:hover,
  .frmHtml textarea:hover,
  .frmHtml input:focus,
  .frmHtml select:focus,
  .frmHtml textarea:focus {
    border: 1px solid var(--focusedColor);
  }
}
.frmHtml input::-ms-clear,
.frmHtml select::-ms-clear,
.frmHtml textarea::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.frmHtml input::-ms-reveal,
.frmHtml select::-ms-reveal,
.frmHtml textarea::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.frmHtml input::-webkit-search-decoration,
.frmHtml select::-webkit-search-decoration,
.frmHtml textarea::-webkit-search-decoration,
.frmHtml input::-webkit-search-cancel-button,
.frmHtml select::-webkit-search-cancel-button,
.frmHtml textarea::-webkit-search-cancel-button,
.frmHtml input::-webkit-search-results-button,
.frmHtml select::-webkit-search-results-button,
.frmHtml textarea::-webkit-search-results-button,
.frmHtml input::-webkit-search-results-decoration,
.frmHtml select::-webkit-search-results-decoration,
.frmHtml textarea::-webkit-search-results-decoration {
  display: none;
}
.frmHtml input:not(:placeholder-shown) + .empty,
.frmHtml select:not(:placeholder-shown) + .empty,
.frmHtml textarea:not(:placeholder-shown) + .empty {
  display: block;
}
.frmHtml button {
  border: 0;
}
@media (max-width: 56em) {
  .frmHtml button {
    margin-left: auto;
  }
}
.frmHtml button.submit {
  position: relative;
  overflow: hidden;
}
.frmHtml button.submit .loading {
  position: absolute;
  top: -100%;
  left: -100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@-webkit-keyframes loading {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loading {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.frmHtml button.submit .loading:before {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  -webkit-animation: loading 1.2s linear infinite;
          animation: loading 1.2s linear infinite;
}
.frmHtml .empty {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  color: var(--focusedColor);
  font-family: arial, sans-serif;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}
.frmHtml .checkbox .form-control,
.frmHtml .checkboxlist .form-control,
.frmHtml .dropdownlist .form-control,
.frmHtml .radiobuttonlist .form-control {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.frmHtml .checkbox .form-control label,
.frmHtml .checkboxlist .form-control label,
.frmHtml .dropdownlist .form-control label,
.frmHtml .radiobuttonlist .form-control label {
  display: grid;
  grid-template-columns: 25px auto;
  gap: 10px;
  margin-bottom: 10px;
}
@media (hover: hover) {
  .frmHtml .checkbox .form-control label:hover input,
  .frmHtml .checkboxlist .form-control label:hover input,
  .frmHtml .dropdownlist .form-control label:hover input,
  .frmHtml .radiobuttonlist .form-control label:hover input {
    border: 1px solid var(--focusedColor);
  }
}
.frmHtml .checkbox .form-control input,
.frmHtml .checkboxlist .form-control input,
.frmHtml .dropdownlist .form-control input,
.frmHtml .radiobuttonlist .form-control input {
  display: grid;
  place-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  margin-top: 2px;
  border-radius: 5px;
}
.frmHtml .checkbox .form-control input:before,
.frmHtml .checkboxlist .form-control input:before,
.frmHtml .dropdownlist .form-control input:before,
.frmHtml .radiobuttonlist .form-control input:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: var(--focusedColor);
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: 120ms -webkit-transform ease-in-out;
  transition: 120ms transform ease-in-out;
  transition: 120ms transform ease-in-out, 120ms -webkit-transform ease-in-out;
}
.frmHtml .checkbox .form-control input:checked,
.frmHtml .checkboxlist .form-control input:checked,
.frmHtml .dropdownlist .form-control input:checked,
.frmHtml .radiobuttonlist .form-control input:checked {
  border: 1px solid var(--focusedColor);
}
.frmHtml .checkbox .form-control input:checked:before,
.frmHtml .checkboxlist .form-control input:checked:before,
.frmHtml .dropdownlist .form-control input:checked:before,
.frmHtml .radiobuttonlist .form-control input:checked:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.frmHtml .checkbox .form-control input[type=radio],
.frmHtml .checkboxlist .form-control input[type=radio],
.frmHtml .dropdownlist .form-control input[type=radio],
.frmHtml .radiobuttonlist .form-control input[type=radio] {
  border-radius: 50%;
}
.frmHtml .checkbox .form-control input[type=radio]:before,
.frmHtml .checkboxlist .form-control input[type=radio]:before,
.frmHtml .dropdownlist .form-control input[type=radio]:before,
.frmHtml .radiobuttonlist .form-control input[type=radio]:before {
  border-radius: 50%;
}
.frmHtml .LinkedInUrl {
  position: relative;
}
.frmHtml .LinkedInUrl .symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -12px;
  font-size: 24px;
  text-decoration: none;
  line-height: 24px;
  cursor: pointer;
}
.frmHtml .wrapper-range {
  margin-top: 30px;
  position: relative;
}
.frmHtml .wrapper-range .sliderValue {
  position: absolute;
}
.frmHtml .wrapper-range .sliderValue span {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  background: var(--color1);
  border-radius: var(--borderradius);
  padding: 0 10px;
  line-height: 30px;
  min-width: 50px;
  text-align: center;
}
.frmHtml .wrapper-range .sliderValue span:after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--color1);
  display: block;
}
.frmHtml .wrapper-range .field {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
  /*********** Baseline, reset styles ***********/
  /* Removes default focus */
  /******** Chrome, Safari, Opera and Edge Chromium styles ********/
  /* slider track */
  /* slider thumb */
  /*********** Firefox styles ***********/
  /* slider track */
  /* slider thumb */
}
.frmHtml .wrapper-range .field input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
  padding: 0;
  border: 0;
}
.frmHtml .wrapper-range .field input[type="range"]:focus {
  outline: none;
}
.frmHtml .wrapper-range .field input[type="range"]::-webkit-slider-runnable-track {
  background-color: #fff;
  border-radius: 10px;
  height: 10px;
}
.frmHtml .wrapper-range .field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  margin-top: -7.5px;
  /* Centers thumb on the track */
  background-color: var(--color1);
  border-radius: 100%;
  height: 25px;
  width: 25px;
}
.frmHtml .wrapper-range .field input[type="range"]:focus::-webkit-slider-thumb {
  outline: 3px solid var(--color1);
  outline-offset: 0.125rem;
}
.frmHtml .wrapper-range .field input[type="range"]::-moz-range-track {
  background-color: #fff;
  border-radius: 10px;
  height: 10px;
}
.frmHtml .wrapper-range .field input[type="range"]::-moz-range-thumb {
  background-color: var(--color1);
  border: none;
  /*Removes extra border that FF applies*/
  border-radius: 100%;
  height: 25px;
  width: 25px;
}
.frmHtml .wrapper-range .field input[type="range"]:focus::-moz-range-thumb {
  outline: 3px solid var(--color1);
  outline-offset: 0.125rem;
}
.frmHtml .wrapper-range .field .value {
  margin-top: 5px;
  color: var(--color1);
}
.frmHtml .toggle-switch label {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.frmHtml .toggle-switch label .text {
  font-weight: bold;
  line-height: normal;
  font-size: var(--xs-fontsize);
  color: var(--color1);
  flex: 1;
}
.frmHtml .toggle-switch label .tooltip i {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 2px solid var(--color1);
  color: var(--color1);
  font-size: 10px;
  display: flex;
  font-weight: bold;
  font-style: normal;
  align-items: center;
  justify-content: center;
}
.frmHtml .toggle-switch label .tooltip .tooltiptext {
  display: none;
  position: absolute;
  z-index: 19;
  left: 0;
  top: 100%;
  background: #292B2D;
  color: #fff;
  padding: calc(var(--padding) / 2);
  border-radius: var(--borderradius);
  margin-top: 10px;
  width: 100%;
  font-size: var(--xxxs-fontsize);
}
.frmHtml .toggle-switch label .tooltip .tooltiptext:after {
  content: "";
  position: absolute;
  top: -10px;
  right: calc(var(--padding) / 2);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #292B2D;
}
@media (hover: hover) {
  .frmHtml .toggle-switch label .tooltip:hover .tooltiptext {
    display: block;
  }
}
.frmHtml .toggle-switch input {
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
}
.frmHtml .toggle-switch input[role=switch] {
  display: grid;
  place-content: center start;
  width: 50px;
  border-radius: 30px;
  -webkit-mask: none;
          mask: none;
  padding: 0;
  background: #fff;
  border: 0;
  height: 32px;
}
.frmHtml .toggle-switch input[role=switch]:after {
  content: "";
  background: var(--color1);
  -webkit-mask: none;
          mask: none;
  border-radius: 100%;
  height: 24px;
  inset: unset;
  position: static;
  width: 24px;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (hover: hover) {
  .frmHtml .toggle-switch input[role=switch]:hover {
    border-color: var(--color1);
  }
}
.frmHtml .toggle-switch input[role=switch]:checked {
  border-color: var(--color2);
  background: var(--color2);
}
.frmHtml .toggle-switch input[role=switch]:checked::after {
  background-color: #fff;
  -webkit-transform: translateX(22px);
          transform: translateX(22px);
}
