.bt-popup {
position: fixed; z-index: 99990; width: 320px;
max-width: calc(100vw - 24px);
background: #ffffff;
border-radius: 14px;
box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #1a1a1a;
overflow: hidden;
transform: translateY(20px);
opacity: 0;
transition: opacity .35s ease, transform .35s ease;
pointer-events: none;
}
.bt-popup.bt-show {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
} .bt-popup-overlay {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 99989;
opacity: 0;
transition: opacity .35s ease;
pointer-events: none;
cursor: pointer;
}
.bt-popup-overlay.bt-show {
opacity: 1;
pointer-events: auto;
}
.bt-popup__inner {
padding: 18px 18px 16px;
}
.bt-popup__close {
position: absolute;
top: 8px;
right: 10px;
width: 26px;
height: 26px;
border: none;
background: transparent;
color: #9a9a9a;
font-size: 20px;
line-height: 1;
cursor: pointer;
border-radius: 50%;
}
.bt-popup__close:hover {
background: #f1f1f1;
color: #444;
}
.bt-popup__title {
font-size: 18px;
font-weight: 800;
margin: 0 24px 8px 0;
line-height: 1.25;
}
.bt-popup__body {
font-size: 13.5px;
line-height: 1.55;
color: #333;
margin: 0 0 10px;
}
.bt-popup__link {
display: inline-block;
font-weight: 700;
color: #d12f2f;
text-decoration: underline;
font-size: 14px;
margin-bottom: 10px;
}
.bt-popup__link:hover { color: #a31f1f; }
.bt-popup__subtitle {
font-size: 14px;
font-weight: 700;
color: #111;
margin: 6px 0 12px;
}
.bt-popup__image {
display: block;
width: 100%;
height: auto;
border-radius: 10px;
margin-top: 4px;
}
.bt-popup__dismiss {
display: block;
width: 100%;
margin-top: 14px;
padding: 11px 14px;
border: none;
border-radius: 10px;
background: #1f1f1f;
color: #fff;
font-size: 13.5px;
font-weight: 600;
cursor: pointer;
text-align: center;
}
.bt-popup__dismiss:hover { background: #000; } @media (max-width: 480px) {
.bt-popup {
width: auto;
max-width: none;
}
}