/*!
 * Forms v0.1.0
 * https://artemsemkin.com
 * https://github.com/artkrsk/arts-forms
 * © 2026 Artem Semkin
 * License: GPL-3.0
 */
.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.wpcf7-list-item {
  margin: 0;
}

.password-input {
  position: relative;
  display: block;
}

.woo-form-control-wrap {
  position: relative;
  display: block;
}

.input-float {
  position: relative;
  display: block;
  width: 100%;
}

.input-float__label {
  position: absolute;
  top: 0.75em;
  left: 0;
  display: block;
  transform-origin: left center;
  pointer-events: none;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.input-float__input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}

.input-float__input_textarea {
  resize: none;
}

.input-float__input_focused + .input-float__label, .input-float__input_not-empty + .input-float__label {
  transform: scale(0.8571) translateY(-1.75rem);
  pointer-events: all;
}

.input-float__input_focused + .input-float__label {
  pointer-events: all;
}

.input-float__input:-webkit-autofill {
  animation-name: onAutoFill;
}

@keyframes onAutoFill {}
.input-checkbox {
  position: relative;
  display: block;
  width: 100%;
}

.input-checkbox__checkbox, .input-checkbox__checkbox.input-float__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.input-float__input_checked ~ .input-checkbox__label:after {
  opacity: 1;
  visibility: visible;
}

.input-checkbox__label {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.input-checkbox__label:before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  width: 1.3em;
  height: 1.3em;
  border: 1px solid currentColor;
  margin-right: 0.45em;
  margin-bottom: 0.15em;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}

.input-checkbox__checkbox:checked ~ .input-checkbox__label:after {
  opacity: 1;
  visibility: visible;
}

.input-checkbox__label:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translate(0.45em, -50%) rotate(45deg);
  height: 0.9em;
  width: 0.45em;
  border-bottom: 0.15em solid currentColor;
  border-right: 0.15em solid currentColor;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}