.chardinjs-overlay {
    position: absolute;
    z-index: 999996;
    background-color: #000;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.chardinjs-overlay-fade-in {
    opacity: .70;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=70)';
    filter: alpha(opacity=70);
}

.chardinjs-overlay-title {
    z-index: 999997;
    opacity: 1;
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 12px 10px 12px 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

.chardinjs-overlay-first-tip {
    z-index: 999997;
    opacity: 0.9;
    left: 50%;
    top: 50%;
    position: fixed;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    padding: 12px 10px 5px 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

.chardinjs-overlay-title-close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    margin-right: 10px;
    margin-top: 2px;
}

.chardinjs-helper-layer {
    position: absolute;
    z-index: 999998;
    color: white;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.chardinjs-helper-selected {
    background-color: rgba(144, 202, 249, 0.5) !important;
}

.chardinjs-tooltip {
    position: absolute;
    -webkit-transition: opacity 0.1s ease-out;
    -moz-transition: opacity 0.1s ease-out;
    -ms-transition: opacity 0.1s ease-out;
    -o-transition: opacity 0.1s ease-out;
    transition: opacity 0.1s ease-out;
}

.chardinjs-tooltip-text {
    position: absolute;
    text-align: center;
    z-index: 999999;
}

.chardinjs-tooltip-mark {
    z-index: 999998;
    text-align: center;
}

.chardinjs-relative-position {
    position: relative;
}

.help-content {
    color: #ffffff;
}

    .help-content .chardinjs-mark-circle {
        background-color: rgba(231, 126, 35, 0.5);
        -ms-border-radius: 50%;
        border-radius: 50%;
        display: block;
        text-align: center;
        float: left;
    }

    .help-content .chardinjs-mark-rectangle {
        background-color: rgba(231, 126, 35, 0.5);
        display: block;
        text-align: center;
        float: left;
    }

    .help-content .chardinjs-mark-arrow-down,
    .help-content .chardinjs-mark-arrow-right {
        background-color:rgba(231, 126, 35, 0.5);
        display: inline-block;
        position: relative;
        float: left;
        /* calculated dynamically in chardinjs.js */
    }

    .help-content .chardinjs-tooltip-mark .mark-text {
        color: #ffffff !important;
        left: 50%;
        top: 50%;
        position: relative;
        transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }

    .help-content .chardinjs-mark-arrow-down:after {
        border-style: solid;
        border-color: rgba(231, 126, 35, 0.5) transparent transparent transparent;
        height: 0;
        content: "";
        position: absolute;
        width: 0;
        /* border and position is calculated and appended dynamically in chardinjs.js */
    }

    .help-content .chardinjs-mark-arrow-right:after {
        border-style: solid;
        border-color: transparent transparent transparent rgba(231, 126, 35, 0.5);
        height: 0;
        content: "";
        position: absolute;
        width: 0;
        /* border and position is calculated and appended dynamically in chardinjs.js */
    }

    .chardinjs-helper-selected.chardinjs-mark-arrow-down:after {
        border-color: rgba(144, 202, 249, 0.5) transparent transparent transparent !important;
    }

    .chardinjs-helper-selected.chardinjs-mark-arrow-right:after {
        border-color: transparent transparent transparent rgba(144, 202, 249, 0.5) !important;
    }

    .help-content .message {
        font-size: 13px;
        line-height: 16px;
    }