﻿.formErrorResult {
    display: none;
    border: 1px solid #ae1f29;
    box-shadow: 0 0 2px #ae1f29;
    padding: 12px;
    border-radius: 5px;
    color: #ae1f29;
    margin-bottom: 25px;
    width: 100%;
}
    .formErrorResult.success {
        border: 1px solid #358a3c;
        box-shadow: 0 0 2px #358a3c;
        color: #358a3c;
    }
.input-wrapper {
    position: relative;
}
    .input-wrapper .errorMessage {
        position: absolute;
        top: 0;
        right: 0;
        color: #ff0000;
        font-size: 15px;
        font-weight: 300;
        line-height: 18px;
    }
.captcha-holder input[type=text] {
    position: absolute;
    top: -1000px;
    left: -1000px;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    font-size: 0;
}


.tabItem {
    display: none;
}
    .tabItem.active {
        display: block;
    }