.contact-image {
	max-width: 200px;
}
.contact-image img {
	max-width: 100%;
	max-height: 100%;
}

.contact-header {
    display: none;
    align-items: center;
    justify-content: space-between;
}
#fcf-form {
    display:block;
	height: 100%;
	overflow: auto;
	padding: 0 15px;
}

.fcf-body {
    float: left;
    width: 560px;
    height: 560px;
    max-width: 100%;
    overflow-x: auto;
    padding: 45px 30px;

    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;

    background: #fff;
    box-sizing: border-box;
    border-radius: 15px;

    /* animation-related */
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -60%); /* slightly higher */
    transition: 
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}
.product-essentials:after {
    opacity: 0;
    visibility: hidden;	
    transition: 
        opacity 0.3s ease,
        visibility 0.3s ease;
	content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;		
}
.product-essentials.fcf:after {

    opacity: 1;
    visibility: visible;	
}
.fcf-body.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.6);
}
.fcf-form-group {
    margin-bottom: 10px;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0;
	font-weight: 600;
}

.fcf-credit {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #545b62;
}

.fcf-credit a {
    color: #545b62;
    text-decoration: underline;
}

.fcf-credit a:hover {
    color: #0056b3;
    text-decoration: underline;
}


.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

#message img {
    max-height: 60px;
    margin: 40px;
}
.close-contact {
    position: absolute;
    width: 14px;
    height: 14px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.g-recaptcha {
    margin: 10px 0;
}
.gdpr-message {
    padding: 0 0 15px 0;
}
.gdpr-message p {
	margin: 0;
}
.gdpr-checkbox {
    display: flex;
	align-items: center;
}
.gdpr-wrapper .gdpr-checkbox label {
	margin: 0;
}
.fcf-form-group button {
	background: #979284;
	border-radius: 3px;
	font-weight: 500;
    padding: 0 30px;
    box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
    height: 45px;
	
}