﻿.errorMessage {
    position: relative;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    background: red;
    padding: 2px;
    margin-top: 2px;
    width: 100%;
    white-space:pre;
}
.errorMark {
    position: relative;
    cursor: pointer;
    display: inline-block;
    color: #ffffff;
    background: red;
    padding: 2px;
}


.tooltip1 {
    position: relative;
    cursor: pointer;
    display: inline-block;
    color:red;
}

.tooltip1 p {
    margin: 0;
    padding: 0;
}

.description1 {
    display: none;
    position: absolute;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6em;
    color: #fff;
    border-radius: 5px;
    background: #000;
    width: 250px;
}

    .description1:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
/*        border: 5px solid transparent;
        border-top: 5px solid #000;
        margin-left: -5px;
*/    }

.tooltip1:hover .description1 {
    display: inline-block;
    top:-20px;
    left:-60px;
/*    top: -70px;
    left: -60px;
*/}
