.input-wrap {
  position: relative;
}

.input-wrap {
  margin-bottom: 30px;
}

@media (max-width:899px) {
  .input-wrap {
    margin-bottom: 0px;
  }
}

.select-wrap {
  display: flex;
  flex-direction: column;
}

.input-wrap.is-active .form-select, .wpcf7-form-control-wrap.is-active .form-select {
  top: 100%;
  left: 0;
  width: 100%;
}

@media (max-width:899px) {
  .input-wrap.is-active .form-select, .wpcf7-form-control-wrap.is-active .form-select {
    background: #141414;
  }
}

.input-wrap.is-errored .input--textarea:focus, .input-wrap.is-errored .input:focus, .wpcf7-form-control-wrap.is-errored .input--textarea:focus, .wpcf7-form-control-wrap.is-errored .input:focus {
  border-bottom: 2px solid #a80000
}

.input-wrap.is-errored .input+.input-label, .input-wrap.is-errored .input--textarea+.input-label, .wpcf7-form-control-wrap.is-errored .input+.input-label, .wpcf7-form-control-wrap.is-errored .input--textarea+.input-label {
  color: #a80000
}

.input {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 68px;
  font-size: 19px;
  color: #333;
  padding: 28px 0 0 0;
  transition: transform .4s, opacity .4s, border .4s, box-shadow .4s;
  border: 1px solid rgb(0, 0, 0, 0);
  background-color: transparent;
  border-bottom: 1px solid #848484;
  border-radius: 0;
}

@media (max-width:899px) {
  .input {
    font-size: 17px;
  }
}

textarea.input {
  min-height: 32px;
  height: auto;
  max-height: 320px;
  max-width: 100%;
  min-width: 100%;
  margin-top: 66px;
  overflow: auto;
  padding: 0;
  border-radius: 0;
}

@media (max-width:899px) {
  textarea.input {
    margin-top: 41px;
  }
}

select.input {
  font-family: inherit;
  color: #333;
  padding: 7px 0 7px 0;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 32px 0 0 0;
  border: 1px solid rgb(0, 0, 0, 0);
  background-color: transparent;
  border-bottom: 1px solid #848484;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-image: url('../../icons/ios-arrow-down.svg');
  background-repeat: no-repeat, repeat;
  background-position: right 10px bottom 40%;
  background-size: 14px;
  outline: none;
}

.form-select {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 20;
  height: 258px;
  overflow: auto;
}

select.input::-ms-expand {
  display: none;
}

select.input:hover {
  cursor: pointer;
}

select.input:focus {
  box-shadow: 0px 12px 34px -28px rgba(0, 0, 0, 0.35);
}

select.input option {
  font-weight: normal;
}

select.input option:first-child {
  color: #666;
}

select.input:disabled, select.input[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
}

.input--country-select {
  position: relative;
  display: block;
  width: 100%;
  height: 72px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  padding: 25px 70px 0 35px;
  cursor: pointer;
  transition: all .4s;
  border: 2px solid rgb(0, 0, 0, 0);
  background-color: transparent;
  border-color: #fff;
}

@media (max-width:899px) {
  .input--country-select {
    height: 66px;
    font-size: 17px;
    padding: 20px 70px 0 25px;
  }
}

.input--country-select:hover {
  background-color: rgba(255, 255, 255, 0.075);
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.35);
}

.input.filled+*+.input-label, .input.filled+.input-label, .input:focus+*+.input-label, .input:focus+.input-label {
  transform: scale(.66) translateY(-14px) translateX(20px);
  opacity: 0.66;
}

.is-focus > .input-label,
.is-filled > .input-label {
  transform: scale(.66) translateY(-38px) translateX(0px);
  opacity: 0.66;
}

.is-focus .input {
  box-shadow: 0px 12px 34px -28px rgba(0, 0, 0, 0.35);
}

.is-focus textarea.input {
  box-shadow: 0px 6px 16px -11px rgba(0, 0, 0, 0.35);
}

.input--country-select:focus+.input-label {
  color: #000
}

.input--country-select:focus {
  border-bottom: 2px solid #002fa8;
}

.input--country-select:disabled {
  border-bottom: none
}

.input--country-select:disabled:hover {
  background-color: #d8d8d8
}

.wpcf7-form.invalid .input.wpcf7-not-valid {
  border-bottom: 1px solid #f00;
}

