.tooltip {
    background: #cfe8d4;
    z-index: 10;
    width: 300px;
    /*left: 35px !important;*/
    /*top: 32px !important;*/
    border-radius: 3px;
    color: #222222;
}
.tooltip[aria-hidden=true] {
    display: none;
}
.tooltip-inner {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.4;
}
.tooltip[x-placement="right-end"]:after {
    right: 100%;
    bottom: 15px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(207, 232, 212, 0);
    border-right-color: #cfe8d4;
    border-width: 7px;
    margin-top: -7px;
}
.tooltip[x-placement="end-center"]:after {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(207, 232, 212, 0);
    border-bottom-color: #cfe8d4;
    border-width: 6px;
    margin-left: -6px;
}
.tooltip[x-placement="right-start"]:after {
    right: 100%;
    top: 22px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(207, 232, 212, 0);
    border-right-color: #cfe8d4;
    border-width: 7px;
    margin-top: -7px;
}

.tooltip ol li {
    list-style: decimal !important;
    margin-bottom: 4px;
}
.tooltip ol li:last-child {
    margin-bottom: 0;
}
.tooltip ol {
    margin-left: 12px;
}

.tooltip[x-placement="end-center"] {
    margin-top: 8px;
    width: auto;
}