/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .pi-cefw-optional-fees-list{
     list-style: none;
     margin-left:0px;
     padding-left:0px;
 }

 .pi-cefw-optional-fees-list li{
    margin-left:0px;
    padding-left:0px;
 }

 .pi-cefw-optional-fees-list li input.pi-cefw-optional-fees{
     margin-right:10px !important;
 }

/* ---- Fee tooltip (shown next to fee label on cart/checkout) ---- */
.pi-cefw-fee-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    border-radius: 50%;
    background: #1e3a5f;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    cursor: help;
    vertical-align: middle;
    user-select: none;
    transition: background-color 0.15s ease-in-out;
}

.pi-cefw-fee-tooltip:hover,
.pi-cefw-fee-tooltip:focus {
    background: #2a5285;
    outline: none;
}

.pi-cefw-fee-tooltip .pi-cefw-fee-tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1e3a5f;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    white-space: normal;
    width: max-content;
    max-width: 240px;
    text-align: left;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

.pi-cefw-fee-tooltip .pi-cefw-fee-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1e3a5f transparent transparent transparent;
}

.pi-cefw-fee-tooltip:hover .pi-cefw-fee-tooltip-text,
.pi-cefw-fee-tooltip:focus .pi-cefw-fee-tooltip-text {
    visibility: visible;
    opacity: 1;
}