.info-pill {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    width: fit-content;
}

.info-pill .msg {
    max-width: calc(50vw - 40px);
    width: 300px;
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    opacity: 0;
    visibility: hidden;
    background-color: #333333;
    color: #F5F5F5;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 4px #00000010;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.info-pill .msg::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    left: -8px;
    transform: rotate(45deg) translateY(-55%);
    
    background-color: #333333;
    
    
}

.info-pill:hover .msg {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}