/*TOOLTIP*/
/*the guarntee image*/
.mobile-guarantee-statement-image {
    width:30%;
    max-width: 200px;
    height: auto;
}
.mobile-guarantee-statement {padding-bottom: 5px}
@media (min-width: 1024px) {
	.mobile-guarantee-statement-image {width: 35% }
}
/* Tooltip wrapper */
.mobile-guarantee-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 8px;
}
/* Tooltip icon */
.mobile-guarantee-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-weight: bold;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background 0.2s;
}
/* Tooltip text */
.mobile-guarantee-tooltip-text {
    visibility: hidden;
    width: 220px;
    background: #333;
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%); 
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 12px;
    line-height: 1.4;
}
/* Show tooltip on hover */
.mobile-guarantee-tooltip:hover .mobile-guarantee-tooltip-text {
    visibility: visible;
    opacity: 1;
}



/* colour on link */
.policy-link {
    color: #88E7F8;   
}
