@charset "UTF-8";
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

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

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='url']{
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
textarea{
  width: 100%;
  height: 300px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.checkbox-wrap label{
  margin-right: 20px;
  display: inline-block;
}

.checkbox-wrap input{
  display: none;
}

.checkbox-wrap input + span{
    padding-left: 22px;
    position: relative;
    padding-right: 10px;
}

.checkbox-wrap input + span::before{
    content: "";
    background-image: url(../form-img/check.png);
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
}

.checkbox-wrap input:checked + span{
    color: #BA9953;
}

.checkbox-wrap input:checked + span::after{
    content: "";
    background-image: url(../form-img/check-checked.png);
    background-size: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
}
.radio-wrap label{
  margin-right: 20px;
  display: inline-block;
}

.radio-wrap input{
  display: none;
}

.radio-wrap input + span{
  padding-left: 22px;
  position:relative;
}

.radio-wrap input + span::before{
  content: "";
  background-image: url(../form-img/radio.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}

.radio-wrap input:checked + span{
    color: #BA9953;
    font-weight: bold;
}

.radio-wrap input:checked + span::after{
  content: "";
  background-image: url(../form-img/radio-checked.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
}
input[type='submit']{
    border: none;
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border-radius: 5px;
    background-color: #BA9953;
    color: #fff;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}
.wpcf7-form-control-wrap  {
}
.wpcf7 p {
  display: inline;
  }