/**
 * (en) Bootstrap Tooltip
 * (de) Bootstrap Tooltip
 *
 * @copyright			 Copyright 2015, crossbase mediasolution GmbH
 * @version				 1.0
 */

@media screen {

    [class*='tooltip-area'],
    [class*='tooltip-popover'] {
        outline: none;
        background: transparent;
        cursor: pointer;
        position: relative;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        color: #A1007B;
        border-bottom: 1px dashed transparent;
    }

    [class*='tooltip-area']:hover,
    [class*='tooltip-popover']:hover {
        color: #A1007B;
    }

    [class*='tooltip-area'].single-line:hover,
    [class*='tooltip-popover'].single-line:hover {
        color: #A1007B;
        border-bottom: 1px dashed transparent;
    }

    [class*='tooltip-area'].single-line::after,
    [class*='tooltip-popover'].single-line::after {
        content: '';
        background: #A1007B;
        width: 0;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        margin: 0 auto;
        -webkit-transition: width 0.3s ease;
        transition: width 0.3s ease;
    }

    [class*='tooltip-area'].single-line:hover::after,
    [class*='tooltip-popover'].single-line:hover::after {
        width: 100%;
    }

    .float-left[class*='tooltip-area'].single-line:hover::after,
    .float-left[class*='tooltip-popover'].single-line:hover::after {
        width: 0;
    }

    table [class*='tooltip-area'].single-line:hover::after,
    table [class*='tooltip-popover'].single-line:hover::after,
    label [class*='tooltip-area'].single-line:hover::after,
    label [class*='tooltip-popover'].single-line:hover::after,
    .icon-tooltip[class*='tooltip-area'].single-line:hover::after,
    .icon-tooltip[class*='tooltip-popover'].single-line:hover::after {
        width: 0;
        color: inherit;
    }

    [class*='tooltip-area'].single-line:hover::before,
    [class*='tooltip-area'].single-line > span:hover,
    [class*='tooltip-popover'].single-line:hover::before,
    [class*='tooltip-popover'].single-line > span:hover {
        color: #A1007B;
    }

    table [class*='tooltip-area'].single-line:hover::before,
    table [class*='tooltip-area'].single-line > span:hover,
    table [class*='tooltip-popover'].single-line:hover::before,
    table [class*='tooltip-popover'].single-line > span:hover,
    label [class*='tooltip-area'].single-line:hover::before,
    label [class*='tooltip-area'].single-line > span:hover,
    label [class*='tooltip-popover'].single-line:hover::before,
    label [class*='tooltip-popover'].single-line > span:hover {
        color: inherit;
    }

    [class*='tooltip-area'] *,
    [class*='tooltip-popover'] * {
        cursor: pointer;
        white-space: nowrap;
    }

    .tooltip-area-basic {
        font-family: inherit;
    }

    .tooltip-area-helper,
    .term-link {
        cursor: help;
    }

    .term-link {
        border: 1px dashed #707070;
        padding: 0 4px;
    }

    .tooltip-area-helper:before,
    .term-link:before {
        font-family: 'Font Awesome 5 Free';
        font-weight: 300;
        content: '\f059';
        padding: 0 4px 0 0;
        font-size: 15px;
    }

    .tooltip {
        position: absolute;
        z-index: 9999;
        display: block;
        text-align: center;
        color: #fff;
        opacity: 0;
    }

    .tooltip.in {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    .tooltip.top {
        margin-top: -2px;
        padding: 8px 0;
    }

    .tooltip.right {
        margin-left: 8px;
        padding: 0 8px;
    }

    .tooltip.bottom {
        padding: 8px 0;
    }

    .tooltip.left {
        margin-left: -8px;
        padding: 0 8px;
    }

    .tooltip-inner {
        max-width: 250px;
        padding: 8px 16px;
        color: #ffffff;
        text-align: center;
        background: #A1007B;
        border-radius: 8px;
    }

    .tooltip-inner a,
    .tooltip-inner a:visited,
    .tooltip-inner a:focus,
    .tooltip-inner a:active {
        color: #ffffff;
        text-decoration: underline;
    }

    .tooltip-inner a:hover {
        text-decoration: none;
    }

    .term-exp {
        padding: 0;
        color: #A1007B;
        text-align: center;
        background-color: transparent;
        cursor: pointer;
    }

    .term-exp-inner {
        max-width: 560px;
        text-align: left;
    }

    .term-exp::before {
        padding: 0 2px 0 0;
    }

    .tooltip-arrow {
        position: absolute;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }

    .tooltip.top .tooltip-arrow {
        bottom: 0;
        left: 50%;
        margin-left: -8px;
        border-width: 8px 8px 0;
        border-top-color: #A1007B;
    }

    .tooltip.top-left .tooltip-arrow {
        bottom: 0;
        right: 8px;
        margin-bottom: -8px;
        border-width: 8px 8px 0;
        border-top-color: #A1007B;
    }

    .tooltip.top-right .tooltip-arrow {
        bottom: 0;
        left: 8px;
        margin-bottom: -8px;
        border-width: 8px 8px 0;
        border-top-color: #A1007B;
    }

    .tooltip.right .tooltip-arrow {
        top: 50%;
        left: 0;
        margin-top: -8px;
        border-width: 8px 8px 8px 0;
        border-right-color: #A1007B;
    }

    .tooltip.left .tooltip-arrow {
        top: 50%;
        right: 0;
        margin-top: -8px;
        border-width: 8px 0 8px 8px;
        border-left-color: #A1007B;
    }

    .tooltip.bottom .tooltip-arrow {
        top: 0;
        left: 50%;
        margin-left: -8px;
        border-width: 0 8px 8px;
        border-bottom-color: #A1007B;
    }

    .tooltip.bottom-left .tooltip-arrow {
        top: 0;
        right: 8px;
        margin-top: -8px;
        border-width: 0 8px 8px;
        border-bottom-color: #A1007B;
    }

    .tooltip.bottom-right .tooltip-arrow {
        top: 0;
        left: 8px;
        margin-top: -8px;
        border-width: 0 8px 8px;
        border-bottom-color: #A1007B;
    }

    .fade {
        -webkit-transition: opacity .5s ease;
        transition: opacity .5s ease;
    }

    .side-button-content {
        position: fixed
    }

}

@media screen and (max-width: 560px) {

    .tooltip.tooltip-hide {
        display: none !important;
    }

}