.mrbrabus-popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.73) !important;
display: none; align-items: center;
justify-content: center;
z-index: 9999;
} .mrbrabus-popup-overlay.active {
display: flex; } .popup-container {
position: relative;
padding: 15px;
}
.mrbrabus-popup {
position: relative;
border-radius: 10px;
background: white;
z-index: 10000;
max-height: 90vh;
overflow: visible;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.mrbrabus-popup-close {
position: absolute;
top: -16px;
right: -16px;
width: 32px;
height: 32px;
padding: 0 !important;
margin: 0 !important;
background: #fff;
border: 2px solid #333 !important;
border-radius: 50%;
color: #333;
font-size: 20px;
font-weight: bold;
line-height: 1;
cursor: pointer;
z-index: 10001;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
box-sizing: border-box;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
outline: none;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
min-width: 0;
min-height: 0;
text-align: center;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mrbrabus-popup-close:hover {
transform: scale(1.1) rotate(90deg);
background: #333;
color: white;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.mrbrabus-popup-close:active {
transform: scale(0.95) rotate(90deg);
}
.mrbrabus-popup-content {
position: relative;
z-index: 2;
max-height: calc(90vh - 40px);
overflow-y: auto;
} body.mrbrabus-popup-open {
overflow: hidden;
} @media (max-width: 768px) {
.popup-container {
padding: 10px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.mrbrabus-popup {
width: 95% !important;
max-height: 85vh;
margin: 0 auto;
}
.mrbrabus-popup-close {
top: -14px;
right: -14px;
width: 28px;
height: 28px;
font-size: 18px;
padding: 0 !important;
margin: 0 !important;
}
}