.lmt-max-widget {
--lmt-ink: #101727;
--lmt-paper: #ffffff;
--lmt-signal: #ff6b4a;
position: fixed;
right: 22px;
bottom: 22px;
z-index: 99990;
box-sizing: border-box;
display: inline-flex;
align-items: center;
gap: 11px;
min-height: 58px;
padding: 7px 16px 7px 7px;
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 17px;
background: var(--lmt-ink);
box-shadow: 0 12px 30px rgba(16, 23, 39, 0.22), 0 2px 7px rgba(16, 23, 39, 0.14);
color: var(--lmt-paper) !important;
font-family: inherit;
line-height: 1.1;
text-decoration: none !important;
transition: transform 160ms ease, box-shadow 160ms ease;
}
.lmt-max-widget:hover {
transform: translateY(-2px);
box-shadow: 0 16px 38px rgba(16, 23, 39, 0.28), 0 3px 8px rgba(16, 23, 39, 0.16);
color: var(--lmt-paper) !important;
}
.lmt-max-widget:focus-visible {
outline: 3px solid rgba(70, 154, 255, 0.72);
outline-offset: 3px;
}
.lmt-max-widget__mark {
display: grid;
width: 44px;
height: 44px;
flex: 0 0 44px;
place-items: center;
border-radius: 12px;
background: linear-gradient(145deg, #745cff 0%, #3b8cff 56%, #50d4d0 100%);
}
.lmt-max-widget__mark svg {
width: 25px;
height: 25px;
overflow: visible;
fill: none;
stroke: currentColor;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 1.65;
}
.lmt-max-widget__mark circle {
fill: currentColor;
stroke: none;
}
.lmt-max-widget__copy {
display: grid;
gap: 4px;
min-width: 108px;
}
.lmt-max-widget__label {
font-size: 14px;
font-weight: 720;
letter-spacing: -0.01em;
white-space: nowrap;
}
.lmt-max-widget__note {
color: rgba(255, 255, 255, 0.64);
font-size: 11px;
font-weight: 500;
letter-spacing: 0.01em;
}
.lmt-max-widget__status {
width: 7px;
height: 7px;
align-self: flex-start;
margin: 7px -4px 0 0;
border: 2px solid var(--lmt-ink);
border-radius: 50%;
background: var(--lmt-signal);
box-shadow: 0 0 0 2px rgba(255, 107, 74, 0.2);
}
@media (max-width: 540px) {
.lmt-max-widget {
right: 14px;
bottom: 14px;
min-height: 54px;
padding: 6px 13px 6px 6px;
border-radius: 15px;
}
.lmt-max-widget__mark {
width: 42px;
height: 42px;
flex-basis: 42px;
border-radius: 11px;
}
.lmt-max-widget__note {
display: none;
}
}
@media (prefers-reduced-motion: reduce) {
.lmt-max-widget {
transition: none;
}
}