/**
 * Contact Popup Modal
 */

body.thim-popup-active #mf-popup-contact {
    cursor:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),progress
}

#mf-popup-contact.active {
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
    transform: scale(1,1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: alpha(opacity=100);
    filter: alpha(opacity=100);
    visibility: visible;
}

#mf-popup-contact {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    -ms-filter: alpha(opacity=0);
    filter: alpha(opacity=0);
    visibility: hidden;
    overflow: auto;
    background: rgba(0,0,0,.8);
    margin: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: scale(.2,.2);
    -ms-transform: scale(.2,.2);
    -o-transform: scale(.2,.2);
    transform: scale(.2,.2);
    -webkit-transition: all .3s cubic-bezier(.4,0,1,1);
    -moz-transition: all .3s cubic-bezier(.4,0,1,1);
    -o-transition: all .3s cubic-bezier(.4,0,1,1);
    -ms-transition: all .3s cubic-bezier(.4,0,1,1);
    transition: all .3s cubic-bezier(.4,0,1,1);
}


#mf-popup-contact .mf-contact-container {
    background: #fff;
    position: relative;
    padding: 50px 50px 80px;
    overflow: hidden;
    max-width: 600px;
    margin: auto;
    top: 0;
    cursor: default;
}

#mf-popup-contact .mf-contact-container .close-popup {
    background: #2e8ece;
}
#mf-popup-contact .mf-contact-container .close-popup {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    display: none;
}

#mf-popup-contact .mf-contact-container .form-error-wrapper {
    padding: .5em 1em;
    margin: 0 0 2em;
    background-color: #f7f6f7;
    color: #515151;
    border-top: 3px solid red;
    list-style: none;
    width: auto;
    word-wrap: break-word;
}

.mf-contact-form-wrapper #contactSubmitUsername {
    display: none;
}
.mf-contact-form-wrapper  .form-field-wrapper label {
    display: none;
}
.mf-contact-form-wrapper  .form-field-wrapper input {
    width: 100%;
    line-height: 30px;
    padding: 4px 20px;
    border: 1px solid #e5e5e5;
    color: #999;
    margin-bottom: 20px;
    clear: both;
    display: block;
    min-height: 40px;
    border-radius: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}




