.sbp-scroll-button {
position: fixed;
width: var(--sbp-button-size);
height: var(--sbp-button-size);
cursor: pointer;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
transform: scale(0.8);
}
.sbp-scroll-button.sbp-visible {
opacity: 1;
visibility: visible;
transform: scale(1);
} .sbp-position-bottom-right {
bottom: var(--sbp-offset-vertical);
right: var(--sbp-offset-horizontal);
}
.sbp-position-bottom-left {
bottom: var(--sbp-offset-vertical);
left: var(--sbp-offset-horizontal);
}
.sbp-position-top-right {
top: var(--sbp-offset-vertical);
right: var(--sbp-offset-horizontal);
}
.sbp-position-top-left {
top: var(--sbp-offset-vertical);
left: var(--sbp-offset-horizontal);
}  .sbp-scroll-button.sbp-order-second.sbp-position-bottom-right {
bottom: calc(var(--sbp-offset-vertical) + var(--sbp-button-size) + var(--sbp-button-spacing));
}
.sbp-scroll-button.sbp-order-second.sbp-position-bottom-left {
bottom: calc(var(--sbp-offset-vertical) + var(--sbp-button-size) + var(--sbp-button-spacing));
}
.sbp-scroll-button.sbp-order-second.sbp-position-top-right {
top: calc(var(--sbp-offset-vertical) + var(--sbp-button-size) + var(--sbp-button-spacing));
}
.sbp-scroll-button.sbp-order-second.sbp-position-top-left {
top: calc(var(--sbp-offset-vertical) + var(--sbp-button-size) + var(--sbp-button-spacing));
} .sbp-button-content {
width: 100%;
height: 100%;
background-color: var(--sbp-button-bg);
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
padding: 8px;
box-sizing: border-box;
overflow: hidden;
}
.sbp-scroll-button:hover .sbp-button-content {
background-color: var(--sbp-button-hover-bg);
} .sbp-icon {
color: var(--sbp-button-icon-color);
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
flex-shrink: 0;
}
.sbp-icon svg {
width: 24px;
height: 24px;
} .sbp-text {
color: var(--sbp-button-text-color);
font-size: 9px;
font-weight: 600;
margin-top: 2px;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.3px;
line-height: 1.1;
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
} .sbp-button-content .sbp-text:only-child {
margin-top: 0;
font-size: 10px;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
} .sbp-progress-ring {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: rotate(-90deg);
pointer-events: none;
}
.sbp-progress-ring-bg {
fill: none;
stroke: var(--sbp-progress-bg);
stroke-width: var(--sbp-progress-width);
}
.sbp-progress-ring-circle {
fill: none;
stroke: var(--sbp-progress-color);
stroke-width: var(--sbp-progress-width);
stroke-dasharray: 289;
stroke-dashoffset: 289;
stroke-linecap: round;
transition: stroke-dashoffset 0.1s linear;
} @media (max-width: 768px) { .sbp-scroll-button,
.sbp-scroll-top,
.sbp-scroll-bottom {
width: calc(var(--sbp-button-size) * 0.85);
height: calc(var(--sbp-button-size) * 0.85);
} .sbp-scroll-top .sbp-button-content,
.sbp-scroll-bottom .sbp-button-content {
width: 100%;
height: 100%;
}
.sbp-icon svg {
width: 20px;
height: 20px;
}
.sbp-text {
font-size: 8px;
letter-spacing: 0.2px;
}
.sbp-button-content .sbp-text:only-child {
font-size: 9px;
} .sbp-position-bottom-right {
right: var(--sbp-offset-horizontal);
bottom: var(--sbp-offset-vertical);
}
.sbp-position-bottom-left {
left: var(--sbp-offset-horizontal);
bottom: var(--sbp-offset-vertical);
}
.sbp-position-top-right {
right: var(--sbp-offset-horizontal);
top: var(--sbp-offset-vertical);
}
.sbp-position-top-left {
left: var(--sbp-offset-horizontal);
top: var(--sbp-offset-vertical);
} .sbp-scroll-button.sbp-order-second.sbp-position-bottom-right,
.sbp-scroll-button.sbp-order-second.sbp-position-bottom-left {
bottom: calc(var(--sbp-offset-vertical) + (var(--sbp-button-size) * 0.85) + var(--sbp-button-spacing));
}
.sbp-scroll-button.sbp-order-second.sbp-position-top-right,
.sbp-scroll-button.sbp-order-second.sbp-position-top-left {
top: calc(var(--sbp-offset-vertical) + (var(--sbp-button-size) * 0.85) + var(--sbp-button-spacing));
}
}.smart-popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999999;
animation: smartPopupFadeIn 0.3s ease;
padding: 20px !important;
box-sizing: border-box !important;
}
.smart-popup-overlay.active {
display: flex !important;
justify-content: center !important;
align-items: center !important;
}
.smart-popup-modal {
background: white;
border-radius: 16px;
padding: 40px;
max-width: 500px !important;
width: 100% !important;
position: relative;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
animation: smartPopupSlideUp 0.3s ease;
text-align: center;
margin: 0 auto !important;
box-sizing: border-box !important;
} @media (min-width: 601px) {
.smart-popup-modal {
max-width: 500px !important;
width: calc(100% - 40px) !important;
}
}
.smart-popup-close {
position: absolute;
top: 15px;
right: 15px;
background: none;
border: none;
font-size: 28px;
cursor: pointer;
color: #666;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.3s;
line-height: 1;
padding: 0;
font-weight: 300;
}
.smart-popup-close:hover {
opacity: 0.7;
} .smart-popup-custom-image {
width: 200px;
height: 200px;
margin: 0 auto 20px;
overflow: hidden;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.smart-popup-custom-image img {
width: 100%;
height: 100%;
object-fit: cover;
} .smart-popup-law-illustration {
width: 200px;
height: 200px;
margin: 0 auto 20px;
padding: 10px;
}
.smart-popup-law-illustration svg {
width: 100%;
height: 100%;
}
.smart-popup-modal h2 {
font-size: 28px;
margin: 0 0 10px 0;
font-weight: 600;
}
.smart-popup-modal h3 {
font-size: 24px;
margin: 0 0 20px 0;
font-weight: 600;
}
.smart-popup-modal p {
font-size: 16px;
line-height: 1.6;
margin: 0 0 30px 0;
}
.smart-popup-button {
border: none;
padding: 0 40px;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s;
font-weight: 500;
height: 50px;
line-height: 50px;
display: inline-block;
}
.smart-popup-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@keyframes smartPopupFadeIn {
from { 
opacity: 0; 
}
to { 
opacity: 1; 
}
}
@keyframes smartPopupSlideUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 600px) {
.smart-popup-overlay {
padding: 15px !important;
}
.smart-popup-modal {
padding: 30px 20px;
width: calc(100% - 30px) !important;
max-width: 100% !important;
}
.smart-popup-close {
width: 28px;
height: 28px;
font-size: 24px;
top: 10px;
right: 10px;
}
.smart-popup-custom-image,
.smart-popup-law-illustration {
width: 150px;
height: 150px;
}
.smart-popup-modal h2 {
font-size: 24px;
}
.smart-popup-modal h3 {
font-size: 20px;
}
.smart-popup-modal p {
font-size: 14px;
}
.smart-popup-button {
width: 100%;
font-size: 14px;
}
} @media (max-width: 400px) {
.smart-popup-overlay {
padding: 10px !important;
}
.smart-popup-modal {
width: calc(100% - 20px) !important;
padding: 25px 15px;
}
} .smart-popup-overlay * {
box-sizing: border-box !important;
}
.smart-popup-modal {
left: auto !important;
right: auto !important;
transform: none !important;
}
.smart-popup-overlay.active .smart-popup-modal {
display: block !important;
}@keyframes sdm-slide-down {
0%   { opacity: 1; transform: translateY(0);    }
100% { opacity: 0; transform: translateY(120px); }
}
#sdm-toggle-wrap {
position: fixed;
z-index: 999999;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
#sdm-toggle-wrap.sdm-visible {
opacity: 1;
pointer-events: auto;
}
#sdm-toggle-wrap.sdm-sliding-down {
animation: sdm-slide-down 0.8s cubic-bezier(0.4, 0, 1, 1) forwards;
pointer-events: none;
} #sdm-toggle {
width: 44px;
height: 44px;
border-radius: 50%;
background: transparent !important;
border: 2px solid #008080 !important;
box-shadow: none !important;
cursor: pointer;
user-select: none;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
position: relative;
}
.sdm-icon {
width: 100%;
height: 100%;
font-size: 20px;
line-height: 1;
display: none;
align-items: center;
justify-content: center;
position: absolute;
} @media (max-width: 768px) {
#sdm-toggle {
width: 37px; height: 37px;
}
#sdm-toggle .sdm-icon {
width: 100%;
height: 100%;
font-size: 17px; }
} .sdm-sun { display: inline-flex; }
.sdm-moon { display: none; } [data-sdm="dark"] .sdm-sun { display: none; }
[data-sdm="dark"] .sdm-moon { display: inline-flex; }  [data-sdm="dark"] html,
[data-sdm="dark"] body {
background-color: var(--sdm-bg, #0a0a0a) !important;
color: var(--sdm-text, #e8e6e3) !important;
} [data-sdm="dark"] a[style*="color:#0730ff"],
[data-sdm="dark"] a[style*="color: #0730ff"],
[data-sdm="dark"] a[style*="color:rgb(7,48,255)"],
[data-sdm="dark"] a[style*="color: rgb(7, 48, 255)"] {
color: #6b93ff !important;
}
[data-sdm="dark"] a {
--sdm-link-check: 1;
} [data-sdm="dark"] {
color-scheme: dark;
} [data-sdm="dark"] input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
[data-sdm="dark"] textarea,
[data-sdm="dark"] select {
background-color: #1e1e1e !important;
color: var(--sdm-text, #e8e6e3) !important;
border-color: #333 !important;
} [data-sdm="dark"] pre,
[data-sdm="dark"] code,
[data-sdm="dark"] kbd {
background-color: #1e1e1e !important;
color: #d4d0c8 !important;
border-color: #333 !important;
} [data-sdm="dark"] img {
filter: brightness(0.88) contrast(1.02) !important;
transition: filter 0.3s !important;
}
[data-sdm="dark"] img:hover {
filter: brightness(1) contrast(1) !important;
} ::-webkit-scrollbar { width: 15px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 8px; border: 3px solid #f1f1f1; }
::-webkit-scrollbar-thumb:hover { background: #a8a8a8; }
[data-sdm="dark"] ::-webkit-scrollbar-track { background: #1a1a1a; }
[data-sdm="dark"] ::-webkit-scrollbar-thumb { background: #555; border-color: #1a1a1a; }
[data-sdm="dark"] ::-webkit-scrollbar-thumb:hover { background: #777; }  html {
scrollbar-gutter: stable;
overflow-y: scroll;
} #sdm-toggle-wrap,
#sdm-toggle-wrap * {
filter: none !important;
color: unset !important;
} #sdm-toggle {
border: 2px solid #008080 !important;
background: transparent !important;
box-shadow: none !important;
overflow: hidden;
flex-shrink: 0;
} #sdm-footer-inline {
display: block;
margin-top: 12px;
}
#sdm-footer-inline #sdm-toggle-wrap {
position: static !important;
display: inline-flex !important;
}