/* Styles configuration */
:root {
    --cf7-font: inherit;
    --cf7-font-size: 16px;
    --cf7-font-weight: 300;
    --cf7-labels: #fff;
    --cf7-input-text: #fff;
    --cf7-text: #ffffff;
    --cf7-warning: #5E3300;
    --cf7-warning-bg: transparent;
    --cf7-warning-border: #5E3300;
    --cf7-success: #A5ED70;
    --cf7-success-bg: transparent;
    --cf7-success-border: #A5ED70;
}
/* General Settings */
.wpcf7 {
    font-family: var(--cf7-font);
    font-weight: var(--cf7-font-weight);
    width: 100% !important;
    margin-bottom: 70px;
}
.wpcf7 label {
    color: var(--cf7-labels);
}
.wpcf7-list-item {
    margin-left: 0 !important;
    margin-right: 15px !important;
}
.wpcf7 a {
    text-decoration: none;
    color: #5E3300;
}
.wpcf7 a:hover {
    color: #A5ED70;
}

/* General Inputs */
.wpcf7 input[type=color],
.wpcf7 input[type=date],
.wpcf7 input[type=datetime-local],
.wpcf7 input[type=datetime],
.wpcf7 input[type=email],
.wpcf7 input[type=month],
.wpcf7 input[type=number],
.wpcf7 input[type=search],
.wpcf7 input[type=tel],
.wpcf7 input[type=text],
.wpcf7 input[type=time],
.wpcf7 input[type=url],
.wpcf7 input[type=week],
.wpcf7 textarea
{
    border: 1px solid #5E3300;
	background-color: transparent;
	border-radius: 0px;
    line-height: 1.3;
    padding: 5px 10px;
    color: var(--cf7-input-text);
    min-height: 25px;
    font-size: var(--cf7-font-size);
    font-weight: var(--cf7-font-weight);
    font-family: var(--cf7-font);
    transition-duration: .3s;
    width: calc(100% - 20px);

    @media screen and (min-width: 1024px) {
        min-height: 35px;
    }

}
/* Other Inputs */
.wpcf7 input[type=submit] {
    padding: 15px 55px;
    border: 1px solid;
    font-size: 18px;
    transition: all ease-out 0.3s;
    color: #A5ED70;
    border-color: #A5ED70;
    cursor: pointer;
    background: transparent;
    font-weight: 300;
    letter-spacing: 0px;

}
.wpcf7 input:hover[type=submit] {
    background: #A5ED70;
    color: #010101;
}
.wpcf7 input:focus[type=submit] {
    outline: none;
}
.wpcf7 input[type=file] {
    color: var(--cf7-input-text);
    font-size: var(--cf7-font-size);
    font-weight: var(--cf7-font-weight);
    font-family: var(--cf7-font);
}
.wpcf7 input:focus[type=file] {
    outline: none;
    border: 0;
}
.wpcf7 input[type=file]::file-selector-button,
.wpcf7 select
{
    border: 1px solid #5E3300;
    background-color: transparent;
    border-radius: 0px;
    line-height: 1.3;
    padding: 0.7rem 1rem;
    color: var(--cf7-input-text);
    min-height: 35px;
    font-size: var(--cf7-font-size);
    font-weight: var(--cf7-font-weight);
    font-family: var(--cf7-font);
}
.wpcf7 input[type=file]::file-selector-button {
    cursor: pointer;
    margin-right: 20px;
}
/* Custom Checkbox */
.wpcf7 input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    min-width: 20px;
    height: 02px;
    min-height: 20px;
    border-radius: 0px;
    margin: 0;
    display: grid;
    place-content: center;
    cursor: pointer;
    border: 1px solid #5E3300;
    position: relative;
    vertical-align: middle;
}
.wpcf7 input[type="checkbox"]:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border-right: 2px solid #A5ED70;
    border-bottom: 2px solid #A5ED70;
    transform: rotate(45deg) scale(0);
    transition: all 0.2s ease;
}
.wpcf7 input[type="checkbox"]:checked::before {
    transform: rotate(45deg) scale(1);
}
.wpcf7-checkbox label,
.wpcf7-acceptance label,
.wpcf7-radio label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
}
/* Custom Radio */
.wpcf7 input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    margin: 0;
    font: inherit;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: grid;
    place-content: center;
    cursor: pointer;
}
.wpcf7 input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
}
.wpcf7 input[type="radio"]:checked::before {
    transform: scale(1);
}
/* Other States */
.wpcf7 input:hover[type=color],
.wpcf7 input:hover[type=date],
.wpcf7 input:hover[type=datetime-local],
.wpcf7 input:hover[type=datetime],
.wpcf7 input:hover[type=email],
.wpcf7 input:hover[type=month],
.wpcf7 input:hover[type=number],
.wpcf7 input:hover[type=search],
.wpcf7 input:hover[type=tel],
.wpcf7 input:hover[type=text],
.wpcf7 input:hover[type=time],
.wpcf7 input:hover[type=url],
.wpcf7 input:hover[type=week],
.wpcf7 input:hover[type=file]::file-selector-button,
.wpcf7 textarea:hover,
.wpcf7 select:hover
{
    border: 1px solid #A5ED70;
    outline: none;
    background-color: transparent;
    font-size: var(--cf7-font-size);
}

.wpcf7 input:focus[type=color],
.wpcf7 input:focus[type=date],
.wpcf7 input:focus[type=datetime-local],
.wpcf7 input:focus[type=datetime],
.wpcf7 input:focus[type=email],
.wpcf7 input:focus[type=month],
.wpcf7 input:focus[type=number],
.wpcf7 input:focus[type=search],
.wpcf7 input:focus[type=tel],
.wpcf7 input:focus[type=text],
.wpcf7 input:focus[type=time],
.wpcf7 input:focus[type=url],
.wpcf7 input:focus[type=week],
.wpcf7 input:focus[type="checkbox"],
.wpcf7 textarea:focus,
.wpcf7 select:focus,
.wpcf7 a:focus
{
    border: 1px solid #A5ED70 !important;
    outline:none;
    background-color: transparent;
}
/* Invalid Fields */
.wpcf7-not-valid-tip {
    color: var(--cf7-warning) !important;
    font-size: var(--cf7-font-size) !important;
    font-weight: var(--cf7-font-weight) !important;
    display: inline-block;
}
.wpcf7-not-valid:not(input[type=file]):not(span){
    border-color: #A5ED70 !important;
}
.wpcf7 input:disabled[type=submit],
.wpcf7 input:disabled[type=submit]:hover
{
    cursor: not-allowed;
}
/* Response Messages */
.wpcf7 form.init .wpcf7-response-output {
    display: none;
}
.wpcf7 form .wpcf7-response-output { /* Default */
    margin: 15px 0 !important;
    padding: 10px 20px !important;
    border: 0 !important;
    border-radius: 0px !important;
}
.wpcf7 form.sent .wpcf7-response-output { /* Success */
    background-color: var(--cf7-success-bg) !important;
    color: var(--cf7-success) !important;
    border: 1px solid var(--cf7-success-border) !important;
    font-size: 15px;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{ /* Failed */
    background-color: var(--cf7-warning-bg) !important;
    color: var(--cf7-warning) !important;
    border: 1px solid var(--cf7-warning-border) !important;
    font-size: 15px;

}


.contact-form-container {
    @media screen and (min-width: 1024px) {
        padding-right: 80px;
    }
}

.wpcf7-spinner{
    background-color: #5e3300 !important;
    @media screen and (max-width: 767px) {
        margin: 20px auto;
        display: block;
    }
}
.wpcf7-spinner::before {
    background: #A5ED70;
}