.micha-popup-overlay {
display: none;
position: fixed;
z-index: 99999;
left: 0;
top: 0;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
}
.micha-popup-overlay.active {
display: flex !important;
}
.micha-popup-container {
position: relative;
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
overflow-y: auto;
overflow-x: hidden;
max-width: 90%; } .micha-anim-fade .micha-popup-container {
opacity: 0;
}
.micha-anim-fade.active .micha-popup-container {
opacity: 1;
} .micha-anim-slide-right .micha-popup-container {
transform: translateX(100vw);
opacity: 1;
}
.micha-anim-slide-right.active .micha-popup-container {
transform: translateX(0);
} .micha-anim-slide-left .micha-popup-container {
transform: translateX(-100vw);
opacity: 1;
}
.micha-anim-slide-left.active .micha-popup-container {
transform: translateX(0);
} .micha-anim-slide-bottom .micha-popup-container {
transform: translateY(100vh);
opacity: 1;
}
.micha-anim-slide-bottom.active .micha-popup-container {
transform: translateY(0);
} .micha-anim-slide-top .micha-popup-container {
transform: translateY(-100vh);
opacity: 1;
}
.micha-anim-slide-top.active .micha-popup-container {
transform: translateY(0);
}
.micha-popup-close {
position: absolute;
right: 10px;
top: 10px;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.02);
border-radius: 50%;
font-size: 55px;
font-weight: bold;
color: #fff;
cursor: pointer;
line-height: 1;
transition: opacity 0.5s ease, transform 0.2s ease, background 0.2s ease;
z-index: 10;
text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
} .micha-popup-close.delayed {
opacity: 0;
pointer-events: none;
} .micha-popup-close.visible {
opacity: 1;
pointer-events: auto;
}
.micha-popup-close:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.1);
}
.micha-popup-content {
margin: 0 !important;
padding: 0 !important;
}
.micha-popup-content > * {
margin: 0 !important;
}
.micha-popup-content .section {
margin: 0 !important;
}
.micha-popup-content .section-content {
padding: 0 !important;
}
.micha-popup-content .row {
margin-left: 0 !important;
margin-right: 0 !important;
}
.micha-popup-content .col {
padding-left: 0 !important;
padding-right: 0 !important;
} body.micha-popup-open {
overflow: hidden !important;
position: fixed;
width: 100%;
height: 100%;
} .micha-popup-overlay.micha-pos-center {
align-items: center;
justify-content: center;
}
.micha-popup-overlay.micha-pos-top-left {
align-items: flex-start;
justify-content: flex-start;
padding: 20px;
}
.micha-popup-overlay.micha-pos-top-center {
align-items: flex-start;
justify-content: center;
padding: 20px;
}
.micha-popup-overlay.micha-pos-top-right {
align-items: flex-start;
justify-content: flex-end;
padding: 20px;
}
.micha-popup-overlay.micha-pos-bottom-left {
align-items: flex-end;
justify-content: flex-start;
padding: 20px;
}
.micha-popup-overlay.micha-pos-bottom-center {
align-items: flex-end;
justify-content: center;
padding: 20px;
}
.micha-popup-overlay.micha-pos-bottom-right {
align-items: flex-end;
justify-content: flex-end;
padding: 20px;
} @media (max-width: 768px) {
.micha-mobile-fullscreen {
align-items: flex-start !important;
justify-content: flex-start !important;
}
.micha-mobile-fullscreen .micha-popup-container {
width: 100vw !important;
height: 100vh !important;
max-width: 100vw !important;
max-height: 100vh !important;
border-radius: 0 !important;
box-shadow: none !important;
} .micha-mobile-fullscreen.micha-anim-slide-right .micha-popup-container {
transform: translateX(100vw);
}
.micha-mobile-fullscreen.micha-anim-slide-right.active .micha-popup-container {
transform: translateX(0);
}
.micha-mobile-fullscreen.micha-anim-slide-left .micha-popup-container {
transform: translateX(-100vw);
}
.micha-mobile-fullscreen.micha-anim-slide-left.active .micha-popup-container {
transform: translateX(0);
}
.micha-mobile-fullscreen.micha-anim-slide-bottom .micha-popup-container {
transform: translateY(100vh);
}
.micha-mobile-fullscreen.micha-anim-slide-bottom.active .micha-popup-container {
transform: translateY(0);
}
.micha-mobile-fullscreen.micha-anim-fade .micha-popup-container {
opacity: 0;
}
.micha-mobile-fullscreen.micha-anim-fade.active .micha-popup-container {
opacity: 1;
}
}