@keyframes slideTooltipIn {
    from {
        transform: translateY(5px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tb-tooltip {
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #797c80;
    border-radius: 50%;
    color: #797c80;
    cursor: help;
    font-size: 0.7rem;
    display: flex;
    min-height: 20px;
    height: 20px;
    justify-content: center;
    margin-left: 0.5em;
    position: relative;
    text-align: center;
    min-width: 20px;
    width: 20px;
}

.tb-tooltip-left {
    border-top-right-radius: 0!important;     
    right: 2em!important;
}

.tb-tooltip-right {
    border-top-left-radius: 0!important;     
    left: 100%!important;
}

.tb-tooltip-content {      
    animation-direction: alternate;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: slideTooltipIn;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 6px 21px rgb(0 0 0 / 10%);
    color: #504f4f;
    display: none;
    min-width: max-content;
    padding: 5px 10px 10px 10px;     
    position: absolute;
    top: 1.5em;
    z-index: 200000;
    border-top-right-radius: 0; 
    right: 2em;
}

.tb-tooltip:hover {
    background-color: rgba(225, 225, 225, 0.807);
    transition: 0.2s ease-in-out;
}

@media (max-width: 30em) {
    .tb-tooltip-content:before {
        border-top-right-radius: 0;
        transform: translate(-125%, 20%);
    }
}

@keyframes slideTooltipIn {
    from {
        transform: translateY(5px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.tooltip_modal-basic {
    align-items: center;
    background-color: #ffffff;
    border: 0px solid #797c80;
    border-radius: 50%;
    color: #797c80;
    cursor: help;
    font-size: 1rem;
    display: flex;
    min-height: 20px;
    height: 20px;
    justify-content: center;
    margin-left: 0.5em;
    position: relative;
    text-align: center;
    min-width: 20px;
    width: 20px;
}

.tooltip-content_modal-basic {
    animation-direction: alternate;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: slideTooltipIn;
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-top-right-radius: 0;
    box-shadow: 0px 6px 21px rgb(0 0 0 / 10%);
    color: #504f4f;
    display: none;
    min-width: max-content;

    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;

    position: absolute;    
}
