.infoDescription{
    display: inline-block;
    width: 15px;
    height: 15px;
    position: relative;
    border-radius: 8px;
    background-color: #3570ED;
    margin-left: 5px;
    
}

.infoDescription .infoLabel{
    color: white;
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 8px;
    text-align: center;
    bottom: 1px;
    font-size: 14px;
}

.infoDescription .infoContent{
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #f8f89f;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 10px;
    font-weight: normal;
    min-width: 300px;
    z-index: 9999;
    display: none;
}

.infoDescription .infoContent .headline{
    position: relative;
    width: 100%;
    height: 24px;
    font-weight: bold;
    top: 0px;
}

.infoDescription .close{
    position: absolute;
    border: 1px solid #ccc;
    top: -1px;
    right: -1px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 3px 8px;
    border: 1px solid #ccc;
    font-weight: bold;
    z-index: 10000;
}

.infoDescription .infoContent .txt{
    position: relative;
    width: 100%;
}