.dspi-popup {
--dspi-text-color: #ffffff;
--dspi-button-color: #2ea3f2;
--dspi-overlay-color: rgba(0, 0, 0, 0.45);
--dspi-bg-image: none;
--dspi-bg-size: cover;
--dspi-font-family: inherit;
--dspi-title-size: 26px;
--dspi-title-weight: 800;
--dspi-title-style: normal;
--dspi-text-size: 16px;
--dspi-text-weight: 400;
--dspi-text-style: normal;
--dspi-button-size: 15px;
--dspi-button-weight: 700;
--dspi-button-style: normal;
position: fixed;
z-index: 999999;
box-sizing: border-box;
color: var(--dspi-text-color);
font-family: var(--dspi-font-family);
line-height: 1.45;
transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
}
.dspi-popup *,
.dspi-popup *::before,
.dspi-popup *::after {
box-sizing: border-box;
}
.dspi-popup--hidden {
visibility: hidden;
opacity: 0;
pointer-events: none;
}
.dspi-popup--visible {
visibility: visible;
opacity: 1;
pointer-events: auto;
}
.dspi-popup__panel {
position: relative;
overflow: auto;
width: var(--dspi-popup-width, min(420px, calc(100vw - 32px)));
height: var(--dspi-popup-height, auto);
max-width: calc(100vw - 32px);
max-height: calc(100vh - 32px);
padding: 28px;
border-radius: 14px;
background-image: linear-gradient(var(--dspi-overlay-color), var(--dspi-overlay-color)), var(--dspi-bg-image);
background-color: #20242a;
background-position: center;
background-repeat: no-repeat;
background-size: var(--dspi-bg-size);
box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
transform: translateY(14px);
transition: transform 220ms ease;
}
.dspi-popup--visible .dspi-popup__panel {
transform: translateY(0);
}
.dspi-popup__content {
position: relative;
z-index: 1;
}
.dspi-popup__close {
position: absolute;
top: 10px;
right: 12px;
z-index: 2;
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
padding: 0;
border: 0;
border-radius: 999px;
background: rgba(255, 255, 255, 0.16);
color: var(--dspi-text-color);
cursor: pointer;
font-size: 24px;
line-height: 1;
}
.dspi-popup__close:hover,
.dspi-popup__close:focus {
background: rgba(255, 255, 255, 0.26);
outline: none;
}
.dspi-popup__date {
margin: 0 40px 10px 0;
font-size: 13px;
font-weight: 700;
letter-spacing: 0;
opacity: 0.84;
text-transform: uppercase;
}
.dspi-popup__title {
margin: 0 40px 12px 0;
color: inherit;
font-size: var(--dspi-title-size);
font-style: var(--dspi-title-style);
font-weight: var(--dspi-title-weight);
line-height: 1.15;
letter-spacing: 0;
}
.dspi-popup__text {
margin: 0;
font-size: var(--dspi-text-size);
font-style: var(--dspi-text-style);
font-weight: var(--dspi-text-weight);
}
.dspi-popup__text p {
margin: 0 0 12px;
}
.dspi-popup__text p:last-child {
margin-bottom: 0;
}
.dspi-popup__text a {
color: inherit;
text-decoration: underline;
}
.dspi-popup__custom-html {
color: inherit;
}
.dspi-popup__button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
margin-top: 20px;
padding: 12px 20px;
border-radius: 999px;
background: var(--dspi-button-color);
color: #ffffff;
font-size: var(--dspi-button-size);
font-style: var(--dspi-button-style);
font-weight: var(--dspi-button-weight);
line-height: 1.2;
text-align: center;
text-decoration: none;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}
.dspi-popup__button:hover,
.dspi-popup__button:focus {
color: #ffffff;
filter: brightness(1.06);
text-decoration: none;
}
.dspi-popup--bottom-right {
right: 28px;
bottom: 28px;
}
.dspi-popup--bottom-left {
bottom: 28px;
left: 28px;
}
.dspi-popup--center-modal,
.dspi-popup--fullscreen {
inset: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background: rgba(0, 0, 0, 0.46);
}
.dspi-popup--center-modal .dspi-popup__panel {
width: var(--dspi-popup-width, min(620px, calc(100vw - 32px)));
padding: 38px;
border-radius: 18px;
}
.dspi-popup--fullscreen .dspi-popup__panel {
display: flex;
align-items: center;
justify-content: center;
width: var(--dspi-popup-width, min(1120px, calc(100vw - 32px)));
min-height: var(--dspi-popup-height, min(720px, calc(100vh - 48px)));
padding: clamp(32px, 6vw, 80px);
border-radius: 22px;
text-align: center;
}
.dspi-popup--fullscreen .dspi-popup__title {
margin-right: 0;
font-size: clamp(34px, 5vw, 68px);
}
.dspi-popup--fullscreen .dspi-popup__date {
margin-right: 0;
}
.dspi-popup--fullscreen .dspi-popup__text {
max-width: 760px;
margin-right: auto;
margin-left: auto;
font-size: 19px;
}
.dspi-popup--top-bar,
.dspi-popup--bottom-bar {
right: 0;
left: 0;
width: 100%;
}
.dspi-popup--top-bar {
top: 0;
}
.dspi-popup--bottom-bar {
bottom: 0;
}
.dspi-popup--top-bar .dspi-popup__panel,
.dspi-popup--bottom-bar .dspi-popup__panel {
width: var(--dspi-popup-width, 100%);
height: var(--dspi-popup-height, auto);
min-height: 84px;
padding: 18px 72px 18px 28px;
border-radius: 0;
}
.dspi-popup--top-bar .dspi-popup__content,
.dspi-popup--bottom-bar .dspi-popup__content {
display: flex;
align-items: center;
gap: 18px;
max-width: 1180px;
margin: 0 auto;
}
.dspi-popup--top-bar .dspi-popup__date,
.dspi-popup--bottom-bar .dspi-popup__date,
.dspi-popup--top-bar .dspi-popup__title,
.dspi-popup--bottom-bar .dspi-popup__title,
.dspi-popup--top-bar .dspi-popup__text,
.dspi-popup--bottom-bar .dspi-popup__text {
margin: 0;
}
.dspi-popup--top-bar .dspi-popup__title,
.dspi-popup--bottom-bar .dspi-popup__title {
flex: 0 0 auto;
font-size: 20px;
}
.dspi-popup--top-bar .dspi-popup__text,
.dspi-popup--bottom-bar .dspi-popup__text {
flex: 1 1 auto;
font-size: 15px;
}
.dspi-popup--top-bar .dspi-popup__button,
.dspi-popup--bottom-bar .dspi-popup__button {
flex: 0 0 auto;
margin-top: 0;
}
@media (max-width: 767px) {
.dspi-popup--bottom-right,
.dspi-popup--bottom-left {
right: 12px;
bottom: 12px;
left: 12px;
}
.dspi-popup__panel {
width: 100%;
padding: 24px;
border-radius: 14px;
}
.dspi-popup__title {
font-size: 23px;
}
.dspi-popup--center-modal,
.dspi-popup--fullscreen {
padding: 12px;
}
.dspi-popup--center-modal .dspi-popup__panel,
.dspi-popup--fullscreen .dspi-popup__panel {
width: 100%;
max-height: calc(100vh - 24px);
overflow-y: auto;
padding: 30px 24px;
border-radius: 14px;
text-align: left;
}
.dspi-popup--fullscreen .dspi-popup__title {
font-size: 32px;
}
.dspi-popup--fullscreen .dspi-popup__text {
font-size: 16px;
}
.dspi-popup--top-bar .dspi-popup__panel,
.dspi-popup--bottom-bar .dspi-popup__panel {
padding: 20px 54px 20px 18px;
}
.dspi-popup--top-bar .dspi-popup__content,
.dspi-popup--bottom-bar .dspi-popup__content {
display: block;
}
.dspi-popup--top-bar .dspi-popup__date,
.dspi-popup--bottom-bar .dspi-popup__date,
.dspi-popup--top-bar .dspi-popup__title,
.dspi-popup--bottom-bar .dspi-popup__title,
.dspi-popup--top-bar .dspi-popup__text,
.dspi-popup--bottom-bar .dspi-popup__text {
margin-bottom: 8px;
}
.dspi-popup--top-bar .dspi-popup__button,
.dspi-popup--bottom-bar .dspi-popup__button {
margin-top: 8px;
}
}