.hwp-trigger {
    position: relative;
    cursor: help;

    color: inherit;
    font: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: inherit;
    line-height: inherit;
}

.hwp-tooltip {

    position: absolute;

    width: 300px;

    background: #ffffff;

    color: #333;

    border-radius: 10px;

    padding: 14px;

    box-shadow: 0 10px 25px rgba(0,0,0,.20);

    opacity: 0;

    visibility: hidden;

    transform: translateY(5px);

    transition: all .15s ease;

    z-index: 99999;
}

.hwp-tooltip.active {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.hwp-tooltip-title {

    font-weight: 700;

    font-size: 16px;

    margin-bottom: 8px;

}

.hwp-tooltip-description {

    font-size: 14px;

    line-height: 1.5;

}