.product .inbank {
position: relative;
display: flex;
align-items: center;
padding: 10px 0 10px 0;
margin: 0;
}
.product .inbank > div {
margin: 0;
}
.product .inbank_logo_product {
padding-right: 10px;
max-height: 40px;
}
.inbank.inbank--calculator + .inbank.inbank--calculator {
padding: 10px 0 10px 0;
}
.product .inbank__img {
max-width: 100%;
height: auto;
display: contents;
}
.product .inbank__message {
display: flex;
align-items: center;
font-size: 15px;
color: #21093A;
margin-bottom: 0;
}
.inbank__lt_full_width {
width: 100%;
min-height: 26px;
overflow: hidden;
white-space: nowrap;
position: relative;
}
.inbank__lt_full_width.align-center {
display: flex;
align-items: center;
}
.inbank__lt_full_width .scrolling_text {
position: absolute;
white-space: nowrap;
}  .product .medium-inbank-logo {
max-width: 160px;
}
.product .small-inbank-logo {
max-width: 120px;
}
.product .inbank__message--small {
font-size: 13px;
color: #7a7a7a;
margin-bottom: 0;
}
.product .inbank__tooltip {
display: flex;
align-items: center;
margin-left: 10px;
}
.product .inbank__tooltip > svg {
width: 20px;
height: 20px;
fill: #21093A;
}
.tooltip {
position: relative;
}
.tooltip::before {
position: absolute;
content: ' ';
background-color: #010101;
width: 15px;
height: 15px;
z-index: 500;
opacity: 0;
pointer-events: none;
}
.tooltip::after {
content: attr(data-tippy-content);
background-color: #010101;
border-radius: 5px;
color: white;
position: absolute;
text-align: center;
z-index: 555;
opacity: 0;
pointer-events: none;
height: auto;
display: flex;
align-items: center;
padding: 0.56rem;
min-width: 375px;
}
.tooltip:hover::before, .tooltip:hover::after {
opacity: 1;
}
.tooltip.t-top::before {
top: 0;
left: 50%;
transform: translate(-50%, 0) rotate(45deg);
}
.tooltip.t-top::after {
top: 0;
left: 50%;
transform: translate(-50%, 0);
}
.tooltip.t-top:hover::before {
transform: translate(-50%, calc(-100% - 5px)) rotate(45deg);
}
.tooltip.t-top:hover::after {
transform: translate(-50%, calc(-100% - 10px));
}
.tooltip.t-bottom:hover::after {
transform: translate(-50%, calc(100% + 10px));
}
@media (max-width: 420px) {
.tooltip.t-top:hover::after {
transform: translate(-90%, calc(-100% - 10px));
}
}
.inbank__tooltip--hidden {
display: none !important;
}