.has-tip {
    position: relative;
    z-index: 2;
}
.swTip{
    display: none;
    position: absolute;
    background-color: rgb(1, 52, 78);
    color: #ffffff;
    font-size: 12px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 10px;
    max-width: 200px;
    text-align: center;
    font-size: .75rem;
    z-index: 1;
}
.swTip:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    z-index: 1;
}
.swTip.swTip-right:after {
    border-color: transparent rgb(1, 52, 78) transparent transparent;
    /*top: calc(50% - 8px);*/
    top: 12px;
    left: -16px;
    right: auto;
}
.swTip.swTip-left:after {
    border-color: transparent transparent transparent rgb(1, 52, 78);
    top: calc(50% - 8px);
    right: -16px;
    left: auto;
}
.swTip.swTip-bottom:after {
    border-color: transparent transparent rgb(1, 52, 78) transparent;
    top: -16px;
    left: 10px;
    right: auto;
}
.swTip.swTip-bottom.swTip-arrow-top-right:after {
    left: auto;
    right: 10px;
}
.swTip.swTip-bottom.swTip-arrow-top-center:after {
    top: -16px;
    left: calc(50% - 8px);
    right: auto;
}

.swTip.swTip-top:after {
    border-color: rgb(1, 52, 78) transparent transparent transparent;
    bottom: -16px;
    left: 10px;
    right: auto;
}
.swTip.swTip-top.swTip-arrow-bottom-right:after {
    left: auto;
    right: 10px;
}
.swTip.swTip-top.swTip-arrow-bottom-center:after {
    bottom: -16px;
    left: calc(50% - 8px);
    right: auto;
}
