/**
 * Copyright © Inbank, Inc. All rights reserved.
 * See LICENSE.txt for license details.
 */
/*
.lt-product-img {
    float: left !important;
}
.lt-product-span {
    margin: 0 0 0 10px;
}
label.has-lt-product-span::before {
    float: left;
}
*/
.inbank-checkout-container .inbank-checkout-granted-text {
    margin-bottom: 15px !important;
}

.inbank-checkout-container .inbank-checkout-checkbox {
    width: 20px;
    float: left !important;
    padding: 3px
}

.inbank-checkout-container .inbank-checkout-text {
    color: #21093A;
    padding-left: 25px;
    margin-bottom: 3px !important;
    font-size: small;
    font-weight: 600;
}

.inbank-payment-checkout .inbank__additional_details {
    margin-top: 15px !important;
}
.inbank_moki_additional_details {
    color: #4F1FFF;
    text-align: left;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 20px 0;
}
.inbank_moki_additional_details .inbank__tooltip {
    display: flex;
    align-items: center;
}
.inbank_moki_additional_details .inbank__tooltip svg {
    margin-right: 5px;
}
.lt-span-title {
    margin-left: 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: Inter;
}
.mokiTitle {
    color: #21093A;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.18px;
    font-family: Inter;
}
.mokiDescription {
    color: #21093A;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-left: 5px;
    font-family: Inter;
}

.tooltip {
    position: relative;
    cursor: pointer;
}

.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: left;
    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: 10%;
    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;
}