.tooltip-container {
    position: relative !important;
    display: inline-flex !important;
    z-index: 1000;
    width: 16px !important;
}

.tooltip-container .tooltip-icon {
    display: block;
    height: 16px;
    width: 16px;
    background-image: url('../svg/icon-info.svg');
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.tooltip-container .tooltip-content {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 25px);
    background-color: var(--wp--preset--color--ash-night);
    color: var(--wp--preset--color--bone-white);
    width: 342px;
    padding: 20px;
    margin: 0;
    z-index: 99;
    font-size: 14px;
    font-weight: var(--wp--custom--font-weight--semi-bold);
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
}

.tooltip-container .tooltip-content:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 16px solid var(--wp--preset--color--ash-night);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .tooltip-container .tooltip-content {
        width: 240px;
    }
}

td .tooltip-container {
    transform: translateY(3px);
}
