.tip {
    display: inline-block;
}

.tip-title {
    width: auto;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border: 1px solid #ccc;
    background: white;
    font-size: 14px;
    user-select: none;
    cursor: pointer;
}

.tip-title span {
    margin: 0 3px;
}

.tip-title .fa-info-circle {
    position: relative;
    top: 0;
    font-size: 15px;
}

.tip-title .fa-angle-double-up {
    position: relative;
    font-size: 18px;
    transition: all 1s;
    width: auto;
    height: auto;
}

.tip-title .fa-angle-double-up.rotate {
    transform: rotateZ(180deg);
}

.tip-content {
    display: none;
    width: 300px;
    position: absolute;
}

.tip-content-left {
    right: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 8px 10px;
    top: calc(100% + 3px);
    box-shadow: -2px 2px 4px 1px #0000003b;
}

.tip-content-right {
    left: 0;
    box-shadow: 2px 2px 4px 1px #0000003b;
}