.input-required::before {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 100%;
  position: absolute;
  left: -22px;
  bottom: 15px;
  background: #00b4cd;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
  margin-top: 6px;
  position: absolute;
  width: 100%;
  visibility: visible;
}

button, input, input[type=submit], textarea {
  outline: 0
}

label {
  display: inline-block
}

.input-label {
  position: absolute;
  top: 38px;
  left: 0;
  font-size: 19px;
  color: #000;
  padding: 0;
  transition: all .4s;
  pointer-events: none;
  z-index: 99;
  transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
}

@media (max-width:899px) {
  .input-label {
    font-size: 17px;
  }
}

.select-label {
  top: 0;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 28px 35px 0 35px;
}

.textarea-label {
  top: 2px;
}

@media (max-width:899px) {
  .select-label {
    padding: 25px 35px 0 25px;
  }
}

.input-label--white {
  color: #fff;
}

.input-sent {
  position: relative;
  color: #002fa8;
  text-align: right;
  margin-top: 23px;
  font-weight: 500;
  font-size: 12px
}

.option {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  border: 0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  background: none;
  padding: 12px 35px;
  cursor: pointer;
  transition: background-color .2s;
}

@media (max-width:899px) {
  .option {
    padding: 10px 25px;
  }
}

.option[data-default="true"] {
  font-weight: 700;
}

.option:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

.input-text {
  position: relative;
  top: 10px;
}

.form__icon--select {
  position: absolute;
  right: 0;
  top: 0;
  flex: none;
  cursor: pointer;
  width: 70px;
  height: 100%;
  fill: transparent;
  border-left: 2px solid #fff;
}

@media (max-width:899px) {
  .form__icon--select {
    width: 66px;
  }
}

.form__icon--select::before {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  left: 21px;
  background-image: url('../../icons/ios-arrow-round-down-wt.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  transition: all .2s;
}

@media (max-width:899px) {
  .form__icon--select::before {
    top: 22px;
    left: 20px;
  }
}

.input-wrap.is-active .form__icon--select::before {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.input-wrap:hover:not(.is-active) .form__icon--select::before {
  top: 28px;
}

@media (max-width:899px) {
  .input-wrap:hover:not(.is-active) .form__icon--select::before {
    top: 25px;
  }
}

input[type=checkbox] {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  font-size: 11px;
  height: 21px;
  min-height: 0;
}

input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
  border: 1px solid #848484;
  border-radius: 0;
  background-color: white;
}

input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 7px;
  height: 13px;
  border: solid #00b4cd;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 4px;
  left: 10px;
}

.file-wrap .input-label {
  top: -10px;
}

.file-wrap.input-required::before {
  top: -3px;
}

.file-wrap .input {
  border: none;
  margin-top: 70px;
  font-size: 16px;
}

.wpcf7-acceptance {
  font-size: 19px;
}

@media (max-width:899px) {
  .wpcf7-acceptance {
    font-size: 17px;
  }
}

.wpcf7-acceptance label {
  display: flex;
  align-items: center;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 6px 0;
  display: block;
}

.wpcf7-acceptance .wpcf7-list-item-label {
  margin-left: 25px;
  display: inline-block;
}

.unaccepted .wpcf7-acceptance:not(.optional) .wpcf7-list-item-label {
  color: #f00;
}

.unaccepted .wpcf7-acceptance:not(.optional) input[type=checkbox]:checked:before {
  border-color: #f00;
}

div.wpcf7-response-output {
  font-size: 21px;
  text-align: center;
  margin: 16px 0 32px 0;
  padding: 0;
  border: none;
  visibility: visible;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  color: #f00;
}

div.wpcf7 .ajax-loader {
  background-image: url('../../img/ajax-loader.gif');
  background-size: 100px;
  width: 100px;
  height: 30px;
  background-position: 50% 50%;
  display: block;
  background-repeat: no-repeat;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  height: calc(100% - 20px);
  top: 20px;
  left: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all .4s;
  border-radius: 0;
}

div.wpcf7 .ajax-loader::before {
  display: none;
}

.wpcf7 .wpcf7-submit:disabled.button--black,
.wpcf7 .wpcf7-submit:disabled.button--black:hover,
.submit-disabled,
.submit-disabled:hover {
  color: #fff !important;
  border-color: #ccc !important;
  background: #ccc !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.wpcf7 .wpcf7-submit:disabled.button--arrow:hover::after {
  right: 35px;
}
