.custom-popup {
position: fixed !important;
bottom: 100px;
right: 20px;
max-width: 400px;
padding: 2%;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
z-index: 2147483647 !important;
display: block !important;
} .custom-popup .close-btn {
position: absolute;
top: 0px;
right: 0px;
width: 42px;
height: 42px;
border-radius: 0px;
border: none;
font-size: 27px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
} .custom-popup .popup-content {
max-height: 70vh;
overflow-y: auto;
}
.custom-popup .popup-content h2,
.custom-popup .popup-content h3,
.custom-popup .popup-content h4,
.custom-popup .popup-content h5,
.custom-popup .popup-content h6 {
color: inherit !important;
}
.custom-popup .popup-content p {
font-weight: 400;
line-height: 1.3em;
padding-bottom: 0;
}
.custom-popup .popup-content p strong {
font-weight: 700;
}
.custom-popup .popup-content img {
display: block;
max-width: 100%;
height: auto;
margin: 0 0 15px 0;
}
.custom-popup .popup-highlight {
background: #FEF2D1;
padding: 0 6px;
border-radius: 0px;
color: #945451;
}
.custom-popup .popup-button {
display: inline-block;
font-size: 16px;
font-weight: 500;
color: #fff;
text-align: center;
border-radius: 0px;
margin-top: 16px;
} .popup-hidden {
display:none!important;
} @media (max-width:768px){
.custom-popup{
bottom:4vh!important;
right:10vw!important;
left:10vw!important;
padding: 10%;
}
}