(function () {
if (document.getElementById('ur-style-fix')) return;
var style = document.createElement('style');
style.id = 'ur-style-fix';
style.textContent = `
.ur-purchase-options {
display: flex !important;
flex-direction: column !important;
gap: 12px !important;
margin-top: 10px !important;
}
.ur-option {
display: block !important;
border: 1px solid #dcdcdc !important;
border-radius: 14px !important;
padding: 14px 16px !important;
background: #fff !important;
position: relative !important;
transition: all .2s ease !important;
margin-bottom: 0 !important;
}
.ur-option:hover {
border-color: #7a1f3d !important;
}
.ur-option.ur-active {
border: 2px solid #7a1f3d !important;
background: #faf4f6 !important;
box-shadow: 0 6px 20px rgba(122,31,61,0.12) !important;
}
.ur-option.ur-active::before {
content: "POPULAARSEIM" !important;
position: absolute !important;
top: -10px !important;
right: 12px !important;
background: #7a1f3d !important;
color: #fff !important;
font-size: 11px !important;
font-weight: 700 !important;
padding: 5px 9px !important;
border-radius: 20px !important;
letter-spacing: .4px !important;
line-height: 1 !important;
z-index: 5 !important;
}
.ur-option input[type="radio"] {
transform: scale(1.15) !important;
margin-right: 6px !important;
}
`;
document.head.appendChild(style);
})();