input[type="date"] {
    -webkit-appearance: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/*
* Field Styling
*/
.form-control {
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
}

/*
* Custom Response Message Color
*/
.wpcf7 form .wpcf7-response-output {
    background-color: #f9f9f9;
    border-left: 10px solid #e8e8e8;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    padding: 15px;
    color: #333;
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #d6f3d4;
    border-left-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background-color: #fdd;
    border-left-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
    background-color: #fff3dd;
    border-left-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: #fffde6;
    border-left-color: #ffb900;
}

/*
* Custom loader
*/
div.wpcf7 .ajax-loader {
    background-image: none !important;
}

.wpcf7 .wpcf7-custom-loader .spinner {
    margin: 0 auto;
    width: 70px;
    text-align: center;
}

.wpcf7 .wpcf7-custom-loader .spinner>div {
    width: 18px;
    height: 18px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.wpcf7 .wpcf7-custom-loader .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.wpcf7 .wpcf7-custom-loader .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}