.os3-exitpop-container {
    left: 10px;
    z-index: 10000;
    top: 10px;
    right: 10px;
    bottom: 10px;
    display: block
}

.os3-exitpop-container--table {
    display: table;
    width: 100%;
    height: 100%
}

.os3-exitpop-container--cell {
    display: table-cell;
    text-align: center;
    vertical-align: middle
}

.os3-exitpop-container img {
    max-width: 100%;
    max-height: 100%
}

.os3-exitpop-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    z-index: 9999;
    background-color: #000;
    opacity: .6
}

span.error {
    position: relative;
    background: #ee0101;
    color: #fff;
    box-sizing: border-box;
    padding: 4px 8px;
    font-family: sans-serif;
    opacity: .9;
    font-size: 12px;
    height: 20px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 2px;
    width: 95%;
    display: inline-block;
    margin-left: 20px;
}
span.error::after{
    content: '';
    position: absolute;
    left: 40%;
    top: -5px;
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ee0101;
    clear: both;
}

.os3-error-tooltip::after {
    height: 2px;
    width: 0;
    z-index: 1;
    content: '';
    position: absolute;
    border: 5px solid transparent;
    border-bottom-color: #ee0101;
    left: 102px;
    top: -10px
}

.os3-field-error {
    border-color: #ee0101;
    outline-color: #ee0101;
    border-style: solid
}