.extended-description .detail-parameters th .has-tooltip {
    display: flex;
    flex-wrap: wrap;
}

.extended-description .detail-parameters th .has-tooltip .question-tooltip {
    order: 1;
}

.mytooltip {
    position: relative;

    top: -5px;
}

.question-tooltip {
    width: 12px;
    height: 12px;
    position: relative;
    top: -5px;
}

.mytooltip-ico {
    display: inline-block;

    background: url("/user/documents/upload/icons/info.svg") no-repeat;
    background-size: 100% auto;
    border: none;
    border-radius: 0;
    font-size: 0;
    height: 12px;
    vertical-align: middle;
    width: 12px;
    cursor: help;
}

.mytooltip-content {
    display: none;
    position: absolute;
    padding: 3px 8px;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    max-width: 200px;
    width: max-content;

    font-size: 12px;
    line-height: 1.384;
    z-index: 1070;
    opacity: .9;

    background-color: #1961ac;
    color: #eff9ff;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    pointer-events: none;
}

.mytooltip-content::after {
    display: inline-block;

    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    border-width: 5px 5px 0;
    border-color: transparent;
    border-top-color: #1961ac;
    border-style: solid;
}

.mytooltip:hover .mytooltip-content {
    display: inline-block;
}

#filters {
    overflow: visible;
}

#filters .mytooltip {
    margin-right: 4px;
}