﻿.tooltip__button
{
    font-size: 1.4375rem;
    color: #00afe1;
    cursor: pointer;
}
.tooltip__button:before
{
    font-family: fontello;
    font-style: normal;
    font-weight: 400;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
}
.tooltip__button:hover
{
    color: #004178;
}
.tooltip__button.icon-info-question:before
{
    content: "";
}
.tooltip__button.icon-info:before
{
    content: "";
}
.tooltip__content
{
    position: fixed;
    background: #fff;
    width: 90%;
    max-width: 16.875rem;
    padding: .9375rem;
    box-shadow: 2px 2px 15px 0 rgba(0,0,0,.1);
    border-radius: .375rem;
    color: #000;
    text-align: left;
    font-size: 15px;
    line-height: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease,visibility .3s ease 0s;
}
.tooltip__content.is-open
{
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease,visibility 0s;
    z-index: 10;
}
.tooltip__content:before
{
    content: "";
    position: absolute;
    width: .9375rem;
    height: .9375rem;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: center;
    bottom: -.75rem;
    left: 0;
    top: calc(50% + 7.5px);
    transform: rotate(45deg) translateX(-50%);
    z-index: 1;
}
.tooltip__content.is-right:before
{
    left: auto;
    right: .75rem;
}
@media(max-width: 768.98px)
{
    .tooltip__content>*
    {
        max-height: 200px;
        overflow: auto;
    }
    .tooltip__content:before
    {
        left: 50%;
        top: auto;
    }
    .tooltip__content.is-left:before
    {
        right: auto;
        left: 3.75rem;
    }
    .tooltip__content.content-is-bottom:before
    {
        top: 0!important;
        bottom: auto;
    }
}
.hints-on-top .tooltip__content:before
{
    left: 50%;
    top: auto;
}
.hints-on-top .tooltip__content.is-right:before
{
    left: auto;
    right: .75rem;
}
.hints-on-top .tooltip__content.is-left:before
{
    right: auto;
    left: 3.75rem;
}
@media(max-width: 768.98px)
{
    .hints-on-top .tooltip__content.is-tariff-right:before
    {
        right: 55px;
    }
}
.cke-infotext, ul li.has-tooltip
{
    display: inline-block;
    position: relative;
}
.cke-infotext
{
    right: 3px;
}
.cke-infotext .tooltip__button
{
    display: inline-block;
    font-size: inherit;
    color: inherit;
}
.cke-infotext .tooltip__button:before
{
    font-size: 1.5em;
    vertical-align: middle;
    margin: 0;
}