﻿/* Tooltip styles */
.infotip {
    z-index: 1000;
    display: none;
    opacity: 100%;
    right: 600px;
    box-shadow: 0 0 2px #ccc;
    border: 2px solid #CBCBCB;
    border-radius: .5rem;
    max-width: 550px;
    padding: 0 10px;
    background-color: #fff;
    font-size: 1rem;
    line-height: 1.3rem;
    text-align: left;
}

    .infotip h6 {
        font-weight: bold !important;
    }

    .infotip ol li p span {
        color: #000 !important;
        font-size: 1rem !important;
        line-height: 1.1rem !important;
    }

    .infotip ol {
        padding-left: 10px;
    }

    .infotip[data-show] {
        display: block;
    }

/* Arrow styles */
.arrow:before {
    content: '';
    position: absolute;
    left: 40px;
    bottom: -8px;
    border-width: 0 1.5rem 1.5rem;
    border-color: transparent;
    border-style: solid;
    border-bottom-color: #CBCBCB;
}

.arrow:after {
    content: '';
    position: absolute;
    left: 40px;
    bottom: -11px;
    border-width: 0 1.5rem 1.5rem;
    border-color: transparent;
    border-style: solid;
    border-bottom-color: #fff;
}

/* Align arow according to tooltip position */
.infotip[data-popper-placement^='top'] > .arrow:before {
    transform: rotate(180deg);
    bottom: -16px;
}

.infotip[data-popper-placement^='top'] > .arrow:after {
    transform: rotate(180deg);
    bottom: -13px;
}

.infotip[data-popper-placement^='bottom'] > .arrow {
    top: -10px;
}

/* Styles for tooltip inside the table */

.table-infotip {
    left: calc(25% - 150px) !important;
}

    .table-infotip .arrow:before {
        left: calc(-100% - 40px) !important;
        border-width: 0 1rem 1.5rem;
    }

    .table-infotip .arrow:after {
        left: calc(-100% - 40px) !important;
        border-width: 0 1rem 1.5rem;
    }

    .table-infotip[data-popper-placement^='bottom'] {
        top: 20px !important;
    }

    .table-infotip[data-popper-placement^='top'] {
        bottom: 20px !important;
    }

@media (max-width: 992px) {
    .infotip {
        display: none !important;
    }
}
