/*
Tipr 3.1
Copyright (c) 2017 Tipue
Tipr is released under the MIT License
http://www.tipue.com/tipr
*/

.tipr_content {
    font: 13px/1.7 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #076c95;
    padding: 9px 17px;
}

.tipr_container_below {
    display: none;
    position: absolute;
    margin-top: 13px;
    z-index: 1000;
}

.tipr_container_above {
    display: none;
    position: absolute;
    margin-top: -57px;
    z-index: 1000;
    right: 0;
}

.tipr_point_above,
.tipr_point_below {
    position: relative;
    background: #076c95;
    /* border: 1px solid #dcdcdc; */
}

.tipr_point_above:after,
.tipr_point_above:before {
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    top: 100%;
    content: "";
    height: 0;
    width: 0;
}

.tipr_point_above:after {
    border-top-color: #076c95;
    border-width: 8px;
    left: 50%;
    margin-left: -8px;
}

.tipr_point_above:before {
    border-top-color: #dcdcdc;
    border-width: 9px;
    left: 50%;
    margin-left: -9px;
}

.tipr_point_below:after,
.tipr_point_below:before {
    position: absolute;
    pointer-events: none;
    border: solid transparent;
    bottom: 100%;
    content: "";
    height: 0;
    width: 0;
}

.tipr_point_below:after {
    border-bottom-color: #fff;
    border-width: 8px;
    left: 50%;
    margin-left: -8px;
}

.tipr_point_below:before {
    border-bottom-color: #dcdcdc;
    border-width: 9px;
    left: 50%;
    margin-left: -9px;
}