.gfield_error .gfield_validation_message {
    display: block !important;
}

.gfield--type-revinate .gfield_description {
    display: none;
}

.gform-body .gfield input {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #2D4440;
    padding: 0;
    font-family: nimbus-sans, Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: 0.2rem;
}

.revinate-input {
    cursor: pointer;
    width: 100%;
    background: transparent !important;
    color: transparent !important;
    text-indent: -999px;
}

.revinate-input-container {
    position: relative;
}

.revinate-input-container .icon {
    pointer-events: none;
}

.revinate-input-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    height: 34px;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}

.revinate-input-container .icon:before {
    content: "";
    background: currentColor;
    width: 10px;
    height: 2px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.revinate-input-container .icon:after {
    content: "";
    background: currentColor;
    width: 2px;
    height: 10px;
    position: absolute;
    right: 4px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.modal-revinate {
    pointer-events: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 12;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7490196078431373);
    opacity: 0;
    color: #fff;
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.modal-revinate.modal--show {
    pointer-events: all;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-revinate.modal--show .modal-revinate__outer-container {
    display: block;
}

.modal-revinate .modal-revinate__container {
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px;
}