/*
Theme Name:   generatepress child theme
Description:  Write here a brief description about your child-theme
Author:       Michael
Author URL:   Write here the author's blog or website url
Template:     generatepress
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  generatepress-child
*/

/* Write here your own personal stylesheet */
.d-none{
    display: none !important;
}
.fieldRow .formField.formError{
    border-color: red;
}
.fieldRow [type="checkbox"].formError:not(:checked) + label.formCheckboxLabel:before{
    border-color: red;
}
.fieldRow span.success{
    font-size: 16px !important;
    font-weight: 600 !important;
    color: green;
    margin-left: 0 !important;
    display: block !important;
}
span.error{
    font-size: 16px;
    font-weight: 600;
    color: red;
}
.fieldRow .blueBtn{
    margin-top: 15px;
}
body.postid-2086 blockquote, body.postid-2099 blockquote{
    font-size: 17px;
}
.fieldRow{
    position: relative;
}
.fieldRow .errorPart{
    /*    background: url(error_icon.png) no-repeat center;
        width: 16px;
        height: 16px;
        content: ' ';
        position: absolute;
        left: 0;
        top: 14px;*/
}
.tooltip {
    position: relative;
}
.tooltip .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 170px;
    background-color: #555;
    color: #fff;
    text-align: left;
    padding: 0 10px;
    border-radius: 4px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    font-weight: normal;
    top: 0;
    left: 125%;
    margin: 0 0 0 3px;
}
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}