.info-table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 8px;
    box-shadow:
        -11px 12px 9px 0 rgba(0, 0, 0, 0.02),
        -5px 5px 7px 0 rgba(0, 0, 0, 0.04);
    border: none !important;
}

.table-box {
    border-collapse: collapse;
    width: 100%;
    border-radius: 8px;
    box-shadow:
        -11px 12px 9px 0 rgba(0, 0, 0, 0.02),
        -5px 5px 7px 0 rgba(0, 0, 0, 0.04);
    background-color: #FFFFFF;
}

.table-box h3 {
    padding: 25px 20px 15px 20px;
    font-family: Montserrat, serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.16px;
    color: #000000;
}

.info-table td {
    border-right: none;
}

.info-table td {
    padding: 25px 20px 25px 20px;
    vertical-align: top;
}

.info-table td:first-child {
    font-family: Montserrat, serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16px;
    color: #363636;
}

.info-table td:last-child {
    font-family: Montserrat, serif;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16px;
    text-align: right;
    font-weight: bold;
    white-space: nowrap;
    color: #363636;

}

.tooltip {
    display: inline-flex;
    position: relative;
    cursor: help;
    font-weight: normal;
    color: #666;
    margin-left: 5px;
}

.tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: 120%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
    max-width: 275px;
    z-index: 999;
    text-align: center;
}