/* Contact FORM */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 25px;
    color: #777a7e;
    border: none;
    background: #f2f3f5;
    font-size: 14px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: #35bfc6;
    box-shadow: none;
}

#contact-map iframe {
    height: 555px;
    width: 100%;
    margin-bottom: -6px;
}

.captcha-elem-group i.refresh-captcha {
    margin-left: 10px;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    color: white;
    background-image: linear-gradient(180deg, #35bfc6 0%, #35bfc6e0 100%);
}
.captcha-image {
    border-radius: 5px;
}

.error {
    background-color: #35bfc6;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.success {
    background-color: #5cb85d;
    color: #fff;
}

#form-message {
    position: absolute;
    width: 100%;
}

.contact-form input[type="text"].error,
.contact-form input[type="email"].error,
.contact-form input[type="tel"].error,
.contact-form textarea.error,
.contact-form select.error {
    background-color: rgba(123, 206, 219, 0.23);
    color: #fff;
    border-color: #7bcedb;
    margin: 1.5em 0 1em 0;
}

.contact-form small {
    display: none;
}

.form-terms input {
    width: 20px;
    height: 20px;
    margin: 5px;
    accent-color: #35bfc6;
}

.form-terms label {
    width: 100%;
    font-size: large;
}

.addressfake {
    height: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.home-address {
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}
input::placeholder {
    color: #121313 !important;
}
textarea::placeholder{
    color: #121313 !important;
}
input.form-control.form_placeholder1{
    color: #121313 !important;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #35bfc6;
    border-color: #35bfc6;
}

input[type="checkbox"]:checked::after {
    content: '✔';
    color: white;
    font-size: 15px;
    position: absolute;
    left: 3px;
    line-height: 1;
}

