.contact-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: row;
    font-family: 'Montserrat', sans-serif;
    max-width: 1024px;
    margin: 50px auto 0;
}
.contact-wrapper > form,
.contact-wrapper > div {
    padding: 20px;
    flex:1;
}
.contact-form,
.contact-instructions {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.contact-instructions > div {
    margin: 10px 0;
}
.contact-product-page-redirect {
    padding: 20px 20px 0;
}
.contact-product-page-redirect > a {
    text-decoration: none;
}
.contact-form-field button[type="submit"],
.contact-product-page-redirect > a > span {
    border: none;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}
.contact-form-field button[type="submit"]:hover,
.contact-product-page-redirect > a > span:hover {
    background-color: #666;
}
.contact-form-field-title {
    font-size: 14px;
    color: #666;
}
.contact-form > div {
    display: flex;
    flex-direction: row;
}
.contact-form-field-row {
    display: flex;
    flex-direction: row;
    /* margin: 5px 0; */
    width: 100%;
}
.contact-form-field {
    padding: 10px;
}
.fb-100 {
    flex-basis: 100%;
}
.fb-50 {
    flex-basis: 50%;
}
.contact-form-field input[type="text"],
.contact-form-field input[type="email"],
.contact-form-field textarea {

    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: none;
    outline: none;
    width: 100%;
    transition: all 0.3s ease-in-out;

}
.contact-form-field input[type="text"]:focus,
.contact-form-field input[type="email"]:focus,
.contact-form-field textarea:focus,
.contact-form-field input[type="text"]:hover,
.contact-form-field input[type="email"]:hover,
.contact-form-field textarea:hover {

    border-color: #000

}
.contact-form-field input[type="text"].err,
.contact-form-field input[type="email"].err,
.contact-form-field textarea.err {
    border-color: #CB4335;
    color: #CB4335;
    background-color: #FDEDEC;
}

.vam {
    vertical-align: middle;
}
svg.r {
    margin-right: 5px;
}
svg.l {
    margin-left: 5px;
}
svg {
    margin-top: -4px;
}
svg path {
    fill: #fff;
}

@media only screen and (max-width: 767px) {

    .contact-wrapper {
        margin-top: 0;
        width: 100%;
        flex-direction: column;
    }

    .contact-wrapper > form,
    .contact-wrapper > div {
        padding: 5px;
    }

    .contact-form {
        padding: 0!important;
    }

    .contact-form-field button[type="submit"],
    .contact-product-page-redirect > a > span {
        display: block;
        width: 100%;
    }

    .contact-product-page-redirect > a > span {
        background-color: #999;
    }

}

/* loader */
.loader {
    width: 20px;
    height: 20px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    vertical-align: middle;
    margin-left: 5px;
}

#send-email.dis {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(100%);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* success message */

.contact-success-message {

    padding: 60px 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;

}

.contact-success-message > span {

    padding: 10px;
    color: #fff;
    background-color: #fff;
    border-radius: 4px;
    display: inline-block;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);

}

@media only screen and (max-width: 767px) {

    .contact-success-message > span {
        display: block;
        width: 100%;
        text-align: center;
    }
    
}

.contact-success-message-err > span {

    background-color: #CB4335;
}
.contact-success-message-ok > span {

    background-color: #17A589;
}