/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 24, 2023, 2:39:23 PM
    Author     : admin
*/

.popup {
    position: fixed;
    display: inline-block;
    border-bottom: 1px dotted black;
    padding-top: 25px;
    z-index: 1000;
}

.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.popup .popuptext {
    visibility: visible;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 10;
    bottom: 250%;
    transition: opacity 0.3s;
    min-width: 100px;
    max-width: 350px;
}
.input-group .popup .popuptext {
    bottom: 125% !important;
    left: 50% !important; 
}