﻿/* Tooltip */
.phone-tooltip {
    width: 148px;
    position: absolute;
}
.text-wrapper {
    /*check position in lang css*/
    background: white;
    width: 100px;
    /* Shadow/button */
    filter: drop-shadow(-2px 4px 10px rgba(0, 0, 0, 0.15));
    border-radius: 8px;
    text-align: center;
    padding: 8px 24px;
}

    .text-wrapper > div {
        width: 100px;
        padding: 0;
        text-align: center;
    }

.text-wrapper span {
    font-size: 10px;
    font-weight: 400;
    line-height: 130%;
    font-family: Arial;
}

.triangle {
    position: absolute;
    top: -15%;
    left: 80%;
    width: 0;
    height: 0;
    border-left: 7.65px solid transparent;
    border-right: 7.65px solid transparent;
    border-bottom: 12px solid white;
}