:root {
    --color_pqBlue: rgb(1, 28, 45);
}

.pq__tootip {
    width: 1.3rem;
    height: 1.3rem;
    /* width:16px;
    height:16px; */
    border-radius:10px;
    border: 0.1rem solid #fff;
    position:absolute;
    color: var(--color_pqBlue);
    background:rgba(255,255,255,.5);
    animation: pulse_pqTooltip 4.5s ease infinite;
    line-height: 1;
}

.pq__tootip.circle {
    width:16px;
    height:16px;
    border: 1px solid #fff;
}
.pq__tootip.text {
    width: auto;
    height: auto;
    border: 1px solid var(--color_pqBlue);
    font-size: 13px;
    padding: 0.1rem;
    right: -1rem;
    position: relative;
}

.pq__tootip__info {
    max-width: 350px;
    width: 20rem;
    padding: 10px;
    color: black;
    background:rgba(255,255,255,1);
    border-radius: 9px;
    position: absolute;
    visibility: hidden;
    /* margin:-105px 0 0 -100px; */
    box-shadow: 0px 0px 23px -9px rgba(0,0,0,.8);
    left: -4rem;
}

.pq__tootip__info::after {
    content: '';
    display: block;
    position:absolute;
    margin:10px 0 0 88px;
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}
.pq__tootip__info.in__table::after {
    margin:10px 0 0 52px;
}
.pq__tootip:hover {  -webkit-animation-play-state: paused;}

.pq__tootip:hover .pq__tootip__info {visibility:visible;}


@keyframes pulse_pqTooltip {
    0% { 
        border: 0.1rem solid gray;
        /* color: #3476A3;
        background-color: white; */
    }
    25% {
        border: 0.15rem solid white;
        /* background-color: #3476A3;
        color: white; */
    }
    50% {
        border: 0.2rem solid gray;
        /* color: var(--color_pqBlue);
        background-color: white; */
    }
    75% {
        border: 0.15rem solid white;
        /* background-color: #3476A3;
        color: white; */
    }
    100% {
        border: 0.1rem solid gray;
        /* color: #3476A3;
        background-color: white; */
    }
}



@media ( max-width: 768px) {
    .pq__tootip__info { left: 0; }
    .pq__tootip__info::after {
        margin: 10px 0 0 8px;
    }
}

@media (max-width: 575px) {
    .pq__tootip__info { left: auto; }
    .pq__tootip__info::after {
        /* right: 4rem; */
        margin: 10px 0 0 231px;
    }
    .pq__tootip__info.in__table { left: -6rem; }
    .pq__tootip__info.in__table::after {
        margin:10px 0 0 5.3rem;
    }
}
@media (max-width: 375px) {
    .pq__tootip__info { width: 19rem; }
}
@media (max-width: 350px) {
    .pq__tootip__info { width: 18rem; }
}
@media (max-width: 330px) {
    .pq__tootip__info { width: 16.5rem; }
}
@media (max-width: 30px) {
    .pq__tootip__info { width: 16rem; }
}